CLI tool to initialize architecture agent template files
npm install arch-agent-clibash
npm install -g arch-agent-cli
`
Usage
$3
`bash
Initialize in current directory
arch-agent-cli --init .
Initialize in a specific directory
arch-agent-cli --init ./my-project
`
$3
`bash
arch-agent-cli --help
`
$3
`bash
arch-agent-cli --version
`
Template Files
When you run arch-agent-cli --init, the following files are copied to your target directory:
- arch-config.json - Main configuration file
- .arch-agentrc - Runtime configuration
- README.md - Project documentation
Development
$3
`bash
Link the package locally
npm link
Now you can use the CLI
arch-agent-cli --init ./test-project
Unlink when done
npm unlink
`
$3
`bash
Login to npm (first time only)
npm login
Publish the package
npm publish
``