Skip to content

Commit 2ed274d

Browse files
GrillerGeekclaude
andcommitted
Add badges, bug report template, and PR template
Add license, plugin, and framework version badges to README. Add bug report issue template alongside existing feedback template. Add pull request template with change type and checklist. Remove accidental {docs,examples,templates,.github} directory. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d0415d2 commit 2ed274d

3 files changed

Lines changed: 61 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Bug Report
2+
description: Report an error, inconsistency, or broken link in the framework docs or plugin
3+
title: "[Bug] "
4+
labels: ["bug"]
5+
body:
6+
- type: dropdown
7+
id: area
8+
attributes:
9+
label: Where is the issue?
10+
options:
11+
- Framework documentation (docs/)
12+
- Templates (templates/)
13+
- Examples (examples/)
14+
- Claude Code plugin (plugin/)
15+
- README or repo-level files
16+
- Other
17+
validations:
18+
required: true
19+
20+
- type: input
21+
id: file
22+
attributes:
23+
label: Affected file(s)
24+
description: Which file(s) contain the issue?
25+
placeholder: "e.g., docs/spec-authoring.md"
26+
27+
- type: textarea
28+
id: description
29+
attributes:
30+
label: What's wrong?
31+
description: Describe the error, inconsistency, or broken link.
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: expected
37+
attributes:
38+
label: Expected behavior
39+
description: What should it say or do instead?

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## What does this PR change?
2+
3+
<!-- Brief summary of what changed and why. -->
4+
5+
## Type of change
6+
7+
- [ ] Documentation fix (typo, broken link, clarification)
8+
- [ ] New or updated example
9+
- [ ] Framework refinement (artifact schema, process, roles, metrics)
10+
- [ ] Plugin change (commands, agents, skills)
11+
- [ ] Other
12+
13+
## Checklist
14+
15+
- [ ] Changes are consistent with the framework's core positions (see CLAUDE.md "Key Concepts to Preserve")
16+
- [ ] Any new artifacts follow existing formatting and field conventions
17+
- [ ] Cross-references between docs are valid
18+
- [ ] Templates and examples are updated if the schema changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Intent-Driven Development Framework
22

3+
[![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC_BY--SA_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-sa/4.0/)
4+
[![Claude Code Plugin](https://img.shields.io/badge/Claude_Code-plugin-blueviolet.svg)](https://claude.com/claude-code)
5+
[![Framework](https://img.shields.io/badge/framework-v1-green.svg)](docs/framework.md)
6+
37
**A process framework that gives developers and AI agents enough context to make decisions autonomously — without waiting for someone to tell them what to do.**
48

59
---

0 commit comments

Comments
 (0)