Add local full-stack development section (pnpm dev:local) and move detailed content (credentials, CLI, skills/tools, time injection, development guide) into separate docs/ files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
1,000 B
Markdown
30 lines
1,000 B
Markdown
# CLI
|
|
|
|
```bash
|
|
multica # Interactive mode
|
|
multica run "prompt" # Single prompt
|
|
multica chat --profile my-agent # Use profile
|
|
multica --session abc123 # Continue session
|
|
multica session list # List sessions
|
|
multica profile list # List profiles
|
|
multica skills list # List skills
|
|
multica help # Show help
|
|
```
|
|
|
|
Short alias: `mu`
|
|
|
|
## Sessions
|
|
|
|
Sessions persist to `~/.super-multica/sessions/<id>/` with JSONL message history and JSON metadata. Context windows are automatically managed with token-aware compaction.
|
|
|
|
## Profiles
|
|
|
|
Profiles define agent identity, personality, and memory in `~/.super-multica/agent-profiles/<id>/`.
|
|
|
|
```bash
|
|
multica profile new my-agent # Create profile
|
|
multica profile list # List all
|
|
multica profile edit my-agent # Open in file manager
|
|
```
|
|
|
|
Profile files: `soul.md`, `user.md`, `workspace.md`, `memory.md`, `memory/*.md`
|