-
Notifications
You must be signed in to change notification settings - Fork 4
CLI Commands
Alessio Rocchi edited this page Jan 27, 2026
·
1 revision
Complete CLI command reference.
-v, --verbose # Set log level to debug
-q, --quiet # Set log level to error
--version # Show version
--help # Show helpInitialize aistack project.
npx @blackms/aistack init
npx @blackms/aistack init --path ./myprojectAgent management commands.
# Spawn
npx @blackms/aistack agent spawn -t coder -n my-coder
# List
npx @blackms/aistack agent list
# Stop
npx @blackms/aistack agent stop -i <id>
npx @blackms/aistack agent stop -n <name>
# Status
npx @blackms/aistack agent status -i <id>
# Types
npx @blackms/aistack agent types
# Run (spawn + execute)
npx @blackms/aistack agent run -t coder -p "Write a function"
# Execute (existing agent)
npx @blackms/aistack agent exec -i <id> -p "Refactor this"Memory operations.
# Store
npx @blackms/aistack memory store -k "key" -c "content" -n "namespace"
# Search
npx @blackms/aistack memory search -q "query" -n "namespace" -l 10MCP server commands.
# Start server
npx @blackms/aistack mcp start
npx @blackms/aistack mcp start --verboseWeb dashboard commands.
# Start web server
npx @blackms/aistack web start
npx @blackms/aistack web start --port 3001Plugin management.
# Add plugin
npx @blackms/aistack plugin add ./my-plugin
# List plugins
npx @blackms/aistack plugin list
# Remove plugin
npx @blackms/aistack plugin remove my-pluginWorkflow commands.
# Run workflow
npx @blackms/aistack workflow run doc-sync
npx @blackms/aistack workflow run doc-sync --docs ./docs --src ./srcShow system status.
npx @blackms/aistack statusRelated:
Getting Started
Core Concepts
Agent Guides
- Overview
- Coder
- Researcher
- Tester
- Reviewer
- Adversarial
- Architect
- Coordinator
- Analyst
- DevOps
- Documentation
- Security Auditor
MCP Tools
- Overview
- Agent Tools
- Memory Tools
- Task Tools
- Session Tools
- System Tools
- GitHub Tools
- Review Loop Tools
- Identity Tools
Recipes
- Index
- Code Review
- Doc Sync
- Multi-Agent
- Adversarial Testing
- Full-Stack Feature
- Memory Patterns
- GitHub Integration
Advanced
- Plugin Development
- Custom Agent Types
- Workflow Engine
- Vector Search Setup
- Web Dashboard
- Programmatic API
- Resource Monitoring
Reference