@bhimudev/gnanai 0.4.0 → 0.4.1
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 +35 -35
- package/package.json +1 -1
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)
|
|
@@ -63,8 +63,8 @@ Skip the full workflow:
|
|
|
63
63
|
Share decisions, patterns, and learnings between related projects:
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
gnanai knowledge create my-team # Create a shared knowledge group
|
|
67
|
+
gnanai knowledge join my-team # Link this project to the group
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
Agents automatically search shared knowledge before planning and write cross-cutting decisions back. Works across any number of repos.
|
|
@@ -72,16 +72,16 @@ Agents automatically search shared knowledge before planning and write cross-cut
|
|
|
72
72
|
For team sync via git:
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
gnanai knowledge remote my-team <git-url> # Add remote
|
|
76
|
+
gnanai knowledge sync # Commit + pull + push
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### Optional setup wizards
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
gnanai setup-project # Describe your project architecture
|
|
83
|
+
gnanai setup-config # Configure commands, specialists, permissions
|
|
84
|
+
gnanai generate # Generate project-specific specialist agents
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
## How to Use
|
|
@@ -185,44 +185,44 @@ You can use any agent directly:
|
|
|
185
185
|
| `task-orchestrator` | Workflow | Epic/task lifecycle management |
|
|
186
186
|
| `quick-fix` | Standalone | Fast single-pass for small changes |
|
|
187
187
|
|
|
188
|
-
**Specialist agents** are generated from your config with `
|
|
188
|
+
**Specialist agents** are generated from your config with `gnanai generate` — they understand your specific tech stack, file paths, and conventions.
|
|
189
189
|
|
|
190
190
|
## Commands
|
|
191
191
|
|
|
192
192
|
| Command | Purpose |
|
|
193
193
|
|---------|---------|
|
|
194
|
-
| `
|
|
195
|
-
| `
|
|
196
|
-
| `
|
|
197
|
-
| `
|
|
198
|
-
| `
|
|
199
|
-
| `
|
|
200
|
-
| `
|
|
201
|
-
| `
|
|
202
|
-
| `
|
|
203
|
-
| `
|
|
204
|
-
| `
|
|
205
|
-
| `
|
|
206
|
-
| `
|
|
207
|
-
| `
|
|
208
|
-
| `
|
|
209
|
-
| `
|
|
194
|
+
| `gnanai init` | Initialize gnanai in your project (smart — handles existing setups) |
|
|
195
|
+
| `gnanai update` | Update agents/templates with smart file comparison |
|
|
196
|
+
| `gnanai generate` | Generate specialist agents from your config |
|
|
197
|
+
| `gnanai setup-project` | Interactive wizard for project description |
|
|
198
|
+
| `gnanai setup-config` | Interactive wizard for config, commands, permissions |
|
|
199
|
+
| `gnanai doctor` | Validate your setup |
|
|
200
|
+
| `gnanai rollback` | Restore from automatic backup |
|
|
201
|
+
| `gnanai cleanup` | Remove deprecated files and old backups |
|
|
202
|
+
| `gnanai setup` | Auto-configure git and MCP integrations |
|
|
203
|
+
| `gnanai knowledge create` | Create a shared knowledge group |
|
|
204
|
+
| `gnanai knowledge join` | Link project to a knowledge group |
|
|
205
|
+
| `gnanai knowledge leave` | Unlink project from a knowledge group |
|
|
206
|
+
| `gnanai knowledge list` | List all knowledge groups |
|
|
207
|
+
| `gnanai knowledge sync` | Sync knowledge group with git remote |
|
|
208
|
+
| `gnanai knowledge info` | Show knowledge group status |
|
|
209
|
+
| `gnanai uninstall` | Remove gnanai from your project |
|
|
210
210
|
|
|
211
211
|
All commands support `--dry-run` to preview changes and `-y` for non-interactive CI mode.
|
|
212
212
|
|
|
213
213
|
### Key flags
|
|
214
214
|
|
|
215
215
|
```bash
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
216
|
+
gnanai init --skip-wizard # Use detected defaults
|
|
217
|
+
gnanai init --force # Re-initialize with file comparison
|
|
218
|
+
gnanai update --all # Force update all files
|
|
219
|
+
gnanai rollback --list # Show available backups
|
|
220
|
+
gnanai cleanup --all # Remove deprecated files + prune backups
|
|
221
221
|
```
|
|
222
222
|
|
|
223
223
|
## Permission Presets
|
|
224
224
|
|
|
225
|
-
|
|
225
|
+
gnanai configures Claude Code permissions via `.claude/settings.local.json`:
|
|
226
226
|
|
|
227
227
|
| Preset | Description |
|
|
228
228
|
|--------|-------------|
|
|
@@ -267,4 +267,4 @@ MIT
|
|
|
267
267
|
|
|
268
268
|
## Contributing
|
|
269
269
|
|
|
270
|
-
Contributions welcome
|
|
270
|
+
Contributions are welcome via issues and pull requests.
|