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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +79 -20
- package/bin/knowzcode.mjs +522 -21
- package/commands/connect-mcp.md +25 -0
- package/commands/init.md +177 -0
- package/commands/register.md +24 -0
- package/commands/status.md +35 -6
- package/commands/work.md +8 -6
- package/knowzcode/claude_code_execution.md +11 -0
- package/knowzcode/knowzcode_loop.md +6 -1
- package/knowzcode/mcp_config.md +5 -0
- package/knowzcode/platform_adapters.md +1610 -80
- package/package.json +1 -1
- package/skills/alias-resolver.json +15 -15
- package/skills/architecture-diff.json +12 -12
- package/skills/check-installation-status.json +14 -14
- package/skills/environment-guard.json +12 -12
- package/skills/generate-workgroup-id.json +25 -25
- package/skills/install-knowzcode.json +21 -21
- package/skills/load-core-context.json +18 -18
- package/skills/log-entry-builder.json +15 -15
- package/skills/spec-quality-check.json +14 -14
- package/skills/spec-template.json +15 -15
- package/skills/spec-validator.json +25 -25
- package/skills/tracker-scan.json +12 -12
- package/skills/tracker-update.json +28 -28
- package/skills/validate-installation.json +14 -14
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Official KnowzCode plugin marketplace - Platform-agnostic AI development methodology",
|
|
9
|
-
"version": "0.
|
|
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.
|
|
16
|
+
"version": "0.5.2",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Alex Headscarf"
|
|
19
19
|
},
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
[](https://github.com/knowz-io/knowzcode)
|
|
9
|
-
[](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** —
|
|
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,
|
|
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
|
|
102
|
+
<summary><strong>Supported Platforms</strong></summary>
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
|
107
|
-
|
|
108
|
-
|
|
|
109
|
-
|
|
|
110
|
-
|
|
|
111
|
-
|
|
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 (
|
|
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
|
|
121
|
-
.\install.ps1
|
|
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
|
|
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
|
-
###
|
|
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
|
-
|
|
323
|
+
</details>
|
|
270
324
|
|
|
271
|
-
|
|
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
|
|