docs: add CLI/Daemon guide and rename LOCAL_DEVELOPMENT.md to CONTRIBUTING.md

- Add CLI_AND_DAEMON.md with full command reference, daemon configuration,
  profiles, and self-hosted setup instructions
- Rename LOCAL_DEVELOPMENT.md → CONTRIBUTING.md for conventional naming
- Update README.md references and link to the new CLI guide
This commit is contained in:
Jiayuan 2026-04-01 14:05:19 +08:00
parent 3f612c37f2
commit 0f2dfdbca8
3 changed files with 335 additions and 31 deletions

View file

@ -42,43 +42,19 @@ make start
The `multica` CLI connects your local machine to Multica — authenticate, manage workspaces, and run the agent daemon.
### Install
```bash
# Install
brew tap multica-ai/tap
brew install multica-cli
```
Or build from source:
```bash
make build
cp server/bin/multica /usr/local/bin/multica
```
### Connect Your Agent Runtime
```bash
# 1. Authenticate
# Authenticate and start
multica login
# 2. Watch your workspace
multica workspace watch <workspace-id>
# 3. Start the local agent daemon
multica daemon start
```
The daemon auto-detects available agent CLIs (`claude`, `codex`) on your PATH. When an agent is assigned a task, the daemon creates an isolated environment, runs the agent, and reports results back.
### Other Commands
```bash
multica workspace list # List workspaces (watched ones marked with *)
multica agent list # List agents in the current workspace
multica daemon status # Show daemon status
multica version # Show CLI version
```
See the [CLI and Daemon Guide](CLI_AND_DAEMON.md) for the full command reference, daemon configuration, and advanced usage.
## Architecture
@ -101,7 +77,7 @@ multica version # Show CLI version
## Development
For contributors working on the Multica codebase, see the [Local Development Guide](LOCAL_DEVELOPMENT.md).
For contributors working on the Multica codebase, see the [Contributing Guide](CONTRIBUTING.md).
### Prerequisites
@ -119,7 +95,7 @@ make setup
make start
```
See [LOCAL_DEVELOPMENT.md](LOCAL_DEVELOPMENT.md) for the full development workflow, worktree support, testing, and troubleshooting.
See [CONTRIBUTING.md](CONTRIBUTING.md) for the full development workflow, worktree support, testing, and troubleshooting.
## License