@stdd/plugin 0.9.0 → 0.9.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.
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +7 -4
- package/package.json +1 -1
- package/runtime/method/reference-integration.md +21 -1
- package/runtime/package.json +1 -1
- package/skills/stdd-brainstorming/SKILL.md +1 -1
- package/skills/stdd-debugging/SKILL.md +1 -1
- package/skills/stdd-delegate-slice/SKILL.md +1 -1
- package/skills/stdd-finish-change/SKILL.md +1 -1
- package/skills/stdd-implement/SKILL.md +1 -1
- package/skills/stdd-investigation/SKILL.md +1 -1
- package/skills/stdd-planning/SKILL.md +1 -1
- package/skills/stdd-pr-green/SKILL.md +1 -1
- package/skills/stdd-start-change/SKILL.md +1 -1
- package/skills/stdd-worktrees/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -6,10 +6,13 @@ runtime; adopting repositories do not need a local `@stdd/cli` dependency.
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
The STDD repository is its own marketplace for both plugin hosts, and its
|
|
10
|
+
root catalog sources this directory.
|
|
11
|
+
|
|
12
|
+
- **Codex:** `codex plugin marketplace add vsem-azamat/stdd`, then
|
|
13
|
+
`codex plugin add stdd@stdd`.
|
|
14
|
+
- **Claude Code:** `/plugin marketplace add vsem-azamat/stdd`, then
|
|
15
|
+
`/plugin install stdd@stdd`.
|
|
13
16
|
- **Pi:** `pi install npm:@stdd/plugin@<version>`. For a source checkout, use
|
|
14
17
|
`pi install ./plugins/stdd`.
|
|
15
18
|
|
package/package.json
CHANGED
|
@@ -88,10 +88,30 @@ The optional universal bundle at `plugins/stdd/` distributes one generated set
|
|
|
88
88
|
of conservative-profile skills and one CLI runtime through native Codex and
|
|
89
89
|
Claude Code plugin manifests or the `@stdd/plugin` Pi package. The runtime is
|
|
90
90
|
generated from the same source and version as `@stdd/cli`; the adopting
|
|
91
|
-
repository does not install that CLI package.
|
|
91
|
+
repository does not install that CLI package.
|
|
92
|
+
|
|
93
|
+
The adoption modes are cumulative, and for Pi they overlap by name. Codex and
|
|
94
|
+
Claude Code namespace a plugin's skills under the plugin, but Pi registers the
|
|
95
|
+
bundle's skills into the same flat `.agents/skills` registry an initialized
|
|
96
|
+
repository generates into, so every skill name exists twice. The repository's
|
|
97
|
+
definition wins: it is generated for that checkout's selected hosts, while the
|
|
98
|
+
bundle ships the conservative profile that assumes none of them. The bundle
|
|
99
|
+
still supplies its lifecycle extension and runtime. Pi reports the overlap on
|
|
100
|
+
interactive startup only, so a contract that watched a non-interactive run for
|
|
101
|
+
that report would be watching a stream the host never writes to. The bundle never owns repository
|
|
92
102
|
state: its lifecycle integration acts only when the checkout contains
|
|
93
103
|
`.stdd/`; init, task state, policy, and optional CI stay with the repository.
|
|
94
104
|
|
|
105
|
+
A host installs a plugin from a marketplace catalog, not from a bundle
|
|
106
|
+
directory, so this repository root carries one catalog per host — Codex reads
|
|
107
|
+
`.agents/plugins/marketplace.json` and Claude Code reads
|
|
108
|
+
`.claude-plugin/marketplace.json`. Both list the single plugin `stdd`, sourced
|
|
109
|
+
from the `plugins/stdd/` directory of the same checkout. Neither catalog names
|
|
110
|
+
a version: `npm run build:plugin` aligns the bundle manifests and nothing above
|
|
111
|
+
them, so a version restated in a catalog would be a second place to bump that
|
|
112
|
+
no build touches. Each host resolves the installed version from the bundle
|
|
113
|
+
manifest its entry sources.
|
|
114
|
+
|
|
95
115
|
Codex and Claude Code use the bundle's fail-open SessionStart and Stop command
|
|
96
116
|
hooks. If the bundled runtime cannot read an adopting checkout, SessionStart
|
|
97
117
|
reports fixed update-or-reinitialize guidance and exits successfully; Stop
|
package/runtime/package.json
CHANGED
|
@@ -3,7 +3,7 @@ name: stdd-brainstorming
|
|
|
3
3
|
description: "Shape a fuzzy idea into an agreed behavior contract before any plan or code. Use when: A non-trivial change is requested and the requirements, scope, or approach are not yet pinned down."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Brainstorming
|
|
@@ -3,7 +3,7 @@ name: stdd-debugging
|
|
|
3
3
|
description: "Find and fix the root cause of a defect, not its symptom. Use when: A bug, crash, failing test, or unexplained behavior is reported."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Debugging
|
|
@@ -3,7 +3,7 @@ name: stdd-delegate-slice
|
|
|
3
3
|
description: "Hand a slice of work to a worker session with a declared scope, a ledger handoff, and a reviewed result. Use when: Before implementing a multi-step change whose steps are independent — hand slices to worker sessions (subagent, second CLI, teammate) instead of implementing everything inline; also whenever a worker's result comes back for review."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Delegate a Slice
|
|
@@ -3,7 +3,7 @@ name: stdd-finish-change
|
|
|
3
3
|
description: "Close an implemented change with independent review, PR evidence, terminal CI, and runtime verification when required. Use when: Implementation is locally verified and the change is ready for review, delivery, or handoff."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Finish change
|
|
@@ -3,7 +3,7 @@ name: stdd-implement
|
|
|
3
3
|
description: "Execute one agreed behavior slice through docs, genuine red, implementation, and fresh verification. Use when: The behavior contract is agreed and production changes are ready to begin."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Implement
|
|
@@ -3,7 +3,7 @@ name: stdd-investigation
|
|
|
3
3
|
description: "Read-only diagnosis — evidence-backed findings, no changes. Use when: Asked to diagnose, triage, or explain behavior WITHOUT changing anything."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Investigation
|
|
@@ -3,7 +3,7 @@ name: stdd-planning
|
|
|
3
3
|
description: "Turn an agreed behavior contract into an executable, verifiable sequence of work. Use when: The behavior contract is agreed (docs edit drafted or committed) and the change is large enough to need ordered steps — before the first implementation edit, to fix the execution mode and delivery boundary."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Planning
|
|
@@ -3,7 +3,7 @@ name: stdd-pr-green
|
|
|
3
3
|
description: "A PR is done only when its required checks settle terminal-green on the current head. Use when: A PR/MR exists, or is about to be opened, for the current branch."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# PR Green
|
|
@@ -3,7 +3,7 @@ name: stdd-start-change
|
|
|
3
3
|
description: "Classify a request, open durable task state only for changes, and route to the smallest applicable workflow. Use when: A new implementation, fix, refactor, investigation, or repository change is beginning."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Start change
|
|
@@ -3,7 +3,7 @@ name: stdd-worktrees
|
|
|
3
3
|
description: "Work in an isolated workspace without fighting the platform's native isolation. Use when: Starting implementation work that should not disturb the user's current checkout."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- generated by stdd plugin build v0.9.
|
|
6
|
+
<!-- generated by stdd plugin build v0.9.1 — do not edit -->
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Isolated Workspaces
|