@alucify/cli 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/cli.js +22752 -0
- package/dist/mcp-server-vendored.js +55 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Alucify CLI
|
|
2
|
+
|
|
3
|
+
Command-line interface for analyzing codebases, processing spec artifacts, tracking implementation progress, and integrating with Claude Code.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @alucify/cli analyze-code # Index codebase (free, no LLM)
|
|
9
|
+
npx @alucify/cli add-spec requirements.pdf # Add a spec document
|
|
10
|
+
npx @alucify/cli analyze-specs # Analyze specs vs code
|
|
11
|
+
npx @alucify/cli enable # Full Claude Code integration
|
|
12
|
+
npx @alucify/cli status # View implementation progress
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or install globally:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @alucify/cli
|
|
19
|
+
alucify analyze-code
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Documentation
|
|
23
|
+
|
|
24
|
+
See the full [CLI Reference](https://github.com/alucifyai/alucify-vs-extension/blob/main/docs/cli.md) for all commands, options, and workflows.
|
|
25
|
+
|
|
26
|
+
## Related
|
|
27
|
+
|
|
28
|
+
- [Alucify VS Code Extension](https://marketplace.visualstudio.com/items?itemName=alucify.alucify-vscode) — Full UI with dashboard, visualizer, and chat
|
|
29
|
+
- [`@alucify/mcp`](https://www.npmjs.com/package/@alucify/mcp) — MCP server for read-only appgraph access in Claude Code
|