@bhimudev/gnanai 0.4.0 → 0.4.2
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 +37 -35
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Gnanai
|
|
2
2
|
|
|
3
3
|
**A team of AI agents for Claude Code — not just one assistant, but a full development workflow.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Gnanai scaffolds a multi-agent system that plans before it codes, validates before it implements, and tests before it ships. One command sets it up. Claude Code does the rest.
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -10,9 +10,9 @@ Archai scaffolds a multi-agent system that plans before it codes, validates befo
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
## Why
|
|
13
|
+
## Why gnanai?
|
|
14
14
|
|
|
15
|
-
Without structure, AI assistants jump straight to code — skipping analysis, missing edge cases, and producing work that needs reworking.
|
|
15
|
+
Without structure, AI assistants jump straight to code — skipping analysis, missing edge cases, and producing work that needs reworking. gnanai fixes this with a **three-phase workflow**:
|
|
16
16
|
|
|
17
17
|
1. **Planning Loop** — Analyze the problem, validate the plan, design tests (2-4 iterations)
|
|
18
18
|
2. **Implementation Loop** — Code, test, review (only after you approve the plan)
|
|
@@ -30,6 +30,8 @@ cd your-project
|
|
|
30
30
|
gnanai init
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
This package installs the `gnanai` CLI only, so it can live alongside an existing global `archai` install.
|
|
34
|
+
|
|
33
35
|
That's it. gnanai detects your tech stack and creates everything you need. Now open Claude Code:
|
|
34
36
|
|
|
35
37
|
```bash
|
|
@@ -63,8 +65,8 @@ Skip the full workflow:
|
|
|
63
65
|
Share decisions, patterns, and learnings between related projects:
|
|
64
66
|
|
|
65
67
|
```bash
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
gnanai knowledge create my-team # Create a shared knowledge group
|
|
69
|
+
gnanai knowledge join my-team # Link this project to the group
|
|
68
70
|
```
|
|
69
71
|
|
|
70
72
|
Agents automatically search shared knowledge before planning and write cross-cutting decisions back. Works across any number of repos.
|
|
@@ -72,16 +74,16 @@ Agents automatically search shared knowledge before planning and write cross-cut
|
|
|
72
74
|
For team sync via git:
|
|
73
75
|
|
|
74
76
|
```bash
|
|
75
|
-
|
|
76
|
-
|
|
77
|
+
gnanai knowledge remote my-team <git-url> # Add remote
|
|
78
|
+
gnanai knowledge sync # Commit + pull + push
|
|
77
79
|
```
|
|
78
80
|
|
|
79
81
|
### Optional setup wizards
|
|
80
82
|
|
|
81
83
|
```bash
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
gnanai setup-project # Describe your project architecture
|
|
85
|
+
gnanai setup-config # Configure commands, specialists, permissions
|
|
86
|
+
gnanai generate # Generate project-specific specialist agents
|
|
85
87
|
```
|
|
86
88
|
|
|
87
89
|
## How to Use
|
|
@@ -185,44 +187,44 @@ You can use any agent directly:
|
|
|
185
187
|
| `task-orchestrator` | Workflow | Epic/task lifecycle management |
|
|
186
188
|
| `quick-fix` | Standalone | Fast single-pass for small changes |
|
|
187
189
|
|
|
188
|
-
**Specialist agents** are generated from your config with `
|
|
190
|
+
**Specialist agents** are generated from your config with `gnanai generate` — they understand your specific tech stack, file paths, and conventions.
|
|
189
191
|
|
|
190
192
|
## Commands
|
|
191
193
|
|
|
192
194
|
| Command | Purpose |
|
|
193
195
|
|---------|---------|
|
|
194
|
-
| `
|
|
195
|
-
| `
|
|
196
|
-
| `
|
|
197
|
-
| `
|
|
198
|
-
| `
|
|
199
|
-
| `
|
|
200
|
-
| `
|
|
201
|
-
| `
|
|
202
|
-
| `
|
|
203
|
-
| `
|
|
204
|
-
| `
|
|
205
|
-
| `
|
|
206
|
-
| `
|
|
207
|
-
| `
|
|
208
|
-
| `
|
|
209
|
-
| `
|
|
196
|
+
| `gnanai init` | Initialize gnanai in your project (smart — handles existing setups) |
|
|
197
|
+
| `gnanai update` | Update agents/templates with smart file comparison |
|
|
198
|
+
| `gnanai generate` | Generate specialist agents from your config |
|
|
199
|
+
| `gnanai setup-project` | Interactive wizard for project description |
|
|
200
|
+
| `gnanai setup-config` | Interactive wizard for config, commands, permissions |
|
|
201
|
+
| `gnanai doctor` | Validate your setup |
|
|
202
|
+
| `gnanai rollback` | Restore from automatic backup |
|
|
203
|
+
| `gnanai cleanup` | Remove deprecated files and old backups |
|
|
204
|
+
| `gnanai setup` | Auto-configure git and MCP integrations |
|
|
205
|
+
| `gnanai knowledge create` | Create a shared knowledge group |
|
|
206
|
+
| `gnanai knowledge join` | Link project to a knowledge group |
|
|
207
|
+
| `gnanai knowledge leave` | Unlink project from a knowledge group |
|
|
208
|
+
| `gnanai knowledge list` | List all knowledge groups |
|
|
209
|
+
| `gnanai knowledge sync` | Sync knowledge group with git remote |
|
|
210
|
+
| `gnanai knowledge info` | Show knowledge group status |
|
|
211
|
+
| `gnanai uninstall` | Remove gnanai from your project |
|
|
210
212
|
|
|
211
213
|
All commands support `--dry-run` to preview changes and `-y` for non-interactive CI mode.
|
|
212
214
|
|
|
213
215
|
### Key flags
|
|
214
216
|
|
|
215
217
|
```bash
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
218
|
+
gnanai init --skip-wizard # Use detected defaults
|
|
219
|
+
gnanai init --force # Re-initialize with file comparison
|
|
220
|
+
gnanai update --all # Force update all files
|
|
221
|
+
gnanai rollback --list # Show available backups
|
|
222
|
+
gnanai cleanup --all # Remove deprecated files + prune backups
|
|
221
223
|
```
|
|
222
224
|
|
|
223
225
|
## Permission Presets
|
|
224
226
|
|
|
225
|
-
|
|
227
|
+
gnanai configures Claude Code permissions via `.claude/settings.local.json`:
|
|
226
228
|
|
|
227
229
|
| Preset | Description |
|
|
228
230
|
|--------|-------------|
|
|
@@ -267,4 +269,4 @@ MIT
|
|
|
267
269
|
|
|
268
270
|
## Contributing
|
|
269
271
|
|
|
270
|
-
Contributions welcome
|
|
272
|
+
Contributions are welcome via issues and pull requests.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bhimudev/gnanai",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Multi-agent AI development workflow setup for any project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"bin": {
|
|
25
|
-
"gnanai": "dist/bin/cli.js"
|
|
26
|
-
"archai": "dist/bin/cli.js"
|
|
25
|
+
"gnanai": "dist/bin/cli.js"
|
|
27
26
|
},
|
|
28
27
|
"main": "./dist/index.js",
|
|
29
28
|
"types": "./dist/index.d.ts",
|