ai-skill-interface 1.4.0
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 +137 -0
- package/LICENSE +21 -0
- package/README.md +579 -0
- package/bin/init.js +50 -0
- package/package.json +25 -0
- package/skills/agent-orchestration/SKILL.md +37 -0
- package/skills/ai-token-optimize/SKILL.md +36 -0
- package/skills/auto-select/SKILL.md +58 -0
- package/skills/coverage/SKILL.md +26 -0
- package/skills/delivery-workflow/SKILL.md +31 -0
- package/skills/docs-sync/SKILL.md +27 -0
- package/skills/evaluation/SKILL.md +41 -0
- package/skills/finalize/SKILL.md +20 -0
- package/skills/framework-selection/SKILL.md +32 -0
- package/skills/hexagonal-development/SKILL.md +23 -0
- package/skills/human-in-the-loop/SKILL.md +42 -0
- package/skills/interface-first-development/SKILL.md +16 -0
- package/skills/observability/SKILL.md +35 -0
- package/skills/principle-audit/SKILL.md +32 -0
- package/skills/rag-development/SKILL.md +26 -0
- package/skills/security-audit/SKILL.md +22 -0
- package/skills/test-runner/SKILL.md +20 -0
- package/skills/version/SKILL.md +18 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [1.4.0] - 2026-03-29
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Package renamed: `common-ai-skill` → `ai-skill-interface` (npm + PyPI)
|
|
7
|
+
- Python package: `common_ai_skill` → `ai_skill_interface`
|
|
8
|
+
- First public release to npm and PyPI registries
|
|
9
|
+
|
|
10
|
+
## [1.3.0] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- `create-release.yml`: automated semantic version release workflow (auto-detect bump from commit types via `workflow_dispatch`)
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- `pyproject.toml`: fix build-backend (`setuptools.backends.legacy` → `setuptools.build_meta`)
|
|
17
|
+
- `common_ai_skill/install.py`: fix skills path for pip-installed package
|
|
18
|
+
- Repository URL corrected in `package.json`, `submodule-install.sh`, `reusable-skill-check.yml` (`hjm/` → `jaemyeong-hwnag/`)
|
|
19
|
+
- Added Installation section to `README.md` (npm, pip, submodule methods)
|
|
20
|
+
|
|
21
|
+
## [1.2.0] - 2026-03-28
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- `pyproject.toml` + `common_ai_skill/install.py`: pip distribution support (`pip install ai-skill-interface`)
|
|
25
|
+
- Context signals section in README for structured skill auto-selection
|
|
26
|
+
- `requires:` dependency metadata in skill frontmatter (agent-orchestration, coverage, evaluation, finalize, hexagonal-development, rag-development)
|
|
27
|
+
- `close-issues-on-merge.yml`: auto-close linked issues on PR merge (dual trigger: `pull_request:closed` + `workflow_run`)
|
|
28
|
+
- `auto-pr.yml`: auto-inject `Closes #<id>` from branch name into PR body
|
|
29
|
+
- Chore/docs issue template, `fix/*` branch type in CONTRIBUTING.md
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- `skill-propose`, `skill-install`, `skill-update` skills (no implementation backing them)
|
|
33
|
+
- `enhancement` and `bug` labels (duplicates of `feature` and `fix`)
|
|
34
|
+
- Redundant `noop` push trigger from `reusable-skill-check.yml`
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
- Abstraction check: validate diff only (not full file) to prevent false positives on unchanged content
|
|
38
|
+
- AI code review: exempt workflow/config/docs files from test requirement
|
|
39
|
+
- `ai-pr-review.yml`: remove `gh pr review --request-changes` — `GITHUB_TOKEN` cannot review its own PR
|
|
40
|
+
- `ai-pr-review.yml`: write review issues to file to prevent `GITHUB_OUTPUT` multiline errors
|
|
41
|
+
- `issue-branch.yml`: replace inline `--body` with `--body-file` to fix YAML parse failure
|
|
42
|
+
- `release-merge.yml`: remove `enforce_admins` toggle — `GITHUB_TOKEN` cannot modify admin protection
|
|
43
|
+
- PR template: remove redundant Type section, clarify testing instructions
|
|
44
|
+
- CONTRIBUTING.md: correct "squash merge" to "rebase merge", add `fix/*` branch type
|
|
45
|
+
- `pyproject.toml` version synced with `package.json`
|
|
46
|
+
|
|
47
|
+
### Changed
|
|
48
|
+
- Branch protection: `develop` and `main` require status checks (strict=true): "Validate branch name", "AI code review"
|
|
49
|
+
- Repository: auto-merge enabled, squash merge disabled
|
|
50
|
+
|
|
51
|
+
## [1.1.9] - 2026-03-28
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
- `release-merge.yml`: remove `enforce_admins` disable/re-enable API calls
|
|
55
|
+
|
|
56
|
+
## [1.1.8] - 2026-03-28
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
- `release-merge.yml`: rewrite trigger from `pull_request` to `push: branches: [main]` — `pull_request` events from GITHUB_TOKEN-created PRs never cascade to other workflows; detect release from merge commit message; idempotent GitHub Release creation; remove enforce_admins toggle steps (develop branch protection updated to allow bot direct push)
|
|
60
|
+
- `ai-pr-review.yml`: remove `push:` trigger and `noop` job that caused YAML parse failures with 0 jobs; fix 0-indented multi-line strings in `run: |` blocks that broke YAML parsing; add `ready_for_review` event type; remove redundant `event_name` guards
|
|
61
|
+
- `develop` branch protection: remove `required_pull_request_reviews` rule to allow `github-actions[bot]` back-merge direct pushes; `enforce_admins: false`
|
|
62
|
+
|
|
63
|
+
## [1.1.7] - 2026-03-28
|
|
64
|
+
|
|
65
|
+
### Fixed
|
|
66
|
+
- `release-merge.yml`: duplicate `env:` key in `publish-github-release` step caused YAML parse error, preventing `pull_request` events from triggering the workflow — use `export VERSION` in shell instead
|
|
67
|
+
|
|
68
|
+
## [1.1.6] - 2026-03-28
|
|
69
|
+
|
|
70
|
+
### Added
|
|
71
|
+
- `label-pr.yml`: auto-label every PR with type (feature/fix/improve/chore/release/hotfix) and size (size/S/M/L) on open/sync
|
|
72
|
+
- `release-merge.yml`: auto-publish GitHub Release with changelog section after release/* merges to main
|
|
73
|
+
- Labels: `release`, `breaking-change`, `wip`, `size/S`, `size/M`, `size/L`
|
|
74
|
+
|
|
75
|
+
### Changed
|
|
76
|
+
- `auto-pr.yml`: `release/*` and `hotfix/*` PRs created as ready (not draft)
|
|
77
|
+
- `pull_request_template.md`: added type selector, breaking-change flag, testing checklist
|
|
78
|
+
|
|
79
|
+
### Fixed
|
|
80
|
+
- `release-merge.yml`: rewrite job-level `if` conditions from multiline `|` blocks to single-line `${{ }}` expressions — resolved workflow file parse error causing all runs to fail with 0 jobs
|
|
81
|
+
- Branch protection: `main` and `develop` direct push blocked, force push disabled
|
|
82
|
+
- Repository: squash merge disabled; only rebase (feature branches) and merge commit (release/hotfix) allowed
|
|
83
|
+
|
|
84
|
+
## [1.1.5] - 2026-03-28
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- GitHub issue templates: feature / bug / improve / hotfix
|
|
88
|
+
- PR template with principle checklist
|
|
89
|
+
- `issue-branch.yml`: auto-create branch with issue ID when issue is labeled
|
|
90
|
+
- `auto-pr.yml`: auto-create draft PR on first branch push
|
|
91
|
+
- `release-merge.yml`: auto-merge release/* PRs (merge commit) + back-merge main → develop
|
|
92
|
+
- `ai-pr-review.yml`: branch-name validation (issue ID required), formal `request-changes` on principle violation, rebase merge for feature/fix/improve/chore, merge commit for release/hotfix
|
|
93
|
+
|
|
94
|
+
## [1.1.4] - 2026-03-24
|
|
95
|
+
|
|
96
|
+
### Fixed
|
|
97
|
+
- `ai-pr-review.yml`: duplicate `env:` key in `Check abstraction compliance` step — YAML disallows duplicate mapping keys, causing GitHub to reject the workflow at validation time (0s phantom failures)
|
|
98
|
+
- `reusable-skill-check.yml`: `GITHUB_TOKEN` declared as a `workflow_call` secret — GitHub forbids this; the automatic token is always provided to called workflows
|
|
99
|
+
|
|
100
|
+
## [1.1.3] - 2026-03-24
|
|
101
|
+
|
|
102
|
+
### Fixed
|
|
103
|
+
- `ai-pr-review.yml`: 중복 `if:` 키(`ai-review` job에서 lines 173·176)로 인한 YAML 파싱 실패 수정 — GitHub이 workflow run을 즉시 failure(0s, 0 jobs)로 처리하던 근본 원인
|
|
104
|
+
- workflow 파일들에서 불필요한 `push` 트리거 및 `noop` job 제거 — 의도된 트리거로 복원: `ai-pr-review.yml`은 `pull_request`만, `reusable-skill-check.yml`은 `workflow_call`만
|
|
105
|
+
|
|
106
|
+
## [1.1.2] - 2026-03-24
|
|
107
|
+
|
|
108
|
+
### Fixed
|
|
109
|
+
- GitHub Actions push 이벤트 시 phantom failure runs 제거 — 각 job에 `if: github.event_name` 조건 추가로 push 시 `skipped` 처리
|
|
110
|
+
|
|
111
|
+
## [1.1.1] - 2026-03-24
|
|
112
|
+
|
|
113
|
+
### Fixed
|
|
114
|
+
- GitHub Actions 워크플로우 YAML 파싱 에러 수정 — `run: |` 블록 내 멀티라인 문자열이 column 0으로 떨어져 YAML 파서가 `*`/`{`를 alias/mapping으로 오인, 모든 워크플로우 실행이 `jobs: []`, `conclusion: failure`로 종료되던 문제
|
|
115
|
+
- `ai-pr-review.yml`: PR 코멘트 body를 `echo` + `--body-file` 방식으로 교체
|
|
116
|
+
- `reusable-skill-check.yml`: PR 코멘트 body 교체 + Python f-string을 문자열 연결로 교체
|
|
117
|
+
|
|
118
|
+
## [1.1.0] - 2026-03-24
|
|
119
|
+
|
|
120
|
+
### Added
|
|
121
|
+
- npm 배포 지원 — `npx ai-skill-interface` 실행 시 스킬을 `~/.claude/skills/`에 자동 설치
|
|
122
|
+
- git submodule 배포 지원
|
|
123
|
+
- 재사용 가능한 GitHub Actions 워크플로우 (`reusable-skill-check.yml`) — 다른 팀이 PR에 스킬 준수 체크를 붙일 수 있음
|
|
124
|
+
|
|
125
|
+
### Fixed
|
|
126
|
+
- `bin/init.js`의 `@node_modules/...` CLAUDE.md 주입 방식을 `~/.claude/skills/` 직접 복사로 교체 — Claude Code 공식 동작에 맞는 검증된 표준 방식
|
|
127
|
+
|
|
128
|
+
### Changed
|
|
129
|
+
- 프로젝트 핵심 목적 명시 강화: README, HUMAN_README, CONTRIBUTING 전반에 "스킬 = 인터페이스, AI = 구현체" 패턴을 명시적으로 표현
|
|
130
|
+
|
|
131
|
+
## [1.0.0] - 2026-03-01
|
|
132
|
+
|
|
133
|
+
### Added
|
|
134
|
+
- 17개 추상 스킬 초기 릴리즈: delivery-workflow, test-runner, coverage, finalize, hexagonal-development, interface-first-development, docs-sync, security-audit, version, ai-token-optimize, principle-audit, framework-selection, rag-development, observability, evaluation, human-in-the-loop, agent-orchestration
|
|
135
|
+
- Agent Skills 표준 호환 YAML 프론트매터 (`name`, `description`)
|
|
136
|
+
- AI PR 리뷰 및 자동 머지 워크플로우
|
|
137
|
+
- git flow 브랜치/PR 규칙
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 jaemyeong-hwang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|