@aicraftalchemy/aiaca 1.0.6
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/LICENSE +21 -0
- package/README.md +60 -0
- package/dist/cli.js +2521 -0
- package/package.json +66 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AiCraftAlchemy
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# AIACA — AI Agentic Coding Assistant
|
|
2
|
+
|
|
3
|
+
> Production-grade agentic CLI that builds, edits, and ships code end-to-end.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g @aicraftalchemy/aiaca
|
|
7
|
+
aiaca
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Features
|
|
11
|
+
|
|
12
|
+
- **Dual-provider** — Gemini (default, free tier) + Claude (Anthropic)
|
|
13
|
+
- **100+ tools** — file ops, bash, web search, code intelligence, sub-agents, planning
|
|
14
|
+
- **Full-stack capable** — scaffold → backend → frontend → verify in one session
|
|
15
|
+
- **18 specialist agents** — frontend designer, backend developer, fullstack engineer, security reviewer, and more
|
|
16
|
+
- **Rich TUI** — live task tree, inline diffs, plan panel, change ledger
|
|
17
|
+
- **Persistent auth** — set your key once with `/login`, stays until `/logout`
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# Install
|
|
23
|
+
npm install -g @aicraftalchemy/aiaca
|
|
24
|
+
|
|
25
|
+
# Launch (first run prompts for your API key)
|
|
26
|
+
aiaca
|
|
27
|
+
|
|
28
|
+
# Free Gemini key: https://aistudio.google.com/apikey
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Authentication
|
|
32
|
+
|
|
33
|
+
On first launch AIACA asks for your API key and saves it to `~/.aiaca/credentials.json`.
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
/login — set or update credentials
|
|
37
|
+
/logout — remove saved credentials
|
|
38
|
+
/auth — show which keys are active
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Or use environment variables (CI/scripts):
|
|
42
|
+
```bash
|
|
43
|
+
export GEMINI_API_KEY=your-key
|
|
44
|
+
export ANTHROPIC_API_KEY=your-key
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Key Commands
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
/model — switch provider or model
|
|
51
|
+
/status — session info, cost, context usage
|
|
52
|
+
/login — update API credentials
|
|
53
|
+
/logout — remove credentials
|
|
54
|
+
/auth — authentication status
|
|
55
|
+
/help — all available commands
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
MIT © [AiCraftAlchemy](https://aicraftalchemy.com)
|