deuk-agent-rule 1.0.13 → 2.2.1
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/CHANGELOG.md +139 -85
- package/README.ko.md +125 -106
- package/README.ko.pdf +0 -0
- package/README.md +123 -106
- package/bundle/.cursorrules +7 -0
- package/bundle/AGENTS.md +87 -96
- package/bundle/rules/delivery-and-parallel-work.mdc +26 -26
- package/bundle/rules/git-commit.mdc +18 -24
- package/bundle/rules/multi-ai-workflow.mdc +76 -26
- package/package.json +4 -3
- package/scripts/cli-args.mjs +43 -0
- package/scripts/cli-init-commands.mjs +65 -0
- package/scripts/cli-init-logic.mjs +21 -0
- package/scripts/cli-prompts.mjs +123 -0
- package/scripts/cli-ticket-commands.mjs +159 -0
- package/scripts/cli-ticket-logic.mjs +229 -0
- package/scripts/cli-utils.mjs +82 -0
- package/scripts/cli.mjs +110 -441
- package/scripts/merge-logic.mjs +365 -195
- package/scripts/sync-bundle.mjs +50 -44
- package/scripts/sync-oss.mjs +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,89 +1,143 @@
|
|
|
1
|
-
# Changelog
|
|
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
|
+
## [2.2.1] - 2026-04-06
|
|
2
8
|
|
|
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
|
-
## [1.0.13] - 2026-03-28
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
### Fixed
|
|
11
|
-
|
|
12
|
-
- **deuk-agent-rule:** `printHandoffTip` missing in CLI (handoff tip after `init`)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Changed
|
|
16
|
-
|
|
17
|
-
- **docs:** README § Handoffs; GitHub About text; npm keywords; CLI survey adds Claude, Windsurf, JetBrains AI Assistant
|
|
18
|
-
- **agents:** optional `.cursor/plans/*.plan.md` mirror for plan-style UI; chat `Path:` line and optional first-line path in handoff files
|
|
19
|
-
- **deuk-agent-rule:** `init` prints a short handoff tip after ensuring `.deuk-agent-handoff/`
|
|
20
|
-
- **deuk-agent-rule:** default `--rules prefix` overwrites existing `deuk-agent-rule-*.mdc` on repeat `init` (package updates without a separate `merge`)
|
|
21
|
-
- **deuk-agent-rule:** `.deuk-agent-rule.config.json` stores interactive choices; later `init` reuses them (`--interactive` to change; `--non-interactive` for CI only)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## [1.0.12] - 2026-03-27
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Fixed
|
|
28
|
-
|
|
29
|
-
- **ci:** run release workflow on master; document GitHub is not auto-synced from gplat
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Changed
|
|
33
|
-
|
|
34
|
-
- **agents:** require full repo-root paths for handoff file links
|
|
35
|
-
|
|
36
|
-
## [1.0.11] - 2026-03-26
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Added
|
|
40
|
-
|
|
41
|
-
- **ci:** GitHub Release on main for chore(release); simplify public RELEASING
|
|
42
|
-
|
|
43
|
-
## [1.0.10] - 2026-03-26
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Added
|
|
47
|
-
|
|
48
|
-
- **deuk-agent-rule:** keep a changelog templates without commit links
|
|
49
|
-
|
|
50
|
-
## [1.0.9] - 2026-03-27
|
|
51
|
-
|
|
52
|
-
### Added
|
|
53
|
-
|
|
54
|
-
- **deuk-agent-rule:** automated changelog and release tooling
|
|
55
|
-
- **deuk-agent-rule:** handoff gitignore, pre-work handoff scan, AGENTS inject newline
|
|
56
|
-
|
|
57
|
-
### Changed
|
|
58
|
-
|
|
59
|
-
- **agents:** DeukAgentRules/handoff/LATEST.md handoff path for consumer repos
|
|
60
|
-
|
|
61
|
-
## [1.0.8] - 2026-03-27
|
|
62
|
-
|
|
63
|
-
### Added
|
|
64
|
-
|
|
65
|
-
- This changelog and npm `files` entry so releases are traceable.
|
|
66
|
-
|
|
67
|
-
## [1.0.7] - 2026-03-27
|
|
68
|
-
|
|
69
|
-
### Added
|
|
70
|
-
|
|
71
|
-
- `init`: create `.deuk-agent-handoff/` and append `.gitignore` rules for local handoffs.
|
|
72
|
-
- CLI: pre-work handoff scan; `publish/AGENTS.md` and `multi-ai-workflow.mdc` updates.
|
|
73
|
-
|
|
74
|
-
### Fixed
|
|
75
|
-
|
|
76
|
-
- AGENTS tagged-region merge: trailing newline after injected blocks.
|
|
77
|
-
|
|
78
|
-
## [1.0.5] - 2026-03-26
|
|
79
|
-
|
|
80
|
-
### Changed
|
|
81
|
-
|
|
82
|
-
- README and package metadata (Deuk Family tagline, npm keywords, GitHub Topics note).
|
|
83
|
-
|
|
84
|
-
## [1.0.4] - 2026-03-26
|
|
85
9
|
|
|
86
10
|
### Changed
|
|
87
11
|
|
|
88
|
-
-
|
|
89
|
-
|
|
12
|
+
- move ticket marker and unify rules to english plain text
|
|
13
|
+
|
|
14
|
+
## [2.2.0] - 2026-04-06
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- cli: support implementation_plan.md and Plan headers during migration
|
|
18
|
+
- rules: enforce mandatory English-only rules in publish directory
|
|
19
|
+
- rules: implement Hard Rule for no Markdown word emphasis (Plain Text only)
|
|
20
|
+
- rules: move ticket file path marker to the bottom of the document
|
|
21
|
+
|
|
22
|
+
## [2.1.0] - 2026-04-05
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- cli: add ticket close status logic and verify workflow phase
|
|
26
|
+
- cli: print actual title instead of topic slug in ticket list
|
|
27
|
+
- rules: add pre-report self-review phase to definitive workflow
|
|
28
|
+
- rules: enforce priority ticket creation and add /ticket slash command
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
- cli: exclude TICKET_LIST logic files from ticket auto-recovery scan
|
|
32
|
+
- cli: replace broken auto-recovery fallback with physical file sync logic
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
- architecture: add how-it-works guide for CLI operating principles
|
|
36
|
+
- enforce mandatory post-test artifact risk analysis workflow
|
|
37
|
+
- readme: add npm and github status badges to header
|
|
38
|
+
- readme: enhance docs with definitive 5-phase workflow and richer prompt usage examples
|
|
39
|
+
- readme: prioritize prompt-driven workflow and adopt neutral metrics
|
|
40
|
+
- readme: simplify workflow section with 6-phase table and sample scenario
|
|
41
|
+
- system: add interactive system and stack selection guide
|
|
42
|
+
- workflow: add Korean workflow user guide tutorial
|
|
43
|
+
|
|
44
|
+
## [2.0.0] - 2026-04-05
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- ci: GitHub Release on main for chore(release); simplify public RELEASING
|
|
48
|
+
- cli: extend merge tooling and sync publish docs
|
|
49
|
+
- cli: tag .cursorrules inject/remove and sync template from publish
|
|
50
|
+
- deuk-agent-rule: automated changelog, bump tooling
|
|
51
|
+
- deuk-agent-rule: handoff gitignore, pre-work handoff scan, AGENTS inject newline
|
|
52
|
+
- deuk-agent-rule: keep a changelog templates without commit links
|
|
53
|
+
- forbid 'sync' word in commit titles in agent rules
|
|
54
|
+
- handoff: add indexed handoff workflow and CLI
|
|
55
|
+
- workflow: introduce Ticket-First Workflow and Multi-AI Handoff architecture
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
- ci: run release workflow on master; document GitHub is not auto-synced from gplat
|
|
59
|
+
- templates: remove workspace-specific paths from default global rules
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
- absolute links for npm page
|
|
63
|
+
- agents: DeukAgentRules/handoff/LATEST.md handoff path for consumer repos
|
|
64
|
+
- agents: require full repo-root paths for handoff file links
|
|
65
|
+
- Deuk Family tagline, npm keywords, GitHub Topics note
|
|
66
|
+
- migrate handoff to ticket terminology
|
|
67
|
+
- public-facing RELEASING and changelog wording; sync-bundle comment
|
|
68
|
+
- README updates; delivery-and-parallel-work rule; CLI and publish AGENTS updates
|
|
69
|
+
|
|
70
|
+
## [1.1.0] - 2026-04-05
|
|
71
|
+
|
|
72
|
+
### Added
|
|
73
|
+
- deuk-agent-rule: Modular CLI architecture (ESM native).
|
|
74
|
+
- deuk-agent-rule: Recursive directory path resolution for robust ticket discovery.
|
|
75
|
+
- deuk-agent-rule: Strict marker casing validation to prevent duplicate injected blocks.
|
|
76
|
+
|
|
77
|
+
### Changed
|
|
78
|
+
- docs: Transitioned to minimalist DeukPack styling for README.
|
|
79
|
+
- deuk-agent-rule: Generalized project detection from hardcoded strings to dynamic metadata (Project: prefix).
|
|
80
|
+
- deuk-agent-rule: CLI flags now rigorously override saved config values (Config Inheritance).
|
|
81
|
+
- deuk-agent-rule: ticket list and ticket use gracefully fail if system is uninitialized.
|
|
82
|
+
|
|
83
|
+
## [1.0.13] - 2026-03-28
|
|
84
|
+
### Fixed
|
|
85
|
+
- deuk-agent-rule: printTicketTip missing in CLI (ticket tip after init)
|
|
86
|
+
|
|
87
|
+
### Changed
|
|
88
|
+
- docs: README § Tickets; GitHub About text; npm keywords; CLI survey adds Claude, Windsurf, JetBrains AI Assistant
|
|
89
|
+
- agents: optional .cursor/plans/*.plan.md mirror for plan-style UI; chat Path: line and optional first-line path in ticket files
|
|
90
|
+
- deuk-agent-rule: init prints a short ticket tip after ensuring .deuk-agent-ticket/
|
|
91
|
+
- deuk-agent-rule: default --rules prefix overwrites existing deuk-agent-rule-*.mdc on repeat init (package updates without a separate merge)
|
|
92
|
+
- deuk-agent-rule: .deuk-agent-rule.config.json stores interactive choices; later init reuses them (--interactive to change; --non-interactive for CI only)
|
|
93
|
+
|
|
94
|
+
## [1.0.12] - 2026-03-27
|
|
95
|
+
|
|
96
|
+
### Fixed
|
|
97
|
+
- ci: release workflow runs on pushes to master
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
- agents: require full repo-root paths for ticket file links
|
|
101
|
+
|
|
102
|
+
## [1.0.11] - 2026-03-26
|
|
103
|
+
|
|
104
|
+
### Added
|
|
105
|
+
- ci: GitHub Release workflow for version tags and chore(release): commits on main / master
|
|
106
|
+
|
|
107
|
+
## [1.0.10] - 2026-03-26
|
|
108
|
+
|
|
109
|
+
### Added
|
|
110
|
+
- deuk-agent-rule: changelog template headers without per-commit links
|
|
111
|
+
|
|
112
|
+
## [1.0.9] - 2026-03-27
|
|
113
|
+
|
|
114
|
+
### Added
|
|
115
|
+
- deuk-agent-rule: release changelog tooling; ticket directory gitignore; pre-work ticket scan; AGENTS inject newline fix
|
|
116
|
+
|
|
117
|
+
### Changed
|
|
118
|
+
- agents: DeukAgentRules/ticket/LATEST.md ticket path for consumer repos
|
|
119
|
+
|
|
120
|
+
## [1.0.8] - 2026-03-27
|
|
121
|
+
|
|
122
|
+
### Added
|
|
123
|
+
- This changelog and npm files entry so releases are traceable.
|
|
124
|
+
|
|
125
|
+
## [1.0.7] - 2026-03-27
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- init: create .deuk-agent-ticket/ and append .gitignore rules for local tickets.
|
|
129
|
+
- CLI: pre-work ticket scan; publish/AGENTS.md and multi-ai-workflow.mdc updates.
|
|
130
|
+
|
|
131
|
+
### Fixed
|
|
132
|
+
- AGENTS tagged-region merge: trailing newline after injected blocks.
|
|
133
|
+
|
|
134
|
+
## [1.0.5] - 2026-03-26
|
|
135
|
+
|
|
136
|
+
### Changed
|
|
137
|
+
- README and package metadata (Deuk Family tagline, npm keywords, GitHub Topics note).
|
|
138
|
+
|
|
139
|
+
## [1.0.4] - 2026-03-26
|
|
140
|
+
|
|
141
|
+
### Changed
|
|
142
|
+
- Release packaging includes package-lock.json for reproducible installs.
|
|
143
|
+
- README: absolute links for the npm package page.
|
package/README.ko.md
CHANGED
|
@@ -1,106 +1,125 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
|
83
|
-
|
|
84
|
-
|
|
|
85
|
-
|
|
|
86
|
-
|
|
|
87
|
-
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<br />
|
|
3
|
+
<h1>DeukAgentRules (득에이전트룰스)</h1>
|
|
4
|
+
<p>규칙 표준화 엔진</p>
|
|
5
|
+
<p><a href="https://deukpack.app">Deuk Family</a> 생태계의 핵심 에이전트 인프라</p>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<div align="center">
|
|
9
|
+
<a href="https://www.npmjs.com/package/deuk-agent-rule"><img src="https://img.shields.io/npm/v/deuk-agent-rule.svg?color=black&style=flat-square" alt="NPM Version" /></a>
|
|
10
|
+
<a href="https://www.npmjs.com/package/deuk-agent-rule"><img src="https://img.shields.io/npm/dm/deuk-agent-rule.svg?color=blue&style=flat-square" alt="NPM Downloads" /></a>
|
|
11
|
+
<a href="https://github.com/joygram/DeukAgentRules"><img src="https://img.shields.io/github/stars/joygram/DeukAgentRules.svg?style=flat-square&color=orange" alt="GitHub Stars" /></a>
|
|
12
|
+
<a href="https://github.com/joygram/DeukAgentRules/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/deuk-agent-rule.svg?style=flat-square" alt="License" /></a>
|
|
13
|
+
<br /><br />
|
|
14
|
+
<a href="https://github.com/joygram/DeukAgentRules/blob/master/README.md">English</a>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
***
|
|
18
|
+
|
|
19
|
+
## Abstract
|
|
20
|
+
|
|
21
|
+
DeukAgentRules는 AI 엔지니어링 에이전트(Cursor, GitHub Copilot, Gemini/Antigravity, Claude, Windsurf, JetBrains AI 등)를 위한 프로젝트 불가지론적(Agnostic) 규칙 아키텍처를 정의합니다. 지속적인 워크플로 메모리를 세션 컨텍스트와 분리하여, 세션당 반복되는 프롬프트 부하를 감소시킵니다.
|
|
22
|
+
|
|
23
|
+
> 왜 DeukAgentRules인가?
|
|
24
|
+
> 티켓 기반 워크플로(Ticket-First)는 반복되는 컨텍스트 부하를 세션당 단일 토픽 파일 하나로 축소하고, 저장소를 재설명하지 않고도 도구 간 핸드오버를 가능하게 합니다.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## 빠른 시작
|
|
29
|
+
|
|
30
|
+
명령어 한 줄로 규칙 시스템을 초기화하고 로컬 워크스페이스를 구성하세요:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npx deuk-agent-rule init
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
- 대화형 설정: 최초 실행 시 CLI가 주요 기술 스택과 사용하는 AI 에이전트를 선택하도록 안내합니다. (각 스택별 세부 지원 항목은 시스템 및 스택 선택 가이드를 참조하세요).
|
|
37
|
+
- 안전한 업데이트: 이후 실행 시 기존 커스텀 설정을 건드리지 않고 필요한 템플릿만 안전하게 주입(Append)합니다. 설정을 변경하려면 --interactive 옵션을 사용하세요.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 티켓 기반 워크플로 (Ticket-First Workflow)
|
|
42
|
+
|
|
43
|
+
다수의 AI 에이전트가 단일 마크다운 티켓을 통해 컨텍스트를 공유하는 구조입니다.
|
|
44
|
+
|
|
45
|
+
### 6단계 워크플로
|
|
46
|
+
|
|
47
|
+
| 단계 | 담당 | 역할 |
|
|
48
|
+
|---|---|---|
|
|
49
|
+
| 1. 탐색 & 계획 | 추론 AI | 코드베이스 분석, 구현 계획 수립 |
|
|
50
|
+
| 2. 결정 | 사용자 | 계획 검토 및 승인 |
|
|
51
|
+
| 3. 티켓 발행 (등록) | 추론 AI | 승인된 계획을 .deuk-agent-ticket/ 에 저장 |
|
|
52
|
+
| 4. 실행 | IDE 에이전트 | 티켓만 읽고 범위 내에서 코딩 |
|
|
53
|
+
| 5. 리스크 분석 (자체검증) | IDE 에이전트 | 테스트 완료 후 빌드 산출물 자체의 결함 및 잠재 리스크 필수 분석 |
|
|
54
|
+
| 6. 보고 & 종결 | 사용자+에이전트 | 리포트 검토 후 npx deuk-agent-rule ticket close --latest |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
### 상세 워크플로 가이드
|
|
59
|
+
|
|
60
|
+
1단계: 탐색 및 계획 수립
|
|
61
|
+
```
|
|
62
|
+
[User] "분석 저장소모듈"
|
|
63
|
+
[Agent] (코드베이스 분석 후 방향 제안)
|
|
64
|
+
[User] "계획 해당 분석내용을 진행할 계획 및 설계"
|
|
65
|
+
[Agent] (.deuk-agent-ticket/main/storage-20260406.md 에 티켓 저장)
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
2단계: 실행 및 자체 검증
|
|
69
|
+
```
|
|
70
|
+
[User] "진행 (생략 시 최신 분석 내용 진행)"
|
|
71
|
+
[Agent] (티켓을 읽고 코드 변경 후 자체 검토 보고)
|
|
72
|
+
[User] "검증 이슈 및 결함, 잠재오류"
|
|
73
|
+
[Agent] (티켓 제약 사항 준수 검토 및 결함 탐색 완료)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
### 키워드 프롬프트 예시 (채팅창 입력)
|
|
79
|
+
|
|
80
|
+
반복되는 타이핑과 검색 피로도를 줄이기 위해 아래와 같은 키워드 기반의 단문을 권장해요.
|
|
81
|
+
|
|
82
|
+
| 상황 | 입력 프롬프트 |
|
|
83
|
+
|---|---|
|
|
84
|
+
| 분석 | 분석 [주제/모듈] |
|
|
85
|
+
| 계획 | 계획 해당 분석내용을 진행할 계획 및 설계 |
|
|
86
|
+
| 진행 | 진행 [티켓번호] (생략 시 최신 진행) |
|
|
87
|
+
| 검증 | 검증 이슈 및 결함, 잠재오류 |
|
|
88
|
+
| 조회 | /티켓 |
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
### CLI 레퍼런스 (선택 사항)
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
npx deuk-agent-rule ticket create --topic login-api --project MyProject --content "## Task: ..."
|
|
96
|
+
npx deuk-agent-rule ticket list
|
|
97
|
+
npx deuk-agent-rule ticket close --latest
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
(티켓 튜토리얼: docs/ticket-tutorial.ko.md 참조)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## 아키텍처 및 설정 (How It Works)
|
|
107
|
+
|
|
108
|
+
CLI는 CI 환경과 명시적 제어를 위한 매개변수를 지원하며, 기존 로컬 설정과 충돌하지 않는 주입(Injection) 방식을 사용합니다.
|
|
109
|
+
자세한 기술 구현 아키텍처와 덮어쓰기 방어 로직은 동작 원리 가이드를 참조하세요.
|
|
110
|
+
|
|
111
|
+
### 핵심 매개변수 (Core Configuration)
|
|
112
|
+
|
|
113
|
+
| 옵션 | 용도 |
|
|
114
|
+
|------|---------|
|
|
115
|
+
| --non-interactive | CI/Headless 모드 (질의응답 없이 기본값/저장된 설정 즉시 적용) |
|
|
116
|
+
| --tag <id> | 기본 마커 영역(<!-- <id>:begin/end -->)을 사용자 정의 ID로 오버라이드 |
|
|
117
|
+
| --agents inject | 기존 AGENTS.md에 지능형 마커 주입 (또는 skip, overwrite) |
|
|
118
|
+
| --rules prefix | 지능형 파일 접두사를 활용하여 .cursor/rules 모듈 업데이트 |
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 라이선스 & 생태계
|
|
123
|
+
|
|
124
|
+
이 패키지는 DeukPack Ecosystem의 일부로 구동되며, Apache-2.0 라이선스 하에 배포됩니다.
|
|
125
|
+
이슈 제보, 컨트리뷰션 및 커뮤니티 논의는 GitHub Repository (https://github.com/joygram/DeukAgentRules)를 방문해 주세요.
|
package/README.ko.pdf
ADDED
|
Binary file
|