oh-my-design-cli 1.3.8 → 1.3.9
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.ko.md +21 -0
- package/README.md +21 -0
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -152,6 +152,27 @@ omd learn --mark-rejected <id> --reason <text>
|
|
|
152
152
|
|
|
153
153
|
이 생태계는 **v0.1.0** — 첫 agent-integration 릴리스입니다. CLI 표면 (sync / remember / learn / init prepare / install-skills)은 안정 + 단위 테스트 완료 (505 테스트). 에이전트 측 Hybrid variation 품질은 호스트 LLM이 `omd:init` 스킬 프롬프트를 얼마나 잘 따르는지에 좌우됩니다 — 검증 맵은 [`test/scenarios/WORKFLOWS.md`](test/scenarios/WORKFLOWS.md) 참고. 실 세션 결과 환영 — `.omd/init-context.json`과 결과 `DESIGN.md`를 첨부해서 이슈로 보고 부탁드립니다.
|
|
154
154
|
|
|
155
|
+
### 업그레이드
|
|
156
|
+
|
|
157
|
+
스킬·에이전트는 매 릴리스마다 진화합니다. 기존 프로젝트에서 최신 번들 받아오려면:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
npx oh-my-design-cli@latest install-skills
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
Idempotent. 상단에 `<!-- omd:installed-skill -->` 마커가 있는 **관리 파일**은 in-place 갱신, 마커 없이 사용자가 수정한 파일은 `skipped-drift` 상태로 그대로 두기. 사용자 편집까지 정말 덮어쓰려면 `--force`.
|
|
164
|
+
|
|
165
|
+
재실행 후 에이전트 재시작 (Cmd+Q in Claude Code → 재실행) — 새 스킬·에이전트 로드.
|
|
166
|
+
|
|
167
|
+
**버전 확인:**
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
npx oh-my-design-cli --version # 프로젝트에 깔린 버전
|
|
171
|
+
npm view oh-my-design-cli version # npm registry 최신
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
**각 릴리스 변경 내용:** [CHANGELOG.md](./CHANGELOG.md). 모든 릴리스 항목에 skill·agent·hook·CLI·data 변경 명시. re-install 외에 마이그레이션(예: `DESIGN.md` frontmatter 스키마 변경) 필요한 변경은 해당 entry 최상단에 표시.
|
|
175
|
+
|
|
155
176
|
## OmD v0.1 Philosophy Layer
|
|
156
177
|
|
|
157
178
|
Google Stitch의 9개 섹션 위에 OmD가 더하는 6개:
|
package/README.md
CHANGED
|
@@ -37,6 +37,27 @@ Then restart your agent (Cmd+Q in Claude Code, then relaunch) so the new skills
|
|
|
37
37
|
|
|
38
38
|
That is the only CLI command you will run. Everything else is natural language to your agent.
|
|
39
39
|
|
|
40
|
+
## Upgrading
|
|
41
|
+
|
|
42
|
+
Skills and agents evolve every release. To pick up the latest bundle in an existing project:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npx oh-my-design-cli@latest install-skills
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Idempotent. Managed files (those carrying the `<!-- omd:installed-skill -->` marker at the top) are refreshed in place. Files you edited that don't have the marker are left untouched (status `skipped-drift`). Pass `--force` if you really want to overwrite your custom edits.
|
|
49
|
+
|
|
50
|
+
Restart your agent after re-running so the refreshed skills + agents are loaded.
|
|
51
|
+
|
|
52
|
+
**Check what's installed vs what's latest:**
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
npx oh-my-design-cli --version # what your project currently uses
|
|
56
|
+
npm view oh-my-design-cli version # latest on the registry
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**What's new each release:** [CHANGELOG.md](./CHANGELOG.md). Every release entry says what changed in the skills, agents, hooks, CLI, and data. If a change requires anything beyond a re-install — for example a migration of `DESIGN.md` frontmatter — it will be called out at the top of that entry.
|
|
60
|
+
|
|
40
61
|
## How to use omd with your AI
|
|
41
62
|
|
|
42
63
|
Open Claude Code (or Codex / OpenCode) in your project. Just talk:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-design-cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"description": "Bootstrap oh-my-design skills + agents into your project. After install, talk to your AI coding agent in natural language — no other CLI commands.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|