You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A curated, specification-first library of prompts, instruction packs, skills, and Copilot agents that keeps AI helpers aligned with the spec-kit operating model.
**A curated, specification-first library of prompts, instruction packs, skills, and Copilot agents**
9
+
## Why this project exists
10
10
11
-
_Keep AI helpers aligned with the spec-kit operating model • Copy-and-paste reuse • Deterministic workflows_
11
+
### Purpose
12
12
13
-
[Quick Start](#-quick-start) •
14
-
[Features](#-why-use-this-library) •
15
-
[Artefacts](#-featured-artefacts) •
16
-
[Workflow](#-operational-workflow) •
17
-
[Contributing](#-contributing)
13
+
This library provides a central source of reusable prompts, instruction packs, skills, and Copilot agents for AI-assisted development workflows. It enables specification-driven development by keeping AI helpers aligned with a shared operating model.
18
14
19
-
</div>
15
+
### Benefit to the user
20
16
21
-
---
17
+
Teams gain consistent, deterministic automation across repositories. Copy-paste reuse makes onboarding faster, and governance gates ensure that specifications, code, and documentation stay synchronised.
22
18
23
-
##🚀 Quick Start
19
+
### Problem it solves
24
20
25
-
Get up and running in minutes:
21
+
Without shared prompt files, AI assistants drift from agreed standards, produce inconsistent outputs, and lack deterministic validation. Teams end up reinventing the same prompts and struggling to maintain alignment across projects.
|**1**| ✂️ **Copy** the prompts or instruction packs you need straight into downstream repositories |
30
-
|**2**| 📦 **Install** instructions by copying guidance into `.github/instructions` so Copilot inherits rules automatically |
31
-
|**3**| 🤖 **Use** prompts under `.github/prompts` or agents under `.github/agents` to plan, spec, and review |
32
-
|**4**| 🧪 **Validate** by running `make lint` and `make test` whenever you touch source material |
33
-
|**5**| 🧠 **Document** architectural reasoning in `docs/adr` for future context |
23
+
### How it solves it (high level)
34
24
35
-
---
25
+
Prompts, agents, and skills are written directly against the spec-kit constitution. Instruction packs apply deterministic lint, test, and review rules. Every workflow leans on `make lint`, `make test`, and explicit governance gates, keeping behaviour measurable and testable.
36
26
37
-
## ✨ Why Use This Library
27
+
## Quick start
38
28
39
-
<table>
40
-
<tr>
41
-
<tdwidth="50%">
29
+
### Prerequisites
42
30
43
-
### 📜 Specification-First Truth
31
+
- Git
32
+
- Make (GNU Make 3.82+)
33
+
- A text editor (VS Code recommended for Copilot integration)
44
34
45
-
Prompts, agents, and skills are written directly against the spec-kit constitution, so code, docs, and governance remain synchronised.
|**1**| ✂️ **Copy** the prompts or instruction packs you need straight into downstream repositories |
56
+
|**2**| 📦 **Install** instructions by copying guidance into `.github/instructions` so Copilot inherits rules automatically |
57
+
|**3**| 🤖 **Use** prompts under `.github/prompts` or agents under `.github/agents` to plan, spec, and review |
58
+
|**4**| 🧪 **Validate** by running `make lint` and `make test` whenever you touch source material |
59
+
|**5**| 🧠 **Document** architectural reasoning in `docs/adr` for future context |
59
60
60
-
Everything is shippable by folder, making large organisations faster to onboard.
61
+
**Expected output:**`make lint` and `make test` complete successfully with exit code 0.
61
62
62
-
</td>
63
-
</tr>
64
-
</table>
63
+
## What it does
65
64
66
-
---
65
+
### Key features
67
66
68
-
## 📦 Featured Artefacts
67
+
-**Specification-first truth** — prompts, agents, and skills are written directly against the spec-kit constitution, so code, docs, and governance remain synchronised
68
+
-**Consistent guardrails** — instruction packs apply deterministic lint, test, and review rules across every repo, ensuring Copilot never drifts from agreed standards
69
+
-**Deterministic automation** — every workflow leans on `make lint`, `make test`, and explicit governance gates, keeping behaviour measurable and testable
70
+
-**Copy-ready building blocks** — everything is shippable by folder, making large organisations faster to onboard
71
+
-**Governance gates** — explicit checkpoints between specification and implementation
69
72
70
-
> **Tip:** Each pack is designed for copy-paste reuse. Pick what you need!
| 💬 **[.github/prompts](.github/prompts)**| Focused prompt files for documentation reviews, governance gates, tests, and refactoring support |
76
-
| 📋 **[.github/instructions](.github/instructions)**| Coding standards and best practice packs scoped by file glob so Copilot always sees the right rules |
77
-
| 🧠 **[.github/skills](.github/skills)**| Bundled instructions plus helper assets that extend Copilot's capabilities for niche workflows |
78
-
| 📝 **[.specify/templates](.specify/templates)**| Seed specs, plans, and tasks for new features |
| 💬 **[.github/prompts](.github/prompts)**| Focused prompt files for documentation reviews, governance gates, tests, and refactoring support |
207
+
| 📋 **[.github/instructions](.github/instructions)**| Coding standards and best practice packs scoped by file glob so Copilot always sees the right rules |
208
+
| 🧠 **[.github/skills](.github/skills)**| Bundled instructions plus helper assets that extend Copilot's capabilities for niche workflows |
209
+
| 📝 **[.specify/templates](.specify/templates)**| Seed specs, plans, and tasks for new features |
0 commit comments