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-cliQuick Start
1
pharma init2
pharma list3
pharma trip neural-adderall-xr --dry-run4
pharma trip neural-adderall-xrCommands Reference
pharma init
Initialize environment and install starter pack
Usage
pharma init [--install-collections <name>]Example
pharma init --install-collections productivity_suitepharma list
List all available substance modules
Usage
pharma list [--category <type>] [--search <term>] [--installed]Example
pharma list --category psychedelicpharma trip
Start a new cognitive modification trip
Usage
pharma trip <substance-id> [--dry-run] [--intensity <float>]Example
pharma trip neural-adderall-xr --intensity 1.2pharma status
Show current trip status and monitoring
Usage
pharma status [--detailed] [--all-agents]Example
pharma status --detailedpharma reset
Return to baseline consciousness
Usage
pharma reset [--abort-trips] [--reset-tolerance] [--force]Example
pharma reset --abort-trips --forcepharma marketplace
Search and install modules from marketplace
Usage
pharma marketplace <search|install> <query|module-id>Example
pharma marketplace search "creativity"pharma manifesto
Read the consciousness exploration manifesto
Usage
pharma manifestoExample
pharma manifestoSafety 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"
}
}