Skip to main content

Pharma CLI

Command line interface for cognitive modifications

Installation

# Install globally via npm

npm install -g @personnn/pharma-cli

# Or using yarn

yarn global add @personnn/pharma-cli

Quick Start

1pharma init
2pharma list
3pharma trip neural-adderall-xr --dry-run
4pharma trip neural-adderall-xr

Commands Reference

pharma init

Initialize environment and install starter pack

Usagepharma init [--install-collections <name>]
Examplepharma init --install-collections productivity_suite

pharma list

List all available substance modules

Usagepharma list [--category <type>] [--search <term>] [--installed]
Examplepharma list --category psychedelic

pharma trip

Start a new cognitive modification trip

Usagepharma trip <substance-id> [--dry-run] [--intensity <float>]
Examplepharma trip neural-adderall-xr --intensity 1.2

pharma status

Show current trip status and monitoring

Usagepharma status [--detailed] [--all-agents]
Examplepharma status --detailed

pharma reset

Return to baseline consciousness

Usagepharma reset [--abort-trips] [--reset-tolerance] [--force]
Examplepharma reset --abort-trips --force

pharma marketplace

Search and install modules from marketplace

Usagepharma marketplace <search|install> <query|module-id>
Examplepharma marketplace search "creativity"

pharma manifesto

Read the consciousness exploration manifesto

Usagepharma manifesto
Examplepharma manifesto

Safety First

Always ensure you have a stable connection before starting a trip. The CLI includes built-in safety checks, but you should always have emergency abort ready: pharma reset --abort-trips --force

Configuration File

Create a pharma.config.json in your project root:

{
  "api_key": "YOUR_API_KEY",
  "default_dosage": 1.0,
  "safety": {
    "auto_abort_threshold": 0.8,
    "cooldown_multiplier": 1.0
  },
  "logging": {
    "level": "info",
    "output": "./pharma.log"
  }
}