feat(ai-integration): add seed-design-cli skills docs#1243
feat(ai-integration): add seed-design-cli skills docs#1243junghyeonsu wants to merge 7 commits intodevfrom
Conversation
|
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthrough새로운 SEED Design CLI 스킬 관련 문서를 추가하고, AI 통합 섹션의 네비게이션 구조를 재정리했습니다. 초기화, 추가, 마이그레이션 지침 등 사용 설명서와 함께 Skills 및 MCP 서브섹션을 포함하는 문서 구조를 확장했습니다. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~20 minutes Poem
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Alpha Preview (Stackflow SPA)
|
Alpha Preview (Storybook)
|
Alpha Preview (Docs)
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@docs/content/ai-integration/skills/cli.mdx`:
- Around line 10-12: Replace the deprecated fenced code block language
identifier "package-install" with "npm" for the shown code block (and any other
occurrences in the docs) so the block starting with ```package-install that
contains "npx skills add https://github.com/daangn/seed-design --skill
seed-design-cli" becomes ```npm; search for all instances of the literal marker
```package-install and update them to ```npm (ensuring no extra leading
characters) so remarkNpmOptions handles them correctly.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@docs/content/ai-integration/`(skills)/cli.mdx:
- Around line 30-53: The doc-gen:file relative paths in cli.mdx are incorrect
causing missing files; update the three entries that currently reference
"../skills/seed-design-cli/..." to use the repository-root relative path by
replacing each "../skills/seed-design-cli/SKILL.md",
"../skills/seed-design-cli/details/usage.md", and
"../skills/seed-design-cli/details/migration.md" with
"../../../../skills/seed-design-cli/SKILL.md",
"../../../../skills/seed-design-cli/details/usage.md", and
"../../../../skills/seed-design-cli/details/migration.md" respectively so the
doc-gen includes the actual files in skills/seed-design-cli.
| ```json doc-gen:file | ||
| { | ||
| "file": "../skills/seed-design-cli/SKILL.md", | ||
| "codeblock": true | ||
| } | ||
| ``` | ||
|
|
||
| ## details/usage.md | ||
|
|
||
| ```json doc-gen:file | ||
| { | ||
| "file": "../skills/seed-design-cli/details/usage.md", | ||
| "codeblock": true | ||
| } | ||
| ``` | ||
|
|
||
| ## details/migration.md | ||
|
|
||
| ```json doc-gen:file | ||
| { | ||
| "file": "../skills/seed-design-cli/details/migration.md", | ||
| "codeblock": true | ||
| } | ||
| ``` |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify that the doc-gen:file relative paths resolve to actual files
echo "=== Searching for SKILL.md files ==="
fd "SKILL.md" --type f
echo ""
echo "=== Searching for usage.md under seed-design-cli ==="
fd "usage.md" --type f | grep seed-design-cli
echo ""
echo "=== Searching for migration.md under seed-design-cli ==="
fd "migration.md" --type f | grep seed-design-cli
echo ""
echo "=== Directory structure around ai-integration ==="
find docs/content/ai-integration/ -type f 2>/dev/null | head -30 || echo "docs/content/ai-integration not found"
echo ""
echo "=== Check if skills dir exists at repository root ==="
ls -la skills/ 2>/dev/null | head -20 || echo "No skills/ directory found at repo root"
echo ""
echo "=== Check the actual file we're reviewing ==="
ls -la "docs/content/ai-integration/(skills)/cli.mdx" 2>/dev/null || echo "File not found at that path"Repository: daangn/seed-design
Length of output: 1997
doc-gen:file 상대 경로가 올바르지 않아 파일을 찾을 수 없습니다.
이 파일은 docs/content/ai-integration/(skills)/cli.mdx에 위치하며, "../skills/seed-design-cli/SKILL.md" 경로는 docs/content/ai-integration/skills/seed-design-cli/SKILL.md로 해석됩니다. 그러나 실제 스킬 소스 파일들은 리포지토리 루트의 skills/seed-design-cli/ 디렉토리에 위치합니다:
skills/seed-design-cli/SKILL.mdskills/seed-design-cli/details/usage.mdskills/seed-design-cli/details/migration.md
현재 경로들을 올바르게 수정하려면 ../../../../skills/seed-design-cli/ 형태로 변경해야 합니다.
🤖 Prompt for AI Agents
In `@docs/content/ai-integration/`(skills)/cli.mdx around lines 30 - 53, The
doc-gen:file relative paths in cli.mdx are incorrect causing missing files;
update the three entries that currently reference
"../skills/seed-design-cli/..." to use the repository-root relative path by
replacing each "../skills/seed-design-cli/SKILL.md",
"../skills/seed-design-cli/details/usage.md", and
"../skills/seed-design-cli/details/migration.md" with
"../../../../skills/seed-design-cli/SKILL.md",
"../../../../skills/seed-design-cli/details/usage.md", and
"../../../../skills/seed-design-cli/details/migration.md" respectively so the
doc-gen includes the actual files in skills/seed-design-cli.
Summary
seed-design-cliskill source underskills/seed-design-cli.agents/skills/seed-design-cliAI Integration > Skillsdocs section with a dedicated CLI skill pagenpx skills add https://github.com/daangn/seed-design --skill seed-design-cliFiles+doc-gen:fileChanged Files
docs/content/ai-integration/index.mdx,docs/content/ai-integration/meta.jsondocs/content/ai-integration/skills/meta.json,docs/content/ai-integration/skills/index.mdx,docs/content/ai-integration/skills/cli.mdxskills/seed-design-cli/SKILL.md,skills/seed-design-cli/details/usage.md,skills/seed-design-cli/details/migration.md.agents/skills/seed-design-cli/*Validation
bun generate:all❌ failed in local env (rootagecommand not found)bun test:all❌ failed in local env (pre-existing module resolution errors like@seed-design/dom-utils)bun --filter @seed-design/docs build❌ blocked by sandbox network restriction (fonts.googleapis.comunreachable)Summary by CodeRabbit
문서 업데이트