deuk-agent-rule 3.3.2 β 4.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -169
- package/bin/deuk-agent-rule.js +2 -0
- package/package.json +13 -46
- package/CHANGELOG.ko.md +0 -182
- package/CHANGELOG.md +0 -182
- package/LICENSE +0 -184
- package/README.ko.md +0 -190
- package/scripts/cli-args.mjs +0 -140
- package/scripts/cli-init-commands.mjs +0 -1465
- package/scripts/cli-init-logic.mjs +0 -58
- package/scripts/cli-prompts.mjs +0 -104
- package/scripts/cli-rule-compiler.mjs +0 -112
- package/scripts/cli-skill-commands.mjs +0 -172
- package/scripts/cli-telemetry-commands.mjs +0 -429
- package/scripts/cli-ticket-commands.mjs +0 -2123
- package/scripts/cli-ticket-index.mjs +0 -298
- package/scripts/cli-ticket-migration.mjs +0 -320
- package/scripts/cli-ticket-parser.mjs +0 -207
- package/scripts/cli-utils.mjs +0 -563
- package/scripts/cli.mjs +0 -217
- package/scripts/lint-md.mjs +0 -247
- package/scripts/lint-rules.mjs +0 -143
- package/scripts/merge-logic.mjs +0 -44
- package/scripts/plan-parser.mjs +0 -53
- package/templates/MODULE_RULE_TEMPLATE.md +0 -11
- package/templates/PROJECT_RULE.md +0 -47
- package/templates/TICKET_TEMPLATE.ko.md +0 -21
- package/templates/TICKET_TEMPLATE.md +0 -21
- package/templates/rules.d/deukcontext-mcp.md +0 -31
- package/templates/rules.d/platform-coexistence.md +0 -29
- package/templates/skills/context-recall/SKILL.md +0 -25
- package/templates/skills/generated-file-guard/SKILL.md +0 -25
- package/templates/skills/safe-refactor/SKILL.md +0 -25
package/README.md
CHANGED
|
@@ -1,177 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
<br />
|
|
3
|
-
<img src="docs/assets/architecture-v3.png" width="800" alt="DeukAgentRules Architecture" />
|
|
4
|
-
<br />
|
|
5
|
-
<h1>DeukAgentRules v3.3.2</h1>
|
|
6
|
-
<p>
|
|
7
|
-
<a href="https://www.npmjs.com/package/deuk-agent-rule"><img src="https://img.shields.io/npm/v/deuk-agent-rule.svg" alt="npm version" /></a>
|
|
8
|
-
<a href="https://www.npmjs.com/package/deuk-agent-rule"><img src="https://img.shields.io/npm/dt/deuk-agent-rule.svg" alt="npm downloads" /></a>
|
|
9
|
-
</p>
|
|
10
|
-
<p><b>AI coding agent guardrails for every repo</b></p>
|
|
11
|
-
<p><i>Ticketed scope, verification, and memory for Codex, Copilot, Claude Code, Cursor, and more</i></p>
|
|
12
|
-
<p>Part of the <a href="https://deukpack.app">Deuk Family</a> ecosystem.</p>
|
|
13
|
-
</div>
|
|
1
|
+
# Deuk Agent Flow
|
|
14
2
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
**DeukAgentRules** gives AI coding agents a shared way to work through tickets, scope contracts, verification, and durable project memory.
|
|
18
|
-
|
|
19
|
-
It is more than a prompt pack. It is a repository-level workflow layer that standardizes collaboration through the **Hub-Spoke Architecture** and a **Ticket-Driven Execution Model** while keeping `AGENTS.md`, Copilot instructions, Cursor rules, Claude skills, and related agent surfaces aligned.
|
|
20
|
-
|
|
21
|
-
Ticket management lives under `.deuk-agent/`, with active work tracked in `.deuk-agent/tickets/` and related docs, plans, and archive data kept alongside it.
|
|
22
|
-
|
|
23
|
-
> **Current readiness:**
|
|
24
|
-
> v3.3.2 is deployment-ready for agent-driven repositories. It is currently most reliable in **OpenAI Codex** and **GitHub Copilot** workflows. Cursor, Windsurf, Claude Code, and MCP remain supported through pointer-style integration, but they should be validated per workspace before rollout. MCP server registration is separate from `init`.
|
|
25
|
-
|
|
26
|
-
> **Architecture foundation:**
|
|
27
|
-
> We have officially deprecated monolithic `.cursorrules`. v3.0 introduces the **Hub-Spoke model** where `AGENTS.md` is the single source of truth, and IDE-specific rules act as thin entry-point pointers.
|
|
28
|
-
|
|
29
|
-
### πΊοΈ Main Features & Architecture
|
|
30
|
-
|
|
31
|
-
DeukAgentRules brings four core capabilities to day-to-day AI engineering:
|
|
32
|
-
|
|
33
|
-
1. **Zero-Copy Hub-Spoke Architecture**
|
|
34
|
-
- **Hub**: `AGENTS.md` acts as the global single source of truth.
|
|
35
|
-
- **Spoke**: IDE-specific rules (like `.cursorrules`) or `PROJECT_RULE.md` act as thin pointers.
|
|
36
|
-
- **Benefit**: Eliminates rule duplication, preventing conflicting instructions and context hallucination across different IDEs (Cursor, Copilot, Windsurf).
|
|
37
|
-
|
|
38
|
-
2. **Ticket-Driven Workflow (TDW)**
|
|
39
|
-
- Guides work through a clear lifecycle: Plan β Execute β Verify β Archive.
|
|
40
|
-
- Keeps changes connected to an active ticket in `.deuk-agent/tickets/`, so scope and progress stay visible.
|
|
41
|
-
|
|
42
|
-
3. **Platform Co-existence & Mode-Aware Workflow Gate**
|
|
43
|
-
- Uses strong Agent Permission Contracts (APC) through a **Mode-Aware** workflow.
|
|
44
|
-
- In **Plan Mode**, agents focus on analysis and planning artifacts before moving into approved execution.
|
|
45
|
-
- Integrates with MCP Soft Gates to keep code changes aligned with the current ticket context.
|
|
46
|
-
|
|
47
|
-
4. **Zero-Token Knowledge Distillation**
|
|
48
|
-
- When a ticket is archived, it is distilled into a zero-token summary and moved to `reports/`.
|
|
49
|
-
- These reports are vectorized into DeukAgentContext, building a permanent Engineering Memory Engine without cluttering the agent's active context window.
|
|
50
|
-
|
|
51
|
-
### Why Not Just Instructions?
|
|
52
|
-
|
|
53
|
-
The agent tooling space already has useful building blocks: `AGENTS.md`, GitHub Copilot instructions, Cursor rules, Claude skills, agent launchers, and general LLM guardrail frameworks. DeukAgentRules is positioned one layer above plain instruction sync: it turns those surfaces into a ticketed repository workflow.
|
|
54
|
-
|
|
55
|
-
| Similar approach | What it helps with | DeukAgentRules adds |
|
|
56
|
-
|---|---|---|
|
|
57
|
-
| `AGENTS.md` open format | A predictable instruction file for coding agents | Ticket lifecycle, phase gates, verification, and archiveable memory |
|
|
58
|
-
| Copilot instructions / Cursor rules / Claude memory | Tool-specific guidance | One repo-owned workflow shared across agent clients |
|
|
59
|
-
| Claude or Copilot custom agents and skills | Reusable task playbooks | Skills route into scoped, ticketed execution instead of replacing the workflow |
|
|
60
|
-
| Agent launchers and harnesses | Running many coding agents from one place | Lifecycle control inside the repository, independent of the chosen agent |
|
|
61
|
-
| General LLM/MCP guardrails | Runtime policy checks for AI systems | Developer-facing work orders, scope contracts, Git-visible history, and closeout evidence |
|
|
62
|
-
|
|
63
|
-
Use DeukAgentRules when you want AI coding work to stay coordinated, reviewable, and easy to carry forward across sessions and teammates.
|
|
64
|
-
|
|
65
|
-
### Better Together With Karpathy-Style Skills
|
|
66
|
-
|
|
67
|
-
Karpathy-style skills are great at improving how an agent behaves inside a task. DeukAgentRules is great at making that task ticketed, scoped, verified, and remembered at the repository level.
|
|
68
|
-
|
|
69
|
-
Used together, skills can improve the quality of the move, while DeukAgentRules keeps the move connected to team workflow. The result is a better session and a better project record: behavior playbooks on the front end, ticket lifecycle and DeukAgentContext memory on the back end.
|
|
70
|
-
|
|
71
|
-
### What's Next
|
|
72
|
-
|
|
73
|
-
The next step is to make this workflow even easier to see and adopt: clearer first-run checks, compact CLI/RAG reminders for agents, stronger README/npm positioning, and companion surfaces that show active ticket, phase, open-ticket count, and DeukAgentContext memory status without asking teams to switch coding agents.
|
|
74
|
-
|
|
75
|
-
### π Detailed Documentation
|
|
76
|
-
| Doc | Purpose |
|
|
77
|
-
|---|---|
|
|
78
|
-
| [docs/architecture.md](docs/architecture.md) | High-level system structure and visual infographics |
|
|
79
|
-
| [docs/how-it-works.md](docs/how-it-works.md) | Detailed CLI mechanics, initialization lifecycle, and file roles |
|
|
80
|
-
| [docs/principles.md](docs/principles.md) | Design philosophy: Hub-Spoke, Zero-Legacy, and Source Sovereignty |
|
|
81
|
-
| [docs/product-positioning-research.ko.md](docs/product-positioning-research.ko.md) | Product positioning research for AI coding agent guardrails |
|
|
82
|
-
| [docs/karpathy-skills-vs-deukagent-positioning.ko.md](docs/karpathy-skills-vs-deukagent-positioning.ko.md) | Deep comparison of Karpathy-style skills, DeukAgentRules, and DeukAgentContext |
|
|
83
|
-
| [docs/vision-agent-guardrails.ko.md](docs/vision-agent-guardrails.ko.md) | Vision document for the multi-agent guardrail hub |
|
|
84
|
-
| [docs/organic-growth-plan.ko.md](docs/organic-growth-plan.ko.md) | Organic growth plan for VS Code, Open VSX, GitHub, and skill loops |
|
|
85
|
-
| **Korean Docs** | [README.ko.md](README.ko.md) Β· [docs/architecture.ko.md](docs/architecture.ko.md) |
|
|
86
|
-
|
|
87
|
-
---
|
|
88
|
-
|
|
89
|
-
## π οΈ Installation & Setup
|
|
90
|
-
|
|
91
|
-
### 1. Global Installation (Standard User)
|
|
92
|
-
To prevent `npx` cache issues and "Local Traps", a global installation is strictly required.
|
|
93
|
-
|
|
94
|
-
```bash
|
|
95
|
-
npm install -g deuk-agent-rule
|
|
96
|
-
deuk-agent-rule init
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
### 2. Local Source Development (Maintainer/Power User)
|
|
100
|
-
v3.0 introduces a **Global CLI Proxy**. If you are developing inside the `DeukAgentRules` workspace, the global command will automatically delegate execution to your local source.
|
|
3
|
+
`deuk-agent-rule` is the legacy compatibility npm package.
|
|
4
|
+
It forwards to the primary `deuk-agent-flow` CLI implementation.
|
|
101
5
|
|
|
102
6
|
```bash
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
deuk-agent-rule init # Routes to local scripts/cli.mjs automatically
|
|
7
|
+
npm install -g deuk-agent-flow
|
|
8
|
+
deuk-agent-flow init
|
|
106
9
|
```
|
|
107
10
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
---
|
|
111
|
-
|
|
112
|
-
## π― The Protocol Workflow
|
|
113
|
-
|
|
114
|
-
The workflow is governed by a **Ticket-Driven Execution Contract**.
|
|
115
|
-
|
|
116
|
-
1. **Scaffolding**: `init` deploys `.deuk-agent/templates/` and `AGENTS.md` (or local pointers like `PROJECT_RULE.md`).
|
|
117
|
-
2. **Ticketing (Plan Phase)**: `ticket create --topic feature-x` generates a bounded work order in `.deuk-agent/tickets/`. During this phase, agents operate in **Plan Mode** and are restricted from mutating files.
|
|
118
|
-
3. **Execution (Execute Phase)**: Once authorized, the AI agent reads the ticket, locks onto the **Target Submodule**, and executes code changes. MCP Soft Gates ensure that unauthorized modifications are blocked.
|
|
119
|
-
4. **Verification**: The agent performs a side-effect audit and convention (e.g., DC-DUP) check before closure.
|
|
120
|
-
5. **Archiving (Archive Phase)**: Completed tickets undergo Zero-Token Knowledge Distillation and move to `reports/` to build the **Engineering Memory Engine** via DeukAgentContext.
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
## βοΈ CLI Reference
|
|
125
|
-
|
|
126
|
-
Delegate these to your AI agent via natural language prompts!
|
|
127
|
-
|
|
128
|
-
| Command | Description / Example Prompt |
|
|
129
|
-
|--------|------|
|
|
130
|
-
| `deuk-agent-rule init` | Synchronizes the rule Hub and Spoke pointers. <br>π¬ *"Initialize project rules"* |
|
|
131
|
-
| `deuk-agent-rule ticket create` | Issues a new execution contract. Use `--summary` plus `--plan-body` for a one-pass Phase 1 ticket. <br>π¬ *"Create ticket: refactor-ui with filled APC"* |
|
|
132
|
-
| `deuk-agent-rule ticket list` | Displays active work orders. <br>π¬ *"Show active tickets"* |
|
|
133
|
-
| `deuk-agent-rule ticket archive` | Securely stores completed work. <br>π¬ *"Archive ticket 068"* |
|
|
134
|
-
| `deuk-agent-rule skill list` | Shows first-party thin skills such as `safe-refactor`, `generated-file-guard`, and `context-recall`. |
|
|
135
|
-
| `deuk-agent-rule skill add --skill safe-refactor` | Installs a skill into the local registry without changing the TDW/APC authority model. |
|
|
136
|
-
| `deuk-agent-rule skill expose --platform claude` | Exposes installed skills as platform-specific thin wrappers. Supported MVP platforms: `claude`, `cursor`. |
|
|
137
|
-
| `deuk-agent-rule skill lint` | Audits skill files for duplicate workflow contracts and unsafe generated-file guidance. |
|
|
138
|
-
|
|
139
|
-
### Ticket File Git Hygiene
|
|
140
|
-
|
|
141
|
-
- Treat `.deuk-agent/tickets/**/*.md` and `INDEX*.json` as CLI-managed lifecycle artifacts.
|
|
142
|
-
- Do not commit a ticket body without the related index updates. The next session can restore the wrong active/archive state.
|
|
143
|
-
- After `ticket create` fails, do not create or repair ticket files manually.
|
|
144
|
-
- Do not flip ticket status by editing frontmatter directly. Use `ticket move`, `ticket close`, or `ticket archive`.
|
|
145
|
-
- `telemetry.jsonl` is usually operational log noise, so it is better left out of normal code commits unless your repo intentionally tracks it.
|
|
146
|
-
- When possible, commit completed work after `ticket archive` so the active/archive transition lands in one history step.
|
|
147
|
-
|
|
148
|
-
For more day-to-day examples, see [docs/how-it-works.md](docs/how-it-works.md).
|
|
149
|
-
|
|
150
|
-
---
|
|
151
|
-
|
|
152
|
-
## Related Ideas & Inspiration
|
|
153
|
-
|
|
154
|
-
DeukAgentRules shares the same concern as guideline-first projects like
|
|
155
|
-
[andrej-karpathy-skills](https://github.com/forrestchang/andrej-karpathy-skills):
|
|
156
|
-
AI coding agents often over-assume, over-engineer, and edit outside the requested scope.
|
|
157
|
-
|
|
158
|
-
Where prompt-level guideline files improve agent behavior inside one client,
|
|
159
|
-
DeukAgentRules adds a repository-level workflow layer: tickets, phase gates,
|
|
160
|
-
scoped permissions, verification, and archiveable engineering memory.
|
|
161
|
-
|
|
162
|
-
The first-party skill MVP keeps that boundary explicit: skills are short
|
|
163
|
-
`SKILL.md` playbooks for recurring failure patterns, while `core-rules/AGENTS.md`
|
|
164
|
-
remains the workflow authority. Use `skill add` and `skill expose` to make those
|
|
165
|
-
playbooks visible to Claude or Cursor without copying the full rule contract.
|
|
11
|
+
Compatibility install:
|
|
166
12
|
|
|
167
13
|
```bash
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
npx deuk-agent-rule skill add --skill safe-refactor
|
|
171
|
-
npx deuk-agent-rule skill expose --platform claude
|
|
14
|
+
npm install -g deuk-agent-rule
|
|
15
|
+
deuk-agent-rule init
|
|
172
16
|
```
|
|
173
|
-
|
|
174
|
-
---
|
|
175
|
-
|
|
176
|
-
### π·οΈ Keywords
|
|
177
|
-
`#AI-Orchestration` `#Agentic-Workflow` `#DeukFamily` `#Engineering-Intelligence` `#Zero-Legacy` `#High-Signal-Coding` `#AI-Protocol` `#CursorRules` `#CopilotInstructions` `#ClaudeCode` `#ClaudeMD` `#AgentsMD` `#AgentSkills` `#CodingAgent` `#AI-Guardrails` `#LLM-Control-Plane`
|
package/package.json
CHANGED
|
@@ -1,69 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deuk-agent-rule",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.0.19",
|
|
4
|
+
"description": "Compatibility wrapper for legacy deuk-agent-rule installs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents-md",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"gemini",
|
|
10
|
-
"claude",
|
|
11
|
-
"windsurf",
|
|
12
|
-
"jetbrains",
|
|
13
|
-
"ticket",
|
|
7
|
+
"agent-flow",
|
|
8
|
+
"agent-workflow",
|
|
14
9
|
"ai-guardrails",
|
|
15
10
|
"agent-guardrails",
|
|
16
|
-
"deuk-family"
|
|
17
|
-
"deukpack-ecosystem"
|
|
11
|
+
"deuk-family"
|
|
18
12
|
],
|
|
19
13
|
"license": "Apache-2.0",
|
|
20
14
|
"repository": {
|
|
21
15
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/joygram/
|
|
16
|
+
"url": "git+https://github.com/joygram/DeukAgentFlow.git"
|
|
23
17
|
},
|
|
24
18
|
"bugs": {
|
|
25
|
-
"url": "https://github.com/joygram/
|
|
19
|
+
"url": "https://github.com/joygram/DeukAgentFlow/issues"
|
|
26
20
|
},
|
|
27
|
-
"homepage": "https://github.com/joygram/
|
|
21
|
+
"homepage": "https://github.com/joygram/DeukAgentFlow#readme",
|
|
28
22
|
"files": [
|
|
29
|
-
"LICENSE",
|
|
30
23
|
"bin/**/*",
|
|
31
|
-
"
|
|
32
|
-
"scripts/cli.mjs",
|
|
33
|
-
"scripts/cli-args.mjs",
|
|
34
|
-
"scripts/cli-init-commands.mjs",
|
|
35
|
-
"scripts/cli-init-logic.mjs",
|
|
36
|
-
"scripts/cli-prompts.mjs",
|
|
37
|
-
"scripts/cli-rule-compiler.mjs",
|
|
38
|
-
"scripts/cli-skill-commands.mjs",
|
|
39
|
-
"scripts/cli-telemetry-commands.mjs",
|
|
40
|
-
"scripts/cli-ticket-commands.mjs",
|
|
41
|
-
"scripts/cli-ticket-index.mjs",
|
|
42
|
-
"scripts/cli-ticket-migration.mjs",
|
|
43
|
-
"scripts/cli-ticket-parser.mjs",
|
|
44
|
-
"scripts/cli-utils.mjs",
|
|
45
|
-
"scripts/lint-md.mjs",
|
|
46
|
-
"scripts/lint-rules.mjs",
|
|
47
|
-
"scripts/merge-logic.mjs",
|
|
48
|
-
"scripts/plan-parser.mjs",
|
|
49
|
-
"README.md",
|
|
50
|
-
"README.ko.md",
|
|
51
|
-
"CHANGELOG.md",
|
|
52
|
-
"CHANGELOG.ko.md"
|
|
24
|
+
"README.md"
|
|
53
25
|
],
|
|
54
|
-
"scripts": {
|
|
55
|
-
"lint:md": "node scripts/lint-md.mjs",
|
|
56
|
-
"test": "node --test scripts/tests/*.test.mjs"
|
|
57
|
-
},
|
|
58
|
-
"engines": {
|
|
59
|
-
"node": ">=18"
|
|
60
|
-
},
|
|
61
26
|
"bin": {
|
|
62
27
|
"deuk-agent-rule": "./bin/deuk-agent-rule.js",
|
|
63
28
|
"deukagentrule": "./bin/deuk-agent-rule.js"
|
|
64
29
|
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18"
|
|
32
|
+
},
|
|
65
33
|
"dependencies": {
|
|
66
|
-
"
|
|
67
|
-
"yaml": "^2.8.3"
|
|
34
|
+
"deuk-agent-flow": "4.0.19"
|
|
68
35
|
}
|
|
69
36
|
}
|
package/CHANGELOG.ko.md
DELETED
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
# λ³κ²½ μ΄λ ₯ (Changelog)
|
|
2
|
-
|
|
3
|
-
μ΄ νλ‘μ νΈμ λͺ¨λ μ£Όλͺ©ν λ§ν λ³κ²½ μ¬νμ μ΄ νμΌμ κΈ°λ‘λ©λλ€.
|
|
4
|
-
|
|
5
|
-
**English:** [CHANGELOG.md](CHANGELOG.md)
|
|
6
|
-
|
|
7
|
-
νμμ [Keep a Changelog](https://keepachangelog.com/ko/1.1.0/)λ₯Ό κΈ°λ°μΌλ‘ νλ©°, μ΄ νλ‘μ νΈλ [μ μμ λ²μ (Semantic Versioning)](https://semver.org/spec/v2.0.0.html)μ μ€μν©λλ€.
|
|
8
|
-
|
|
9
|
-
## [3.3.2] - 2026-05-06
|
|
10
|
-
|
|
11
|
-
### ν¬μ§μ
λ (Positioning)
|
|
12
|
-
|
|
13
|
-
- npm/GitHubμμ 보μ΄λ μ 체μ±μ **λͺ¨λ λ ν¬λ₯Ό μν AI μ½λ© μμ΄μ νΈ κ°λλ μΌ**λ‘ μ¬μ 리νμ΅λλ€.
|
|
14
|
-
- `AGENTS.md`, Copilot instructions, Cursor rules, Claude skills, μμ΄μ νΈ μ€νκΈ°, μΌλ° LLM/MCP κ°λλ μΌκ³Ό λΉκ΅ν΄ DeukAgentRulesκ° λνλ ν°μΌ μλͺ
μ£ΌκΈ°, λ²μ κ³μ½, κ²μ¦, μμΉ΄μ΄λΈ κ°λ₯ν κΈ°μ΅μ READMEμ λλ¬λμ΅λλ€.
|
|
15
|
-
- λ€μ κ°μ λ°©ν₯μΌλ‘ 첫 μ€ν μ κ², CLI/RAG μ¬κ°μΈ μ νΈ, active ticket/phase/open ticket count/DeukAgentContext memory statusλ₯Ό 보μ¬μ£Όλ companion νλ©΄μ λͺ
μνμ΅λλ€.
|
|
16
|
-
|
|
17
|
-
## [3.3.0] - 2026-05-02
|
|
18
|
-
|
|
19
|
-
### μΆκ°λ¨ (Added)
|
|
20
|
-
|
|
21
|
-
- **docs:** VS Code, Open VSX, GitHub, skill κΈ°λ° λ°κ²¬ 루νλ₯Ό ν¬ν¨ν AI μ½λ© μμ΄μ νΈ κ°λλ μΌ ν¬μ§μ
λ, λΉμ , μ€κ°λ μ μ
리μμΉ λ¬Έμλ₯Ό μΆκ°νμ΅λλ€.
|
|
22
|
-
- **docs:** Karpathyμ skill, DeukAgentRules, DeukAgentContext μ¬μΈ΅ λΉκ΅ λ¬Έμλ₯Ό μΆκ°νμ΅λλ€. Skillμ νλ playbook, DeukAgentRulesλ workflow/permission control, DeukAgentContextλ ticketed engineering memoryλ‘ ν¬μ§μ
λνμ΅λλ€.
|
|
23
|
-
- **seo:** `andrej-karpathy-skills` κ΄λ ¨ μμ΄λμ΄ λ§ν¬μ Claude Code, AGENTS.md, Cursor rules, agent skills, AI guardrails κ²μ μ μ
ν€μλλ₯Ό 보κ°νμ΅λλ€.
|
|
24
|
-
|
|
25
|
-
### λ³κ²½λ¨ (Changed)
|
|
26
|
-
|
|
27
|
-
- **ticket:** μ΄λ¦° ν°μΌμ΄ μ€μ λ νλλ₯Ό λμ λ μλ μ 리 λμ μ¬μ©μκ° λͺ©λ‘μ λ³΄κ³ κ²°μ ν μ μλ cleanup flowλ₯Ό κ°ννμ΅λλ€.
|
|
28
|
-
- **ticket:** λ«ν ν°μΌμ μλ μμΉ΄μ΄λΈν μ μκ² νκ³ , μμΉ΄μ΄λΈλ ν°μΌμ λ
μ/μΌ λ¨μλ‘ μ 리λλλ‘ νμ΅λλ€.
|
|
29
|
-
- **docs:** README λ¬Έμ λͺ©λ‘κ³Ό GitHub topic κ°μ΄λλ₯Ό agent guardrail, instruction hub, skill registry, project memory ν¬μ§μ
λμ λ§κ² κ°±μ νμ΅λλ€.
|
|
30
|
-
|
|
31
|
-
### μμ λ¨ (Fixed)
|
|
32
|
-
|
|
33
|
-
- **ticket:** μ μμ
μ§μ
μ μ μ 리 κ²°μ μ λ
ΈμΆνμ¬ μ΄λ¦° ν°μΌ μκ° μλν μ΄μ νλλ₯Ό μ‘°μ©ν λλ λ¬Έμ λ₯Ό λ°©μ§νμ΅λλ€.
|
|
34
|
-
|
|
35
|
-
## [3.2.0] - 2026-04-29
|
|
36
|
-
|
|
37
|
-
### μΆκ°λ¨ (Added)
|
|
38
|
-
- **agent:** νλ«νΌ 곡쑴(Platform Coexistence) λ° λͺ¨λ μΈμ§ν(Mode-aware) μν¬νλ‘μ° κ΅¬ν. (Plan Modeμμ TDW Phase μλ λ§€ν, `platform-coexistence.md` κ·μΉ μΆκ°, μμ μ μ΄ λ° `PROJECT_RULE.md` ν¬μΈν° μ°λ λ±)
|
|
39
|
-
|
|
40
|
-
### λ³κ²½λ¨ (Changed)
|
|
41
|
-
- **agents:** Co-existence Protocol λ° Workflow Gate κΈ°λ₯ λμ
(T-120).
|
|
42
|
-
- v3.1.0 μν€ν
μ² μμΉ λ° μ¬μ©λ² λ¬Έμ κ°μ .
|
|
43
|
-
|
|
44
|
-
## [3.1.0] - 2026-04-28
|
|
45
|
-
|
|
46
|
-
### μΆκ°λ¨ (Added)
|
|
47
|
-
- **arch:** μ λ‘μΉ΄νΌ(Zero-Copy) ν¬μΈν° μν€ν
μ² λμ
(`PROJECT_RULE.md` μ°λ) λ° κ΅¬μ‘° κ°μν
|
|
48
|
-
- **cli:** μ격ν Phase κΈ°λ° ν°μΌ μν¬νλ‘μ° λ° APC(Agent Permission Contract) κ²μ¦ κΈ°λ₯ μΆκ°
|
|
49
|
-
- **cli:** `--plan-body` μ΅μ
μ ν΅ν μ±μμ§ Phase 1 ν°μΌ λ³Έλ¬Έ μ
λ ₯ κΈ°λ₯ μΆκ°
|
|
50
|
-
- **ticket:** ν°μΌ μμΉ΄μ΄λΈ μ λΆνμν ν ν° λλΉλ₯Ό λ§λ Zero-Token μ§μ μ¦λ₯(Knowledge Distillation) ꡬν
|
|
51
|
-
- **telemetry:** λ‘컬 νκ²½μ μ΅μ νλ Telemetry CLI μΆκ°
|
|
52
|
-
- **rules:** `PROJECT_RULE.md` ν
νλ¦Ώ μΆκ° (AI μμ΄μ νΈ ν΄λ°± κ°μ΄λ ν¬ν¨) λ° μ΄μ€ μΈμ΄(ν/μ) μ§μ
|
|
53
|
-
|
|
54
|
-
### μμ λ¨ (Fixed)
|
|
55
|
-
- **rules:** `PROJECT_RULE.md` λ΄ μ€λ³΅λ μ½μ΄ λ£° λ§ν¬ μ κ±° λ° Frontmatter λ λλ§ λ³΅κ΅¬
|
|
56
|
-
- **telemetry:** λͺ¨λΈ λ° μ€μ μμ ν΄λΌμ΄μΈνΈ λꡬλ₯Ό μλμΌλ‘ κ°μ§νλλ‘ μμ
|
|
57
|
-
- **agent:** ν°μΌ νμ μ€ μμ΄μ νΈ λ¬΄ν 루ν λ¬Έμ ν΄κ²°
|
|
58
|
-
|
|
59
|
-
### λ³κ²½λ¨ (Changed)
|
|
60
|
-
- **agent:** TDD μ©μ΄λ₯Ό TDW (Ticket-Driven Workflow)λ‘ λ³κ²½ λ° μ μ `AGENTS.md`μμ λ‘μ κ·μΉ μ κ±°
|
|
61
|
-
- **cli:** μν κΈ°λ°(State-driven) κ²½λ‘ νμ λ‘μ§μΌλ‘ ꡬ쑰 κ°νΈ λ° μμΈν μ¬μ© κ°μ΄λ μΆκ°
|
|
62
|
-
|
|
63
|
-
## [3.0.0] - 2026-04-25
|
|
64
|
-
|
|
65
|
-
### π λκ·λͺ¨ μ
λ°μ΄νΈ: Hub-Spoke μν€ν
μ²
|
|
66
|
-
- **Canonical Rule Hub**: λͺ¨λ AI μμ΄μ νΈμ λ¨μΌ μ§μ€ 곡κΈμ(SSOT)μΌλ‘ `AGENTS.md` λμ
.
|
|
67
|
-
- **Thin Spoke Pointers**: IDEλ³ λ£°(Cursor, Copilot λ±)μ μ€μ Hubλ₯Ό κ°λ¦¬ν€λ κ°λ²Όμ΄ ν¬μΈν°λ‘ λ³κ²½νμ¬ μ€λ³΅ λ° λκΈ°ν μ€λ₯ μ κ±°.
|
|
68
|
-
- **Global CLI Proxy**: λ‘컬 μν¬μ€νμ΄μ€ μμ€λ₯Ό μλ κ°μ§νμ¬ μ€νμ μμνλ νλ‘μ λμ
μΌλ‘ μ§μ° μλ(Zero-latency) κ°λ° νκ²½ ꡬμΆ.
|
|
69
|
-
|
|
70
|
-
### π§Ή μ λ‘ λ κ±°μ & νκ²½ μ 리
|
|
71
|
-
- **Auto-Purge**: `init` μ€ν μ λ μ΄μ μ¬μ©λμ§ μλ λ κ±°μ `.cursorrules` νμΌμ 무쑰건 μμ .
|
|
72
|
-
- **Smart Backups**: μ¬μ©μ μ μ κ·μΉμ κ°μ§νμ¬ μμ λμ `.bak` νμΌλ‘ λ°±μ
νλ λ‘μ§ μΆκ°.
|
|
73
|
-
- **Submodule Scrubbing**: λΉμ΄ μλ μλΈλͺ¨λ λλ ν°λ¦¬ μ€ν
λ° `.gitmodules` μλ μ 리 κΈ°λ₯.
|
|
74
|
-
|
|
75
|
-
### ποΈ λ¦¬λΈλλ© & μΈνλΌμ€ν
|
|
76
|
-
- **Identity Overhaul**: "Zero-Latency, High-Signal AI Orchestration Protocol"λ‘ λ¦¬λΈλλ©.
|
|
77
|
-
- **Documentation v3**: κ³ νμ§ 3D μΈν¬κ·Έλν½ λ° κ΅¬μ‘°, μ리, μλ λ°©μ λ± κ°λ
κ°μ΄λ μ λ©΄ κ°νΈ.
|
|
78
|
-
- **Domain Agnostic**: λλ©μΈλ³ νλμ½λ©μ μ κ±°νκ³ λͺ¨λ κΈ°μ μ€νμ μ§μνλλ‘ `bundle/AGENTS.md` μΌλ°ν.
|
|
79
|
-
|
|
80
|
-
### βοΈ CLI κ°μ μ¬ν
|
|
81
|
-
- **Proxy Routing**: `bin/deuk-agent-rule.js`κ° λλ ν°λ¦¬λ₯Ό νμνμ¬ λ‘컬 μ€ν¬λ¦½νΈλ₯Ό μ°Ύμ μ€ννλλ‘ μμ .
|
|
82
|
-
- **Synchronized IO**: CLIμ μμ μ±μ λμ΄κΈ° μν΄ ν΅μ¬ λ‘μ§μ λκΈ°μ νμΌ μμ€ν
μ°μ°μΌλ‘ 리ν©ν°λ§.
|
|
83
|
-
## [2.4.6] - 2026-04-19
|
|
84
|
-
|
|
85
|
-
### μμ λ¨ (Fixed)
|
|
86
|
-
|
|
87
|
-
- **cli:** λ‘컬 λ²μ μ΄ registry λ²μ μ΄μμΌ κ²½μ° μ
λ°μ΄νΈ μλ¦Όμ νμνμ§ μλλ‘ μμ (λ‘컬 κ°λ° symlink νκ²½μμμ μλ°©ν₯ μ€νΈ μλ¦Ό ν΄μ)
|
|
88
|
-
- **ticket:** `NNN` μ κ·μμ μ΅λ 4μλ¦¬λ‘ μ ννμ¬ μ λμ€ νμμ€ν¬νκ° ν°μΌ μλ²μΌλ‘ μλͺ» νμ±λλ λ²κ·Έ μμ β μ¬λ°λ₯Έ `NNN-topic-hostname` ν¬λ§· μμ± λ³΅μ
|
|
89
|
-
|
|
90
|
-
## [2.4.4] - 2026-04-19
|
|
91
|
-
|
|
92
|
-
### λ³κ²½λ¨ (Changed)
|
|
93
|
-
|
|
94
|
-
- **rules:** μλΈλͺ¨λ μ μ© κ·μΉ(DeukPack, C++, Unity)μ ν΄λΉ μν¬μ€νμ΄μ€μ `MODULE_RULE.md`λ‘ μ΄λνμ¬ `AGENTS.md`λ₯Ό μΌλ°νλ κ·μ½ μ€μ¬μΌλ‘ κ°νΈ
|
|
95
|
-
- **templates:** `publish/` μμ€μ λ§μΆ° `bundle/` λ΄μ λ κ±°μ ν
νλ¦Ώ μ 리
|
|
96
|
-
|
|
97
|
-
## [2.4.3] - 2026-04-18
|
|
98
|
-
|
|
99
|
-
### λ³κ²½λ¨ (Changed)
|
|
100
|
-
- **ticket:** ν°μΌ ID ν¬λ§·μ `NNN-topic-hostname` (μ: `001-add-feature-joy-nucb`)μΌλ‘ λ³κ²½. λ κ±°μ `ticket_NNN_hostname_topic` νμ λ체
|
|
101
|
-
- **ticket:** INDEX.json νμ± μ κΈ°μ‘΄ ν¬λ§·κ³Ό μ κ· ν¬λ§· λͺ¨λ μνΈν μ§μ
|
|
102
|
-
|
|
103
|
-
## [2.4.2] - 2026-04-18
|
|
104
|
-
|
|
105
|
-
### μμ λ¨ (Fixed)
|
|
106
|
-
- **ticket:** νμΌλͺ
(File name)κ³Ό λ³Έλ¬Έ λ΄ ν°μΌ ID μμ± λ‘μ§ κ°μ λΆμΌμΉ(Discrepancy) ν΄κ²° (λ¨μΌ μΆμ²λ‘ ν΅ν©)
|
|
107
|
-
|
|
108
|
-
## [2.4.1] - 2026-04-18
|
|
109
|
-
|
|
110
|
-
### μΆκ°λ¨ (Added)
|
|
111
|
-
- **cli:** NPM μ΅μ λ²μ μ κ°μ§νμ¬ ν°λ―Έλμ μ
λ°μ΄νΈλ₯Ό κΆκ³ νλ μλ¦Ό κΈ°λ₯(Update Notifier) μΆκ°
|
|
112
|
-
|
|
113
|
-
### μμ λ¨ (Fixed)
|
|
114
|
-
- **ticket:** ν°μΌ μμ± μ νΈμ€νΈλͺ
μ¬λ¬κ·Έκ° 8κΈμλ‘ μ격ν μ νλμ§ μλ λ²κ·Έ μμ
|
|
115
|
-
|
|
116
|
-
## [2.4.0] - 2026-04-18
|
|
117
|
-
|
|
118
|
-
### μΆκ°λ¨ (Added)
|
|
119
|
-
|
|
120
|
-
- **init:** κΉλν λ§μ΄κ·Έλ μ΄μ
μ μν ꡬλ²μ ν
νλ¦Ώ μλ μ 리 κΈ°λ₯ μΆκ°
|
|
121
|
-
- **rules:** `AGENTS.md` λ¬Έμ λ΄ ν°μΌ κ²μ¦ λ¨κ³(TICKET VERIFICATION RULE) κ·μ½ μΆκ°
|
|
122
|
-
- **ticket:** ν°μΌμ μ°μ μμ(Priority) μμ± μΆκ°
|
|
123
|
-
- **ticket:** μμ°¨ λ²νΈ λ° νΈμ€νΈλ€μ κΈ°λ°μ ν°μΌ μλ³μ(ID) μλ μμ± λμ
(`NNN-hostname-topic` ν¬λ§·)
|
|
124
|
-
- **ticket:** νΈμ€νΈλ€μ κΈΈμ΄ μ ν(8μ) λ° μλ μλ² λΆμ¬ λ‘μ§ κ°μ
|
|
125
|
-
|
|
126
|
-
### μμ λ¨ (Fixed)
|
|
127
|
-
|
|
128
|
-
- **rules:** μ μ `npx` μΊμ μ΄μ(κ³Όκ±° λ²μ μ€ν λ¬Έμ )λ₯Ό μ°ννκΈ° μν΄ λ‘컬 μ΅μ μ€ν¬λ¦½νΈ νΈμΆμ κ°μ /κΆμ₯νλλ‘ μμ
|
|
129
|
-
- **scripts:** OSS λ―Έλ¬ μ μ₯μ λκΈ°ν μ μλͺ» νκΈ°λλ URL μμ λ‘κ·Έ λ©μμ§ μ μ
|
|
130
|
-
|
|
131
|
-
### λ³κ²½λ¨ (Changed)
|
|
132
|
-
|
|
133
|
-
- **docs:** 리λλ―Έ(README) νμΌμ [Step 4] ν°μΌ κ²μ¦ μλ΄ μΆκ°
|
|
134
|
-
- **docs:** μ μ μ€μΉ(Global Install) κΆμ₯ μλ΄ λ° μ΄μ체μ (OS)λ³ κΆν μ μ½ λͺ
νν
|
|
135
|
-
- **rules:** ꡬν μν°ν©νΈ(`implementation_plan.md` λ±) λ΄ ν°μΌ λ²νΈ μ°Έμ‘° μ무ν
|
|
136
|
-
|
|
137
|
-
## [2.3.2] - 2026-04-17
|
|
138
|
-
|
|
139
|
-
### μμ λ¨ (Fixed)
|
|
140
|
-
|
|
141
|
-
- **cli:** λ°°ν¬ νκ²½μμ νλμ½λ©λ `yaml` μμ‘΄μ± κ²½λ‘ λ¬Έμ (`ERR_MODULE_NOT_FOUND`) ν΄κ²°
|
|
142
|
-
- **dependencies:** `yaml`μ λͺ
μμ μμ‘΄μ± λͺ©λ‘μ μΆκ°
|
|
143
|
-
|
|
144
|
-
## [2.3.1] - 2026-04-17
|
|
145
|
-
|
|
146
|
-
### λ³κ²½λ¨ (Changed)
|
|
147
|
-
|
|
148
|
-
- **readme:** 체μΈμ§λ‘κ·Έ λ° μλνλ λ¦΄λ¦¬μ¦ νλ‘μΈμ€ κ°μ΄λ μΆκ°
|
|
149
|
-
|
|
150
|
-
## [2.3.0] - 2026-04-17
|
|
151
|
-
|
|
152
|
-
### μΆκ°λ¨ (Added)
|
|
153
|
-
|
|
154
|
-
- AI νμ΄νλΌμΈ μ°λ κΈ°λ° λ° μ νμ λκΈ°ν μμ€ν
κ³ λν
|
|
155
|
-
- **cli:** ticket list λͺ
λ Ήμ --submodule νν° μΆκ°
|
|
156
|
-
- **cli:** ν°μΌ μμΉ΄μ΄λΈ λ° λ¦¬ν¬νΈ μν¬νλ‘λ₯Ό λͺ¨λν μν€ν
μ²λ‘ 볡ꡬ
|
|
157
|
-
- **rules:** Unity Client, WebApp, C++ μλ² νμ΄λΈλ¦¬λ νκ²½μ μν λ£° κ³ λν
|
|
158
|
-
- **ticket:** λΆμ°ν ν°μΌ κ΄λ¦¬ λ° κ³΅μ μ μ±
ꡬν
|
|
159
|
-
- **ticket:** V2 YAML Front-matter λ° μΉ΄ν
κ³ λ¦¬νλ 리μ€νΈλ‘ μ
κ·Έλ μ΄λ
|
|
160
|
-
|
|
161
|
-
### μμ λ¨ (Fixed)
|
|
162
|
-
|
|
163
|
-
- **ticket:** LATEST.mdλ₯Ό νκΈ°νκ³ ACTIVE_TICKET.mdλ‘ ν¬μΈν° ν΅μΌ
|
|
164
|
-
- **ticket:** DeukAgentRules νμ¬ μ§ν μ€μΈ ν°μΌ μ λμ€λ λ¬Έμ ν΄κ²°
|
|
165
|
-
|
|
166
|
-
## [1.0.14] - 2026-04-02
|
|
167
|
-
|
|
168
|
-
### μΆκ°λ¨ (Added)
|
|
169
|
-
|
|
170
|
-
- **cli:** λ³ν© λꡬ λ° λ°°ν¬ λ¬Έμ λκΈ°ν μ€ν¬λ¦½νΈ νμ₯
|
|
171
|
-
- **rules:** μ»€λ° μ λͺ© λ΄ 'sync' κΈμ§ ꡬ문 λ£° μΆκ°
|
|
172
|
-
- **handoff:** μΈλ±μ€ κΈ°λ° Handoff μν¬νλ‘ λ° CLI μ μ€
|
|
173
|
-
- **architecture:** μ λ‘-ν°μΉ NPM λ²λ€ μ€μΊν΄λ©μΌλ‘ ν
νλ¦Ώ μν€ν
μ² κ°νΈ
|
|
174
|
-
|
|
175
|
-
### μμ λ¨ (Fixed)
|
|
176
|
-
|
|
177
|
-
- **cli:** ν
νλ¦Ώ μμ±κΈ°(init) λ΄λΆμ HTML μν°ν° λ¬Έλ² μλ¬ ν«ν½μ€
|
|
178
|
-
|
|
179
|
-
### λ³κ²½λ¨ (Changed)
|
|
180
|
-
|
|
181
|
-
- **docs:** μΈλΆ 곡κ°μ© λ¦΄λ¦¬μ¦ κ°μ΄λ λ° λκΈ°ν μ€ν¬λ¦½νΈ μ£Όμ κ°±μ
|
|
182
|
-
- **docs:** 리λλ―Έ(README)μ ν ν° λΉμ© μ°¨λ¨ λ©μ»€λμ¦ μ€μ λ° μ λ‘ ν°μΉ μ€μΊν΄λ© λ¬Έμ κ°νΈ
|
package/CHANGELOG.md
DELETED
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [3.3.2] - 2026-05-06
|
|
8
|
-
|
|
9
|
-
### Positioning
|
|
10
|
-
|
|
11
|
-
- Reframed the npm/GitHub identity around **AI coding agent guardrails for every repo**, with ticketed scope, verification, and shared `AGENTS.md` workflows visible in package metadata.
|
|
12
|
-
- Added README comparison against `AGENTS.md`, Copilot instructions, Cursor rules, Claude skills, agent harnesses, and general guardrail frameworks to show where DeukAgentRules sits in the ecosystem.
|
|
13
|
-
- Added a short "What's Next" section to set expectations for clearer first-run checks, compact CLI/RAG reminders, and visible companion surfaces for active ticket, phase, open-ticket count, and DeukAgentContext memory status.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### Added
|
|
17
|
-
|
|
18
|
-
- AGENTS.md v12 + summary mandatory guard + PROJECT_RULE optimization
|
|
19
|
-
- **cli:** add 'ticket next' command for instant task discovery (T[#295](https://github.com/joygram/DeukAgentRules/issues/295))
|
|
20
|
-
- **cli:** enforce required frontmatter keys in lint:md (T-118)
|
|
21
|
-
- harden ticket paths and add DeukPack RAG schemas
|
|
22
|
-
- **migration:** add summary/planLink/caution auto-enrichment for legacy tickets
|
|
23
|
-
- Phase 0 search limiter - max 2 MCP calls, skip when context sufficient
|
|
24
|
-
- replace legacy fill-in-the-blank rule check with Version Gating and Task Relevance check
|
|
25
|
-
- **rules:** enforce hard guardrails, add hotfix protocol and urgency response
|
|
26
|
-
- **rules:** harden document boundary workflow
|
|
27
|
-
- **spoke:** add fill-in completion template for rule enforcement
|
|
28
|
-
- **T-114:** 1-CALL ticket discovery rule + CLI max call limits
|
|
29
|
-
- **T-115:** HARD BLOCK on write tools without active ticket
|
|
30
|
-
- **T-116:** auto-close stale tickets on ticket create + Phase 4 NEVER skip
|
|
31
|
-
- **T-116:** smart close based on checklist + phase state
|
|
32
|
-
- **ticket:** enforce filled create flow and phase1 status guard
|
|
33
|
-
- **ticket:** enforce open ticket cleanup flow
|
|
34
|
-
- **ticket:** partition archive index by month
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
### Fixed
|
|
38
|
-
|
|
39
|
-
- add Refactor Safety Guard and Halt-and-Replan hard rules
|
|
40
|
-
- agent degradation remediation β planLink, inline TDW, token optimization
|
|
41
|
-
- align ticket APC template with phase gate
|
|
42
|
-
- **docs:** correct frontmatter keys in AGENTS.md (remove fm_ prefix)
|
|
43
|
-
- **init:** deploy Antigravity spoke to project root AGENTS.md
|
|
44
|
-
- register legitimate DR-04/DR-05 exceptions and update PROJECT_RULE.md
|
|
45
|
-
- remove duplicate phase key in ticket template and repair broken tickets
|
|
46
|
-
- **rules:** announce active ticket at start
|
|
47
|
-
- **rules:** keep planlink free of progress checkboxes
|
|
48
|
-
- **rules:** make planlink capture agent analysis
|
|
49
|
-
- **rules:** separate ticket and plan content
|
|
50
|
-
- **spoke:** GLOBAL_AGENTS.md link text to actual filename AGENTS.md
|
|
51
|
-
- SSOT β init removes .deuk-agent/templates/ unconditionally (bundle is single source of truth)
|
|
52
|
-
- **T-116:** parallel-safe auto-close - only close activeTicketId, warn others
|
|
53
|
-
- **T-116:** replace auto-close with activeTicketId switch + warning
|
|
54
|
-
- **ticket:** honor project and submodule filters
|
|
55
|
-
- **ticket:** Sync close/archive status to frontmatter to prevent rebuild reversion
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Changed
|
|
59
|
-
|
|
60
|
-
- add Dependency Integrity Guard (HARD RULE) to AGENTS.md
|
|
61
|
-
- add lite accessibility vision plan
|
|
62
|
-
- add skill positioning release notes
|
|
63
|
-
- add version frontmatter to AGENTS.md for rule loading optimization
|
|
64
|
-
- align bad examples with plan/archive convention
|
|
65
|
-
- archive bmt coordination ticket 142
|
|
66
|
-
- archive bmt frontmatter cleanup ticket 144
|
|
67
|
-
- archive bmt go ticket 140
|
|
68
|
-
- archive bmt java ticket 139
|
|
69
|
-
- archive bmt matrix ticket 133
|
|
70
|
-
- archive bmt rust ticket 141
|
|
71
|
-
- bump AGENTS.md to v15 and strengthen dependency guards
|
|
72
|
-
- clarify ticket creation flow
|
|
73
|
-
- document rationale for docs/plan and fix section numbering
|
|
74
|
-
- Enforce strict rules for Scope Creep Handling
|
|
75
|
-
- enhance main features and workflow intro for v3.2.0
|
|
76
|
-
- optimize AGENTS.md β merge Dependency Integrity into Refactor Guard, compress Scope Creep
|
|
77
|
-
- position agent guardrail growth loop
|
|
78
|
-
- **rules:** clarify phase one execution semantics
|
|
79
|
-
- **rules:** mandate enrich_frontmatter for all plan/report files (T-118)
|
|
80
|
-
- **spoke:** hard rule single directive
|
|
81
|
-
- update legacy path guidance to plan/archive layout
|
|
82
|
-
|
|
83
|
-
## [3.3.0] - 2026-05-02
|
|
84
|
-
|
|
85
|
-
### Added
|
|
86
|
-
|
|
87
|
-
- **docs:** add AI coding agent guardrail positioning, vision, and organic growth research for VS Code, Open VSX, GitHub, and skill-driven discovery.
|
|
88
|
-
- **docs:** add a deep comparison of Karpathy-style skills, DeukAgentRules, and DeukAgentContext, positioning skills as behavior playbooks, DeukAgentRules as workflow/permission control, and DeukAgentContext as ticketed engineering memory.
|
|
89
|
-
- **seo:** add related-project positioning for `andrej-karpathy-skills` plus discovery keywords for Claude Code, AGENTS.md, Cursor rules, agent skills, and AI guardrails.
|
|
90
|
-
|
|
91
|
-
### Changed
|
|
92
|
-
|
|
93
|
-
- **ticket:** enforce a decision-first cleanup flow when open tickets exceed the configured limit, while allowing closed tickets to be archived automatically.
|
|
94
|
-
- **ticket:** organize archived tickets by year-month and day to reduce active ticket repository clutter.
|
|
95
|
-
- **docs:** update README document indexes and GitHub topic guidance to emphasize the agent guardrail, instruction hub, skill registry, and project memory positioning.
|
|
96
|
-
|
|
97
|
-
### Fixed
|
|
98
|
-
|
|
99
|
-
- **ticket:** prevent open ticket growth from silently exceeding the intended operating limit by surfacing cleanup decisions before new work proceeds.
|
|
100
|
-
|
|
101
|
-
## [3.2.0] - 2026-04-28
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Added
|
|
105
|
-
|
|
106
|
-
- **agent:** implement platform coexistence and mode-aware workflow
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
### Changed
|
|
110
|
-
|
|
111
|
-
- **agents:** add Co-existence Protocol and Workflow Gate (T-120)
|
|
112
|
-
- update usage, architecture, and principles for v3.1.0
|
|
113
|
-
|
|
114
|
-
## [3.1.0] - 2026-04-28
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
### Added
|
|
118
|
-
|
|
119
|
-
- add ArchitectureGuard.test.mjs and create technical debt ticket T-103
|
|
120
|
-
- add first-class copilot and codex support
|
|
121
|
-
- **arch:** implement APC v3 and simplify repository structure
|
|
122
|
-
- **cli:** restrict --skip-phase0 based on MCP server status and update rules
|
|
123
|
-
- consolidate rule cleanup logic and enforce thin pointers for entry points
|
|
124
|
-
- enforce unidirectional AGENTS.md single source of truth
|
|
125
|
-
- enhance CLI reporting and add practical usage guide
|
|
126
|
-
- implement strict phase-driven ticket workflow with APC validation
|
|
127
|
-
- implement Zero-Copy architecture with absolute path pointing and frontmatter-based PROJECT_RULE.md
|
|
128
|
-
- implement zero-token knowledge distillation on ticket archive and cleanup dead code
|
|
129
|
-
- **rules:** add AI Agent fallback guide to PROJECT_RULE.md template
|
|
130
|
-
- **rules:** normalize canonical rules and decouple DeukPack rules
|
|
131
|
-
- **telemetry:** add local-first telemetry CLI and update AGENTS.md
|
|
132
|
-
- **ticket:** implement --plan-body for filled Phase 1 ticket body input and update project rules
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
### Fixed
|
|
136
|
-
|
|
137
|
-
- auto-detect client tool from model and config in telemetry
|
|
138
|
-
- resolve agent loop on ticket navigation + archive 37 dead tickets
|
|
139
|
-
- **rules:** bilingual ko/en PROJECT_RULE.md template
|
|
140
|
-
- **rules:** remove redundant core rules link from PROJECT_RULE.md
|
|
141
|
-
- **rules:** restore frontmatter in PROJECT_RULE.md
|
|
142
|
-
- **rules:** restore mandatory ticket workflow and anti-shoveling rules
|
|
143
|
-
- **rules:** sync restored strict workflow AGENTS.md and unified templates
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
### Changed
|
|
147
|
-
|
|
148
|
-
- add markdown lint policy and workflow docs
|
|
149
|
-
- **agent:** rename TDD to TDW, archive ticket 101, and remove DOMAIN_RULES
|
|
150
|
-
- AGENTS.md full cleanup - eliminate redundancy, unify English, remove dead rules
|
|
151
|
-
- finalize ticket 066 rule normalization
|
|
152
|
-
- modernize CLI architecture, implement state-driven path resolution, and comprehensive audit cleanup
|
|
153
|
-
- **rules:** decouple DeukPack rules and fix merge injection logic
|
|
154
|
-
- update principles and cli compiler to DeukAgentContext
|
|
155
|
-
|
|
156
|
-
## [3.0.0] - 2026-04-25
|
|
157
|
-
|
|
158
|
-
### π Major Breakthrough: Hub-Spoke Architecture
|
|
159
|
-
- **Canonical Rule Hub**: Introduced `AGENTS.md` as the single source of truth for all AI agents.
|
|
160
|
-
- **Thin Spoke Pointers**: IDE-specific rules (Cursor, Copilot, etc.) are now lightweight pointers to the central Hub, eliminating duplication and sync errors.
|
|
161
|
-
- **Global CLI Proxy**: Implemented a smart entry point that automatically detects and routes execution to local workspace sources, ensuring zero-latency development.
|
|
162
|
-
|
|
163
|
-
### π§Ή Zero-Legacy & Cleanliness
|
|
164
|
-
- **Auto-Purge**: `init` now unconditionally deletes deprecated `.cursorrules` files.
|
|
165
|
-
- **Smart Backups**: Added logic to detect custom user rules and rename files to `.bak` instead of deletion.
|
|
166
|
-
- **Submodule Scrubbing**: Automatically cleans empty submodule directory stubs and scrubs `.gitmodules`.
|
|
167
|
-
|
|
168
|
-
### ποΈ Branding & Infrastructure
|
|
169
|
-
- **Identity Overhaul**: Rebranded as a "Zero-Latency, High-Signal AI Orchestration Protocol".
|
|
170
|
-
- **Documentation v3**: New high-end 3D visual infographics and overhauled conceptual guides (Architecture, Principles, How-it-works).
|
|
171
|
-
- **Domain Agnostic**: Generalized `bundle/AGENTS.md` to support any technology stack, removing domain-specific hardcoding.
|
|
172
|
-
|
|
173
|
-
### βοΈ CLI Enhancements
|
|
174
|
-
- **Proxy Routing**: `bin/deuk-agent-rule.js` performs directory traversal to find local scripts.
|
|
175
|
-
- **Synchronized IO**: Refactored core logic to use synchronous FS operations for rock-solid CLI stability.
|
|
176
|
-
|
|
177
|
-
---
|
|
178
|
-
|
|
179
|
-
## [2.4.0] - 2026-04-18
|
|
180
|
-
- add Codex CLI support (.codexrules) and apply globally
|
|
181
|
-
- implement ticket chaining (--chain) for automated ticket linkage
|
|
182
|
-
- improve submodule isolation logic
|