Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://json.schemastore.org/claude-code-marketplace.json",
"name": "dld-kit",
"description": "Decision-Linked Development — skills for recording, linking, and auditing development decisions.",
"owner": {
"name": "Jimmy Utterström"
},
"plugins": [
{
"name": "dld",
"description": "Decision-Linked Development skills (init, decide, plan, implement, lookup, audit, snapshot, retrofit, adjust, reindex, status).",
"source": "./",
"category": "development",
"version": "0.7.0",
"homepage": "https://github.com/jimutt/dld-kit",
"tags": ["decisions", "documentation", "workflow"]
}
]
}
21 changes: 21 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "dld",
"version": "0.7.0",
"description": "Decision-Linked Development — record, link, and maintain development decisions alongside code via @decision annotations. Skills for planning, recording, implementing, auditing, and documenting decisions.",
"author": {
"name": "Jimmy Utterström",
"url": "https://github.com/jimutt"
},
"homepage": "https://github.com/jimutt/dld-kit",
"repository": "https://github.com/jimutt/dld-kit",
"license": "MIT",
"keywords": [
"decisions",
"documentation",
"workflow",
"annotations",
"architecture",
"context"
]
}
1 change: 1 addition & 0 deletions .tileignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.git
docs/
.claude/
.claude-plugin/
LICENSE
README.md
tests/
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ AI agents write code confidently. They just don't know *why* your code looks the

### Install

**Via the Claude Code plugin marketplace** (Claude Code only):

```
/plugin marketplace add jimutt/dld-kit
/plugin install dld@dld-kit
```

Skills are invoked as `/dld:dld-decide`, `/dld:dld-plan`, etc.

**Via [Tessl](https://tessl.io)** (works across Claude Code, Cursor, Copilot, etc.):

```bash
Expand All @@ -25,7 +34,7 @@ tessl install dld-kit/dld
cp -r /path/to/dld-kit/.claude/skills/dld-* your-project/.claude/skills/
```

Then run `/dld-init` to set up your project's `CLAUDE.md` with the required rules, or [add them manually](#manual-claude-md-setup).
After any of these, run `/dld-init` (or `/dld:dld-init` for the plugin) to set up your project's `CLAUDE.md` with the required rules, or [add them manually](#manual-claude-md-setup).

### New feature or change

Expand Down
Loading