Skip to content

Commit d6e2edf

Browse files
committed
fix: fixes new command frontmatter
1 parent 05890f5 commit d6e2edf

8 files changed

Lines changed: 93 additions & 1 deletion

File tree

.beads/issues.jsonl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"id":"kyle-claude-plugins-77k","title":"Design: port-feature skill for cross-codebase feature translation","description":"Design a skill that ports features between codebases with convention adaptation and optional parity verification","status":"open","priority":2,"issue_type":"epic","owner":"kyle@kylestratis.com","created_at":"2026-02-15T12:00:25.129031-05:00","created_by":"Kyle Stratis","updated_at":"2026-02-15T12:00:25.129031-05:00"}
2+
{"id":"kyle-claude-plugins-ml4","title":"Research: cross-codebase feature translation skill","status":"closed","priority":3,"issue_type":"task","owner":"kyle@kylestratis.com","created_at":"2026-02-15T11:42:07.44553-05:00","created_by":"Kyle Stratis","updated_at":"2026-02-15T11:49:05.914303-05:00","closed_at":"2026-02-15T11:49:05.914303-05:00","close_reason":"Research complete - architecture defined, gaps identified, next steps clear"}

.deciduous/deciduous.db

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Keep tracking data in git for team visibility
2+
3+
# Design and implementation plans (generated per-project)
4+
docs/design-plans/
5+
docs/implementation-plans/

docs/git-history.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]

docs/graph-data.json

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,71 @@
1-
{"nodes":[],"edges":[]}
1+
{
2+
"nodes": [
3+
{
4+
"id": 1,
5+
"change_id": "f68406e1-ff32-4209-96e1-361b0a756409",
6+
"node_type": "outcome",
7+
"title": "Initialized beads and deciduous for dogfooding while developing plugins",
8+
"description": null,
9+
"status": "pending",
10+
"created_at": "2026-02-13T15:17:32.908455-05:00",
11+
"updated_at": "2026-02-13T15:17:32.908455-05:00",
12+
"metadata_json": "{\"branch\":\"main\"}"
13+
},
14+
{
15+
"id": 2,
16+
"change_id": "6d146941-3d40-4cf9-81eb-5b622ea6c3d2",
17+
"node_type": "goal",
18+
"title": "Project tracking initialized for kyle-claude-plugins",
19+
"description": null,
20+
"status": "pending",
21+
"created_at": "2026-02-13T15:17:36.764042-05:00",
22+
"updated_at": "2026-02-13T15:17:36.764042-05:00",
23+
"metadata_json": "{\"branch\":\"main\"}"
24+
},
25+
{
26+
"id": 3,
27+
"change_id": "f8ba7cb4-554a-4f9e-97cb-c0d7e310f681",
28+
"node_type": "outcome",
29+
"title": "Completed beads integration audit: found 6 issues and 4 improvement opportunities",
30+
"description": null,
31+
"status": "pending",
32+
"created_at": "2026-02-13T15:26:57.255633-05:00",
33+
"updated_at": "2026-02-13T15:26:57.255633-05:00",
34+
"metadata_json": "{\"branch\":\"main\"}"
35+
},
36+
{
37+
"id": 4,
38+
"change_id": "5dab0e0d-60dc-4bd4-aa40-954ca9e9fef0",
39+
"node_type": "goal",
40+
"title": "Design complete workflow taxonomy for beads integration",
41+
"description": null,
42+
"status": "pending",
43+
"created_at": "2026-02-13T15:34:07.732101-05:00",
44+
"updated_at": "2026-02-13T15:34:07.732101-05:00",
45+
"metadata_json": "{\"branch\":\"main\"}"
46+
},
47+
{
48+
"id": 5,
49+
"change_id": "86899151-f607-4a65-87fe-9391461432eb",
50+
"node_type": "action",
51+
"title": "Continuing workflow taxonomy design and implementation",
52+
"description": null,
53+
"status": "pending",
54+
"created_at": "2026-02-13T16:25:54.587313-05:00",
55+
"updated_at": "2026-02-13T16:25:54.587313-05:00",
56+
"metadata_json": "{\"branch\":\"main\"}"
57+
},
58+
{
59+
"id": 6,
60+
"change_id": "6c7ec5ce-f757-48e4-bc89-05350ee45619",
61+
"node_type": "outcome",
62+
"title": "Completed beads integration improvements: fixed confidence flags, added /task /bug /continue commands, updated README, enhanced commit hooks",
63+
"description": null,
64+
"status": "pending",
65+
"created_at": "2026-02-13T18:46:00.823480-05:00",
66+
"updated_at": "2026-02-13T18:46:00.823480-05:00",
67+
"metadata_json": "{\"branch\":\"main\"}"
68+
}
69+
],
70+
"edges": []
71+
}

plugins/workflow-commands/commands/bug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
description: Fix a bug with investigation, root cause tracking, and verification
3+
argument-hint: <bug description or beads-id>
4+
---
5+
16
# Bug
27

38
**For:** Fixing bugs with proper tracking.

plugins/workflow-commands/commands/continue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
description: Resume work on an existing beads task with context recovery
3+
argument-hint: <beads-id>
4+
---
5+
16
# Continue
27

38
**For:** Resuming work on an existing beads task.

plugins/workflow-commands/commands/task.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
description: Small standalone work that doesn't need design/planning phases
3+
argument-hint: <task description>
4+
---
5+
16
# Task
27

38
**For:** Small standalone work that doesn't need design/planning phases.

0 commit comments

Comments
 (0)