codeninja 4.0.0 → 4.0.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 +13 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,8 +2,18 @@
2
2
 
3
3
  AI agent scaffolding system for Node.js, React, and PostgreSQL projects.
4
4
 
5
- **v3.0** — IDE-aware installer. Automatically sets up the right agent structure
6
- for Antigravity, Cursor, or VS Code / GitHub Copilot.
5
+ **v4.0** — Multi-agent architecture with true parallel sub-agents. Full Claude Code support, TypeScript scaffolding, Prisma ORM, and bcrypt/argon2 password hashing. IDE-aware installer for Claude Code, Antigravity, Cursor, and VS Code.
6
+
7
+ ---
8
+
9
+ ## What is new in v4.0
10
+
11
+ - **Multi-agent architecture** — True parallel sub-agents in Claude Code and Antigravity. Orchestrator spawns `nodejs-agent` and `database-agent` simultaneously during `/codeninja:init`
12
+ - **Claude Code support** — Full `.claude/` integration: `CLAUDE.md` orchestrator, 20 slash commands, 3 dedicated sub-agents
13
+ - **TypeScript support** — NodeJS services can now be scaffolded in TypeScript. All generated files support both JS and TS
14
+ - **Prisma ORM** — Optional Prisma support for PostgreSQL, MySQL, and MongoDB alongside the existing raw driver path
15
+ - **Password hashing** — Replaced reversible AES encryption of passwords with bcrypt/argon2 hashing via `utilities/hashing.js`
16
+ - **5 missing task files** — Fixed workflow references to previously missing tasks
7
17
 
8
18
  ---
9
19
 
@@ -85,7 +95,7 @@ npx codeninja init --ide=all # All four
85
95
  | `/codeninja:refactor` | Rename with full context tracking |
86
96
  | `/codeninja:sync` | Scan repo and rebuild context |
87
97
 
88
- ### Code intelligence (new in v3)
98
+ ### Code intelligence
89
99
 
90
100
  | Command | Description |
91
101
  |---|---|
@@ -155,17 +165,6 @@ Add to your Claude Desktop config:
155
165
 
156
166
  ---
157
167
 
158
- ## What is new in v4.0
159
-
160
- - **Multi-agent architecture** — True parallel sub-agents in Claude Code and Antigravity. Orchestrator spawns `nodejs-agent` and `database-agent` simultaneously during `/codeninja:init`
161
- - **Claude Code support** — Full `.claude/` integration: `CLAUDE.md` orchestrator, 20 slash commands, 3 dedicated sub-agents
162
- - **TypeScript support** — NodeJS services can now be scaffolded in TypeScript. All generated files support both JS and TS
163
- - **Prisma ORM** — Optional Prisma support for PostgreSQL, MySQL, and MongoDB alongside the existing raw driver path
164
- - **Password hashing** — Replaced reversible AES encryption of passwords with bcrypt/argon2 hashing via `utilities/hashing.js`
165
- - **5 missing task files** — Fixed workflow references to previously missing tasks
166
-
167
- ---
168
-
169
168
  ## What is new in v3.0
170
169
 
171
170
  - **IDE-aware installer** — detects Antigravity, Cursor, or VS Code automatically
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeninja",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "AI agent scaffolding system — NodeJS (JS/TS), ReactJS, and database projects. Multi-agent architecture with true parallel sub-agents. Supports Prisma ORM, TypeScript, and bcrypt/argon2 password hashing. IDE-aware: Claude Code, Antigravity, Cursor, VS Code.",
5
5
  "private": false,
6
6
  "bin": {