@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.
Files changed (2) hide show
  1. package/README.md +35 -35
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # Archai [Join our Discord](https://discord.gg/J3wgDb4YJv)
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
- Archai 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.
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
  ![Three-Phase Architecture](diagram.jpg)
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 archai?
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. archai fixes this with a **three-phase workflow**:
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
- archai knowledge create my-team # Create a shared knowledge group
67
- archai knowledge join my-team # Link this project to the group
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
- archai knowledge remote my-team <git-url> # Add remote
76
- archai knowledge sync # Commit + pull + push
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
- archai setup-project # Describe your project architecture
83
- archai setup-config # Configure commands, specialists, permissions
84
- archai generate # Generate project-specific specialist agents
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 `archai generate` — they understand your specific tech stack, file paths, and conventions.
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
- | `archai init` | Initialize archai in your project (smart — handles existing setups) |
195
- | `archai update` | Update agents/templates with smart file comparison |
196
- | `archai generate` | Generate specialist agents from your config |
197
- | `archai setup-project` | Interactive wizard for project description |
198
- | `archai setup-config` | Interactive wizard for config, commands, permissions |
199
- | `archai doctor` | Validate your setup |
200
- | `archai rollback` | Restore from automatic backup |
201
- | `archai cleanup` | Remove deprecated files and old backups |
202
- | `archai setup` | Auto-configure git and MCP integrations |
203
- | `archai knowledge create` | Create a shared knowledge group |
204
- | `archai knowledge join` | Link project to a knowledge group |
205
- | `archai knowledge leave` | Unlink project from a knowledge group |
206
- | `archai knowledge list` | List all knowledge groups |
207
- | `archai knowledge sync` | Sync knowledge group with git remote |
208
- | `archai knowledge info` | Show knowledge group status |
209
- | `archai uninstall` | Remove archai from your project |
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
- archai init --skip-wizard # Use detected defaults
217
- archai init --force # Re-initialize with file comparison
218
- archai update --all # Force update all files
219
- archai rollback --list # Show available backups
220
- archai cleanup --all # Remove deprecated files + prune backups
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
- archai configures Claude Code permissions via `.claude/settings.local.json`:
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! Join the [Discord](https://discord.gg/J3wgDb4YJv) to discuss ideas.
270
+ 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.0",
3
+ "version": "0.4.1",
4
4
  "description": "Multi-agent AI development workflow setup for any project",
5
5
  "keywords": [
6
6
  "claude",