knowzcode 0.3.7 → 0.5.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.
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Official KnowzCode plugin marketplace - Platform-agnostic AI development methodology",
9
- "version": "0.3.7"
9
+ "version": "0.5.2"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "kc",
14
14
  "source": "./",
15
15
  "description": "KnowzCode - Platform-agnostic AI development methodology with TDD, quality gates, and structured workflows",
16
- "version": "0.3.7",
16
+ "version": "0.5.2",
17
17
  "author": {
18
18
  "name": "Alex Headscarf"
19
19
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kc",
3
3
  "description": "KnowzCode - Platform-agnostic AI development methodology with TDD, quality gates, and structured workflows",
4
- "version": "0.3.7",
4
+ "version": "0.5.2",
5
5
  "author": {
6
6
  "name": "Alex Headscarf"
7
7
  }
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![License: MIT + Commons Clause](https://img.shields.io/badge/License-MIT_+_Commons_Clause-yellow.svg)](LICENSE)
8
8
  [![Claude Code Plugin](https://img.shields.io/badge/Claude_Code-Plugin-purple)](https://github.com/knowz-io/knowzcode)
9
- [![Version](https://img.shields.io/badge/version-0.3.7-blue)](https://github.com/knowz-io/knowzcode/releases)
9
+ [![Version](https://img.shields.io/badge/version-0.5.2-blue)](https://github.com/knowz-io/knowzcode/releases)
10
10
 
11
11
  [Installation](#installation) · [Quick Start](#quick-start) · [When to Use It](#when-to-use-knowzcode) · [How It Works](#how-it-works) · [Commands](#commands) · [Docs](#documentation)
12
12
 
@@ -31,7 +31,7 @@ KnowzCode is a **platform-agnostic development methodology** that lives in your
31
31
  - **Living Documentation** — Architecture diagrams and specs auto-update as code changes
32
32
  - **Session Memory** — WorkGroups track complete context so nothing is lost between sessions
33
33
  - **Interruption Recovery** — Say "continue" to resume exactly where you left off
34
- - **Multi-Platform** — Works with Claude Code, Codex, Gemini, Cursor, Copilot, and Windsurf
34
+ - **Multi-Platform** — First-class support for Claude Code, OpenAI Codex, and Gemini CLI, with adapters for Cursor, Copilot, and Windsurf
35
35
 
36
36
  ## When to Use KnowzCode
37
37
 
@@ -91,7 +91,7 @@ cd your-project/
91
91
 
92
92
  ```bash
93
93
  npx knowzcode # Interactive setup
94
- npx knowzcode install --platforms claude,cursor # Specific platforms
94
+ npx knowzcode install --platforms claude,gemini # Specific platforms
95
95
  npx knowzcode install --platforms all # All 6 platforms
96
96
  ```
97
97
 
@@ -99,28 +99,37 @@ Commands available as `/work`, `/plan`, `/fix` (without `kc:` prefix).
99
99
  For `/kc:` prefix, also run: `/plugin install kc@knowzcode`.
100
100
 
101
101
  <details>
102
- <summary><strong>Supported Platforms (6)</strong></summary>
102
+ <summary><strong>Supported Platforms</strong></summary>
103
103
 
104
- | Platform | Instruction File | Support Level |
105
- |----------|-----------------|---------------|
106
- | Claude Code | `CLAUDE.md` | Full support (plugin + agents + commands) |
107
- | Gemini CLI | `GEMINI.md` + `.gemini/commands/kc/*.toml` | Native `/kc:` commands + instruction file |
108
- | OpenAI Codex | `AGENTS.md` | Instruction file + SKILL.md format |
109
- | Cursor | `.cursor/rules/*.mdc` + `.cursor/commands/*.md` | Rules + commands (beta) |
110
- | GitHub Copilot | `.github/copilot-instructions.md` + `.github/prompts/kc-*.prompt.md` | Full support (instructions + 9 prompt files + MCP) |
111
- | Windsurf | `.windsurf/rules/*.md` + `.windsurf/workflows/*.md` | Rules + workflows |
104
+ **Primary (full support):**
105
+
106
+ | Platform | Generated Files | Support Level |
107
+ |----------|----------------|---------------|
108
+ | Claude Code | `CLAUDE.md` + `.claude/{agents,commands,skills}/` | Plugin + 14 agents + 11 commands |
109
+ | OpenAI Codex | `AGENTS.md` + `.agents/skills/kc-*/SKILL.md` (12 skills) | Instruction file + discoverable skill files |
110
+ | Gemini CLI | `GEMINI.md` + `.gemini/commands/kc/*.toml` (12 commands) + `.gemini/skills/kc-*/SKILL.md` (12 skills) + `.gemini/agents/kc-*.md` (14 subagents, experimental) | Native commands + skills + subagents + instruction file |
111
+
112
+ **Experimental (functional, under refinement):**
113
+
114
+ | Platform | Generated Files | Support Level |
115
+ |----------|----------------|---------------|
116
+ | GitHub Copilot | `.github/copilot-instructions.md` + `.github/prompts/kc-*.prompt.md` (9 prompts) + `.vscode/mcp.json` | Instruction file + prompt files + MCP |
117
+ | Cursor | `.cursor/rules/knowzcode.mdc` | Rules file (commands via `.cursor/commands/` beta) |
118
+ | Windsurf | `.windsurf/rules/knowzcode.md` | Rules file (workflows via `.windsurf/workflows/`) |
112
119
 
113
120
  </details>
114
121
 
115
- ### Manual (No Node.js)
122
+ ### Manual (Repo Clone)
116
123
 
117
124
  ```bash
118
125
  git clone https://github.com/knowz-io/knowzcode.git
119
126
  cd KnowzCode
120
- ./install.sh --target /path/to/your/project # Linux/macOS
121
- .\install.ps1 -Target C:\path\to\your\project # Windows
127
+ ./install.sh install --target /path/to/your/project # Linux/macOS
128
+ .\install.ps1 install --target C:\path\to\your\project # Windows
122
129
  ```
123
130
 
131
+ `install.sh` and `install.ps1` are thin wrappers that delegate to the Node.js installer (`bin/knowzcode.mjs`). Node.js 18+ is required.
132
+
124
133
  ### Cloud Features (Optional)
125
134
 
126
135
  Connect to KnowzCode Cloud for vector-powered semantic search, AI Q&A, and learning capture via MCP. See the [Getting Started Guide](./docs/knowzcode_getting_started.md#mcp-integration-cloud-features) for setup.
@@ -184,8 +193,7 @@ Layer 1: Core Methodology (platform-agnostic, the actual product)
184
193
  ```
185
194
 
186
195
  The real product is Layer 1 — the `knowzcode/` directory. Everything else enhances it.
187
- On Claude Code, Layer 4 provides 14 specialized agents (11 core + 3 opt-in specialists) with parallel orchestration.
188
- On other platforms, the AI follows the same methodology directly.
196
+ On Claude Code, Layer 4 provides 14 specialized agents with parallel orchestration. Codex and Gemini get discoverable skills and native commands. Other platforms follow the same methodology via adapter instruction files.
189
197
  See [Understanding KnowzCode](./docs/understanding-knowzcode.md) for a deep dive.
190
198
 
191
199
  ## Execution Modes
@@ -251,7 +259,53 @@ Specialists communicate directly with builders (max 2 DMs each) and report findi
251
259
 
252
260
  See the [Workflow Reference](./docs/workflow-reference.md) for detailed orchestration flows.
253
261
 
254
- ### GitHub Copilot
262
+ ### OpenAI Codex
263
+
264
+ Codex users get discoverable skills via `.agents/skills/kc-*/`:
265
+
266
+ ```bash
267
+ /kc:work "Build user authentication" # Start feature workflow
268
+ /kc:plan "how is auth implemented?" # Research first
269
+ /kc:fix "Fix login bug" # Quick fix
270
+ /kc:audit # Quality audit
271
+ ```
272
+
273
+ Generated by `npx knowzcode install --platforms codex` into `.agents/skills/`.
274
+
275
+ For cross-project availability, install skills globally:
276
+ ```bash
277
+ npx knowzcode install --platforms codex --global # Skills → ~/.agents/skills/kc-*/
278
+ ```
279
+
280
+ ### Gemini CLI
281
+
282
+ Gemini users get native `/kc:` commands via TOML files, discoverable skills, and optional subagents:
283
+
284
+ ```bash
285
+ /kc:work "Build JWT authentication" # Start feature workflow
286
+ /kc:plan "how is auth implemented?" # Research first
287
+ /kc:fix "Fix login redirect bug" # Quick fix
288
+ /kc:audit # Quality audit
289
+ /kc:continue # Resume where you left off
290
+ /kc:connect-mcp <api-key> # Configure MCP
291
+ /kc:telemetry "500 errors in prod" # Investigate telemetry
292
+ ```
293
+
294
+ Generated by `npx knowzcode install --platforms gemini` into `.gemini/commands/kc/`, `.gemini/skills/kc-*/`, and `.gemini/agents/kc-*.md`.
295
+
296
+ For cross-project availability, install skills globally:
297
+ ```bash
298
+ npx knowzcode install --platforms gemini --global # Skills → ~/.gemini/skills/kc-*/
299
+ ```
300
+
301
+ Subagents (experimental) require `experimental.enableAgents: true` in Gemini `settings.json`.
302
+
303
+ ### Other Platforms (Experimental)
304
+
305
+ Adapters for Cursor, GitHub Copilot, and Windsurf are functional but under active refinement. The AI follows the same methodology phases sequentially — reading prompt templates from `knowzcode/prompts/` and following the same quality gates.
306
+
307
+ <details>
308
+ <summary><strong>GitHub Copilot</strong></summary>
255
309
 
256
310
  Copilot users invoke phases via prompt files in VS Code Copilot Chat:
257
311
 
@@ -266,9 +320,14 @@ Copilot users invoke phases via prompt files in VS Code Copilot Chat:
266
320
 
267
321
  Generated by `/kc:init` into `.github/prompts/`. See `knowzcode/copilot_execution.md` for details.
268
322
 
269
- ### Other Platforms
323
+ </details>
270
324
 
271
- Gemini, Cursor, Codex, and Windsurf follow the same methodology phases sequentially — the AI reads prompt templates from `knowzcode/prompts/` and follows the same quality gates. No agent orchestration is needed.
325
+ <details>
326
+ <summary><strong>Cursor & Windsurf</strong></summary>
327
+
328
+ Cursor generates a `.cursor/rules/knowzcode.mdc` rules file. Windsurf generates `.windsurf/rules/knowzcode.md`. Both follow methodology phases via prompt templates with no agent orchestration needed.
329
+
330
+ </details>
272
331
 
273
332
  ## Project Structure
274
333