Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install jamie-bitflight-claude-skills-plugins-development-harness-skills-interopgit clone https://github.com/Jamie-BitFlight/claude_skills.gitcp claude_skills/SKILL.MD ~/.claude/skills/jamie-bitflight-claude-skills-plugins-development-harness-skills-interop/SKILL.md---
name: interop
description: Routes a Superpowers plan file through the /work-backlog-item pipeline and writes SAM task back-references and chunk annotations into the original plan. Use when given a path to a Superpowers plan file via $ARGUMENTS and needing to create a linked backlog item plus SAM task file.
---
# /dh:interop — Superpowers Plan Interop Adapter
Routes a Superpowers plan file through the `/work-backlog-item` pipeline to produce a SAM task
file, then writes back-references into the original plan. Does not re-implement any pipeline
logic — delegates entirely to `/work-backlog-item`.
The plan file path is provided as `$ARGUMENTS`.
Invocation: `/dh:interop <path-to-plan-file>`
SOURCE: plan/architect-dh-phase2-interop-adapter.md (historical plan artifact, archived to `~/.dh/projects/{project-slug}/plan/`)
---
## Step 1 — Validate the argument
If `$ARGUMENTS` is empty, abort immediately:
```text
ERROR: `/dh:interop` requires a path to a Superpowers plan file.
Usage: `/dh:interop docs/superpowers/plans/YYYY-MM-DD-slug.md`
```
Use the Read tool to open the file at the path given in `$ARGUMENTS`. If the file does not
exist or cannot be read, abort:
```text
ERROR: Cannot read plan file: {path}
```
Make no changes to the file or backlog before this check passes.
---
## Step 2 — Extract fields from the plan file
Extract the following fields by exact pattern match against the raw file text. No inference.
```mermaid
flowchart TD
Read([Raw file text in memory]) --> ExtractTitle[Extract Title<br>Pattern: first line matching ^# .+]
ExtractTitle --> HasTitle{Title found?}
HasTitle -->|No| AbortTitle["ABORT: Missing required field<br>ERROR: Plan file has no # heading — title is required"]
HasTitle -->|Yes| ExtractGoal[Extract Goal<br>Pattern: line matching ^\*\*Goal:\*\*\s*.+]
ExtractGoal --> HasGoal{Goal found?}
HasGoal -->|No| AbortGoal["ABORT: Missing required field<br>ERROR: Plan file has no **Goal:** field — goal is required"]
HasGoal -->|Yes| ExtractSpec[Extract Spec<br>Pattern: line matching ^\*\*Spec:\*\*\s*.+]
ExtractSpec --> HasSpec{Spec found?}
HasSpec -->|No| WarnSpec["Log warning: no **Spec:** field found — continuing"]
HasSpec -->|Yes| SpecOK[Spec captured]
WarnSpec --> ExtractBacklog
SpecOK --> ExtractBacklog[Extract Backlog item<br>Pattern: line matching ^\*\*Backlog item:\*\*\s*#\d+]
ExtractBacklog --> HasBacklog{Backlog item found?}
HasBacklog -->|Yes — integer N captured| ExtractChunks
HasBacklog -->|No| CreateBacklog[Step 3 — create backlog item]
CreateBacklog --> ExtractChunks
ExtractChunks[Extract Chunks<br>Pattern: all lines matching ^## Chunk \d+: .+] --> HasChunks{At least one chunk found?}
HasChunks -->|No| WarnChunks["Log warning: no ## Chunk N: headings found<br>Chunk annotation step will be skipped"]
HasChunks -->|Yes| ChunksOK[All chunk numbers and names captured]
WarnChunks --> Proceed([Proceed to Step 3])
ChunksOK --> Proceed
```
Field extraction rules:
- **Title**: first line matching `^# (.+)$` — capture the text after `#`
- **Goal**: line matching `^\*\*Goal:\*\*\s*(.+)$` — capture remainder of the line
- **Spec**: line matching `^\*\*Spec:\*\*\s*(.+)$` — capture remainder of the line (may be a
file path or URL)
- **Backlog item**: line matching `^\*\*Backlog item:\*\*\s*#(\d+)$` — capture the integer N
- **Chunks**: all lines matching `^## Chunk (\d+): (.+)$` — capture chunk number and name for
each heading
Abort conditions (make no changes before aborting):
- Title absent: `ERROR: Plan file has no # heading — title is required to name the backlog item`
- Goal absent: `ERROR: Plan file has no **Goal:** field — goal is required as backlog item description`
---
## Step 3 — Ensure a backlog item exists
```mermaid
flowchart TD
Q{Backlog item #N<br>found in Step 2?}
Q -->|Yes| UseExisting[Use existing item #N<br>Proceed to Step 4]
Q -->|No| Create["Call mcp__plugin_dh_backlog__backlog_add<br>title = Title extracted in Step 2<br>description = Goal extracted in Step 2<br>plan = $ARGUMENTS"]
Create --> CheckError{Response has<br>error key?}
CheckError -->|Yes| AbortCreate["ABORT<br>ERROR: Failed to create backlog item<br>Print exact error from response"]
CheckError -->|No| CaptureN[Capture new issue number N from response]
CaptureN --> WriteRef["Write **Backlog item:** #N into the plan file<br>using Edit tool<br>Insert after the last existing bold-field line<br>or after the # Title heading if no bold fields present"]
WriteRef --> UseExisting
```
When writing the backlog item reference into the plan file, use the Edit tool to insert:
```markdown
**Backlog item:** #N
```
Position: immediately after the last existing `**Field:**` line in the header block, or after
the `# Title` heading if no bold fields are present.
---
## Step 4 — Invoke /work-backlog-item
Invoke the `/work-backlog-item` skill using the Skill tool with the backlog item number:
```text
Skill(skill="work-backlog-item", args="#N")
```
Include the Superpowers plan file path as additional context in the invocation prompt so the
pipeline can read the plan's Goal, Spec, and Chunks when producing the SAM task file. Pass the
plan file path as a note in the prompt (e.g., "Plan file for context: {plan-file-path}") — the
`work-backlog-item` skill does not accept a second positional argument, so the path is passed
as contextual prose in the delegation prompt, not as an arg.
This step runs: groom → RT-ICA → SAM planning and produces a SAM task plan. The plan address is returned in the `/work-backlog-item` output.
Wait for `/work-backlog-item` to complete. The plan address it produces is required for Steps
5 and 6.
---
## Step 5 — Capture the plan address
After `/work-backlog-item` completes, identify the plan address it produced. The plan address is included in the `/work-backlog-item` output (e.g., `Pc7d8e9f0` or `tasks-N-slug`).
If the plan address is not stated in the output, use `sam_list` via MCP to find the plan whose slug matches the backlog item title:
```text
mcp__plugin_dh_sam__sam_plan(config={"action": "list"})
```
If no matching plan exists, abort:
```text
ERROR: /work-backlog-item did not produce a task plan. Cannot write back-references.
```
Record the plan address for use in Steps 6 and 7.
---
## Step 6 — Write the SAM tasks back-reference
Read the current content of the plan file. Locate the `**Backlog item:**` line.
```mermaid
flowchart TD
Q{Does a **SAM tasks:** line<br>already exist in the file?}
Q -->|Yes — re-run scenario| Replace["Replace the existing **SAM tasks:** line in-place<br>Do not insert a duplicate"]
Q -->|No| Insert["Insert on the line immediately after **Backlog item:**"]
Replace --> Done([Write complete])
Insert --> Done
```
The exact text to write (substituting the real plan address):
```markdown
**SAM tasks:** {plan-address}
```
Where `{plan-address}` is the plan identifier returned in Step 5 (e.g., `Pc7d8e9f0` or `tasks-N-slug`). The address is resolved by MCP tools — do not construct filesystem paths.
Use the Edit tool to make this change. Do not rewrite the file.
---
## Step 7 — Write chunk annotations
If no chunks were found in Step 2 (warning was logged), skip this step entirely.
For each `## Chunk N:` heading captured in Step 2:
```mermaid
flowchart TD
ForEach([For each Chunk N captured]) --> HasTask{"Does chunk number N<br>have a corresponding SAM task T[N]?"}
HasTask -->|No — chunk count exceeds task count| Skip[Skip this chunk — no annotation]
HasTask -->|Yes| CheckExisting{Does the line immediately<br>following this heading already<br>contain a SAM annotation comment?}
CheckExisting -->|Yes — re-run scenario| ReplaceAnnotation["Replace existing annotation in-place<br><!-- SAM: T{N} in {plan-address} -->"]
CheckExisting -->|No| InsertAnnotation["Insert on the line immediately<br>after the ## Chunk N: heading<br><!-- SAM: T{N} in {plan-address} -->"]
ReplaceAnnotation --> Next([Next chunk])
InsertAnnotation --> Next
Skip --> Next
```
Annotation format — substitute the real chunk number and plan address from Step 5:
```markdown
<!-- SAM: T3 in {plan-address} -->
```
The task number `T{N}` matches the chunk number `N` by position. Chunk 1 → T1, chunk 2 → T2.
If chunk count exceeds SAM task count, annotate only the chunks that have a corresponding task
number. Unmatched chunks receive no annotation.
Use the Edit tool for each annotation. Do not rewrite the file.
---
## Idempotency rules
Running `/dh:interop` on the same plan file a second time must produce identical output to the
first run — no duplicates, no data loss.
- `**SAM tasks:**` line: if it already exists, replace in-place. Never insert a second line.
- Chunk annotations: if the comment already exists on the line immediately after a `## Chunk N:`
heading, replace in-place. Never insert a duplicate.
- `**Backlog item:**` line: if it already exists, use the existing number. Never create a second
backlog item.
---
## Abort conditions summary
Stop immediately and make no further changes when:
- `$ARGUMENTS` is empty
- The file at `$ARGUMENTS` cannot be read
- Title (`#` heading) is absent from the plan file
- Goal (`**Goal:**` field) is absent from the plan file
- `mcp__plugin_dh_backlog__backlog_add` returns an error response
- `/work-backlog-item` completes without producing a task file
All abort messages are prefixed with `ERROR:` and printed to the user before stopping.
---
## Example invocations
```text
/dh:interop docs/superpowers/plans/2026-03-11-oauth-token-refresh.md
/dh:interop docs/superpowers/plans/2026-02-28-manifest-discovery.md
```