@plazmodium/odin 0.3.3-beta → 0.3.4-beta
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 +16 -10
- package/builtin/ODIN.md +1045 -0
- package/builtin/agent-definitions/README.md +170 -0
- package/builtin/agent-definitions/_shared-context.md +377 -0
- package/builtin/agent-definitions/architect.md +627 -0
- package/builtin/agent-definitions/builder.md +716 -0
- package/builtin/agent-definitions/discovery.md +293 -0
- package/builtin/agent-definitions/documenter.md +238 -0
- package/builtin/agent-definitions/guardian.md +1049 -0
- package/builtin/agent-definitions/integrator.md +363 -0
- package/builtin/agent-definitions/planning.md +236 -0
- package/builtin/agent-definitions/product.md +405 -0
- package/builtin/agent-definitions/release.md +430 -0
- package/builtin/agent-definitions/reviewer.md +447 -0
- package/builtin/agent-definitions/watcher.md +402 -0
- package/builtin/skills/api/graphql/SKILL.md +548 -0
- package/builtin/skills/api/grpc/SKILL.md +554 -0
- package/builtin/skills/api/rest-api/SKILL.md +469 -0
- package/builtin/skills/api/trpc/SKILL.md +503 -0
- package/builtin/skills/architecture/clean-architecture/SKILL.md +141 -0
- package/builtin/skills/architecture/domain-driven-design/SKILL.md +129 -0
- package/builtin/skills/architecture/event-driven/SKILL.md +145 -0
- package/builtin/skills/architecture/microservices/SKILL.md +143 -0
- package/builtin/skills/architecture/tla-precheck/SKILL.md +171 -0
- package/builtin/skills/backend/golang-gin/SKILL.md +141 -0
- package/builtin/skills/backend/nodejs-express/SKILL.md +277 -0
- package/builtin/skills/backend/nodejs-fastify/SKILL.md +152 -0
- package/builtin/skills/backend/python-django/SKILL.md +128 -0
- package/builtin/skills/backend/python-fastapi/SKILL.md +140 -0
- package/builtin/skills/database/mongodb/SKILL.md +132 -0
- package/builtin/skills/database/postgresql/SKILL.md +120 -0
- package/builtin/skills/database/prisma-orm/SKILL.md +366 -0
- package/builtin/skills/database/redis/SKILL.md +140 -0
- package/builtin/skills/database/supabase/SKILL.md +416 -0
- package/builtin/skills/devops/aws/SKILL.md +382 -0
- package/builtin/skills/devops/docker/SKILL.md +359 -0
- package/builtin/skills/devops/github-actions/SKILL.md +435 -0
- package/builtin/skills/devops/kubernetes/SKILL.md +459 -0
- package/builtin/skills/devops/terraform/SKILL.md +453 -0
- package/builtin/skills/frontend/alpine-dev/SKILL.md +27 -0
- package/builtin/skills/frontend/angular-dev/SKILL.md +28 -0
- package/builtin/skills/frontend/astro-dev/SKILL.md +28 -0
- package/builtin/skills/frontend/htmx-dev/SKILL.md +28 -0
- package/builtin/skills/frontend/nextjs-dev/SKILL.md +470 -0
- package/builtin/skills/frontend/react-patterns/SKILL.md +166 -0
- package/builtin/skills/frontend/svelte-dev/SKILL.md +28 -0
- package/builtin/skills/frontend/tailwindcss/SKILL.md +131 -0
- package/builtin/skills/frontend/vuejs-dev/SKILL.md +28 -0
- package/builtin/skills/generic-dev/SKILL.md +307 -0
- package/builtin/skills/testing/cypress/SKILL.md +372 -0
- package/builtin/skills/testing/jest/SKILL.md +176 -0
- package/builtin/skills/testing/playwright/SKILL.md +341 -0
- package/builtin/skills/testing/unit-tests-eval-sdd/SKILL.md +73 -0
- package/builtin/skills/testing/unit-tests-sdd/SKILL.md +83 -0
- package/builtin/skills/testing/vitest/SKILL.md +249 -0
- package/dist/adapters/skills/filesystem.d.ts.map +1 -1
- package/dist/adapters/skills/filesystem.js +2 -18
- package/dist/adapters/skills/filesystem.js.map +1 -1
- package/dist/builtin-assets.d.ts +8 -0
- package/dist/builtin-assets.d.ts.map +1 -0
- package/dist/builtin-assets.js +90 -0
- package/dist/builtin-assets.js.map +1 -0
- package/dist/init.js +69 -11
- package/dist/init.js.map +1 -1
- package/dist/schemas.d.ts +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/tools/prepare-phase-context.d.ts.map +1 -1
- package/dist/tools/prepare-phase-context.js +5 -0
- package/dist/tools/prepare-phase-context.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ A single-install MCP server that gives your AI coding agent an 11-phase developm
|
|
|
6
6
|
|
|
7
7
|
### 1. Install
|
|
8
8
|
|
|
9
|
-
Preferred published-package flow
|
|
9
|
+
Preferred published-package flow:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
npx -y @plazmodium/odin init --project-root /path/to/your/project --tool opencode --write-mcp
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Maintainer repo-checkout flow:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
cd runtime
|
|
@@ -23,24 +23,26 @@ npm run build
|
|
|
23
23
|
### 2. Bootstrap your project
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
# Published-package MCP command snippets
|
|
26
|
+
# Published-package MCP command snippets
|
|
27
27
|
npx -y @plazmodium/odin init --project-root /path/to/your/project --tool amp --write-mcp
|
|
28
28
|
npx -y @plazmodium/odin init --project-root /path/to/your/project --tool opencode --write-mcp
|
|
29
29
|
|
|
30
|
-
# Source-checkout snippets while working from
|
|
30
|
+
# Source-checkout snippets while working on Odin from this repo
|
|
31
31
|
npm run init:project -- --project-root /path/to/your/project --tool amp --distribution source --write-mcp
|
|
32
32
|
npm run init:project -- --project-root /path/to/your/project --tool codex --distribution source --write-mcp
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
This creates:
|
|
36
36
|
- `.odin/config.yaml` — runtime configuration (commit this)
|
|
37
|
+
- `.odin/ODIN.md` — bundled Odin framework guide for the harness to read locally
|
|
38
|
+
- `.odin/agents/definitions/` — bundled phase agent definitions and shared context
|
|
37
39
|
- `.odin/skills/` — project-local skill overrides (commit this)
|
|
38
40
|
- `.env.example` — required environment variables (commit this)
|
|
39
41
|
- Your harness config file (`opencode.json`, `.mcp.json`, or `.codex/config.toml`, depending on tool)
|
|
40
42
|
|
|
41
43
|
Important: Odin bootstraps with `runtime.mode: in_memory` by default so MCP wiring can work without external services. Switch `.odin/config.yaml` to `runtime.mode: supabase` when you are ready for persistent workflow state.
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
If you are developing Odin from this repo, use the repo-checkout `--distribution source` flow shown above.
|
|
44
46
|
|
|
45
47
|
If you are the maintainer preparing that publish, use [the npm publish guide](https://github.com/Plazmodium/odin-workflow/blob/dev/docs/guides/NPM-PUBLISH.md).
|
|
46
48
|
|
|
@@ -273,8 +275,10 @@ Recommended harness behavior:
|
|
|
273
275
|
```text
|
|
274
276
|
1. Call odin.prepare_phase_context(...)
|
|
275
277
|
2. Build the agent prompt from:
|
|
278
|
+
- .odin/ODIN.md (framework-level rules)
|
|
276
279
|
- context.agent.role_summary
|
|
277
280
|
- context.agent.constraints
|
|
281
|
+
- context.agent.definition_markdown
|
|
278
282
|
- context.development_evals.harness_prompt_block
|
|
279
283
|
3. Keep context.development_evals.status_summary visible to the operator
|
|
280
284
|
4. Do not treat eval instructions as a replacement for formal verification, Semgrep, tests, runtime checks, or watcher checks
|
|
@@ -284,14 +288,16 @@ Canonical eval-aware orchestration snippet:
|
|
|
284
288
|
|
|
285
289
|
```text
|
|
286
290
|
When orchestrating Odin phases:
|
|
287
|
-
1.
|
|
288
|
-
2.
|
|
291
|
+
1. Read `.odin/ODIN.md` once so the harness has the framework-level rules in project context.
|
|
292
|
+
2. Call odin.prepare_phase_context({ feature_id, phase, agent_name }).
|
|
293
|
+
3. Build the active agent prompt from:
|
|
289
294
|
- context.agent.role_summary
|
|
290
295
|
- context.agent.constraints
|
|
296
|
+
- context.agent.definition_markdown
|
|
291
297
|
- context.development_evals.harness_prompt_block
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
298
|
+
4. Use odin.get_development_eval_status({ feature_id }) when you need focused eval state.
|
|
299
|
+
5. Record eval artifacts/gates with odin.record_eval_plan, odin.record_eval_run, and odin.record_quality_gate.
|
|
300
|
+
6. Never let Development Evals override odin.verify_design, odin.run_review_checks, tests, runtime verification, or watcher checks.
|
|
295
301
|
```
|
|
296
302
|
|
|
297
303
|
If the harness wants a focused eval-only read path instead of parsing `odin.get_feature_status`, call:
|