dev-loops 0.2.0 → 0.2.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.
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "dev-loops",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Agent-harness-agnostic dev-loop: agents, skills, and hooks for GitHub/Copilot-driven development loops.",
5
+ "author": {
6
+ "name": "Manuel Fittko",
7
+ "email": "manuel.fittko@sofatutor.com"
8
+ },
5
9
  "license": "MIT",
6
10
  "homepage": "https://github.com/mfittko/dev-loops#readme",
7
11
  "repository": "https://github.com/mfittko/dev-loops.git",
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "dev-loops",
3
+ "owner": {
4
+ "name": "Manuel Fittko",
5
+ "email": "manuel.fittko@sofatutor.com"
6
+ },
7
+ "description": "Turn GitHub issues into merged PRs: agent-harness-agnostic dev-loop agents, skills, and hooks for Claude Code.",
8
+ "plugins": [
9
+ {
10
+ "name": "dev-loops",
11
+ "source": "./.claude",
12
+ "description": "Agent-harness-agnostic dev-loop: agents, skills, and hooks for GitHub/Copilot-driven development loops.",
13
+ "homepage": "https://github.com/mfittko/dev-loops#readme",
14
+ "repository": "https://github.com/mfittko/dev-loops.git",
15
+ "license": "MIT",
16
+ "keywords": ["dev-loop", "workflow", "github", "copilot", "claude-code", "plugin"]
17
+ }
18
+ ]
19
+ }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 0.2.1
6
+
7
+ ### Added
8
+
9
+ - **Claude Code marketplace catalog** (#828): ship `.claude-plugin/marketplace.json` at the repo
10
+ root so the repo can be added as a plugin marketplace (`/plugin marketplace add mfittko/dev-loops`,
11
+ or the *Manage Plugins → Marketplaces → Add* UI) and the plugin installed with
12
+ `/plugin install dev-loops@dev-loops`. The catalog's single plugin entry sources the existing
13
+ in-repo plugin at `./.claude`; the plugin version stays authoritative in `plugin.json`. A
14
+ contract test locks the catalog shape, and `.claude-plugin/` is added to the npm `files`
15
+ allowlist. Verified end-to-end with `claude plugin validate` + `marketplace add`/`install`
16
+ (4 skills, 7 agents, 2 hooks).
17
+
18
+ ### Changed
19
+
20
+ - `plugin.json` now declares an `author` (clears the marketplace-validation warning).
21
+ - README "Claude Code plugin" section drops the `(preview)` framing and documents marketplace
22
+ install; the two CLI help lines that said plugin packaging was "in progress" are updated.
23
+
5
24
  ## 0.2.0
6
25
 
7
26
  ### Added — Claude Code harness (agent-harness-agnostic dev-loop)
package/README.md CHANGED
@@ -45,11 +45,20 @@ Or run directly without installing:
45
45
  npx dev-loops --help
46
46
  ```
47
47
 
48
- ### Claude Code plugin (preview)
48
+ ### Claude Code plugin
49
49
 
50
50
  The repo ships a Claude Code plugin rooted at `.claude/` (manifest at
51
- `.claude/.claude-plugin/plugin.json`) exposing the dev-loop agents and skills. Load it for a
52
- session with:
51
+ `.claude/.claude-plugin/plugin.json`) exposing the dev-loop **agents, skills, and hooks**.
52
+
53
+ Install it from the bundled marketplace catalog (`.claude-plugin/marketplace.json`) by running
54
+ these slash commands inside Claude Code:
55
+
56
+ ```text
57
+ /plugin marketplace add mfittko/dev-loops # register the marketplace
58
+ /plugin install dev-loops@dev-loops # install the plugin
59
+ ```
60
+
61
+ Or load it directly for a single session without installing:
53
62
 
54
63
  ```bash
55
64
  claude --plugin-dir .claude # load it for a session
@@ -58,8 +67,11 @@ claude --plugin-dir .claude plugin details dev-loops # inspect the discovere
58
67
 
59
68
  When installed from npm, point at the bundled copy: `claude --plugin-dir node_modules/dev-loops/.claude`.
60
69
 
61
- Preview: hook bundling and shared-doc/Pi-prose neutralization in the generated skills are
62
- tracked follow-ups (the skills load but some in-body links resolve only inside this repo for now).
70
+ The plugin is self-contained: it bundles the shared contract docs and templates the skills
71
+ reference, and strips Pi-runtime-only prose from the generated assets. The hooks provide the
72
+ `gh pr ready` draft-gate guard and the main-agent read-only boundary (the read-only enforcement
73
+ is opt-in via `DEVLOOPS_MAIN_AGENT_READONLY=1`). Skill references to a project's own `PLAN.md` /
74
+ `AGENTS.md` resolve against the consumer repo, by design.
63
75
 
64
76
  ### Pi extension
65
77
 
package/cli/index.mjs CHANGED
@@ -210,7 +210,7 @@ function buildCliHelpLines() {
210
210
  "",
211
211
  "`/dev-loops hide` remains an extension-only Pi command.",
212
212
  "Run via `npx dev-loops` (or `npm install -g dev-loops` for the shell command); see the",
213
- "README for Pi-extension setup (Claude Code plugin packaging is in progress).",
213
+ "README for Pi-extension and Claude Code plugin setup.",
214
214
  ];
215
215
  }
216
216
 
@@ -232,7 +232,7 @@ function orderedCliSetupSteps(checks) {
232
232
  return [
233
233
  "1. Use `/dev-loop` (Claude Code) or `/skill:dev-loop` (Pi) to start or continue a dev loop — the single public entry.",
234
234
  "2. Run `dev-loops status` whenever you want a concise readiness snapshot.",
235
- "3. Run via `npx dev-loops` (or `npm install -g dev-loops` for the shell command); see the README for Pi-extension setup (Claude Code plugin packaging is in progress).",
235
+ "3. Run via `npx dev-loops` (or `npm install -g dev-loops` for the shell command); see the README for Pi-extension and Claude Code plugin setup.",
236
236
  ];
237
237
  }
238
238
 
package/package.json CHANGED
@@ -75,7 +75,7 @@
75
75
  "dependencies": {
76
76
  "mermaid": "11.15.0",
77
77
  "zod": "^4.4.3",
78
- "@dev-loops/core": "^0.2.0"
78
+ "@dev-loops/core": "^0.2.1"
79
79
  },
80
80
  "repository": {
81
81
  "type": "git",
@@ -85,7 +85,7 @@
85
85
  "url": "https://github.com/mfittko/dev-loops/issues"
86
86
  },
87
87
  "homepage": "https://github.com/mfittko/dev-loops#readme",
88
- "version": "0.2.0",
88
+ "version": "0.2.1",
89
89
  "files": [
90
90
  "cli/",
91
91
  "lib/",
@@ -93,6 +93,7 @@
93
93
  "extension/",
94
94
  "skills/",
95
95
  "agents/",
96
+ ".claude-plugin/",
96
97
  ".claude/.claude-plugin/",
97
98
  ".claude/agents/",
98
99
  ".claude/skills/",