소스 정보
- 저장소
- miles990/claude-software-skills
- 최근 소스 활동
- 2026년 1월 8일 02:34
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 20
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/miles990/claude-software-skills --skill auto-dev-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Enterprise-grade repository analysis with arc42/C4 architecture documentation, technical debt quantification, security assessment, and multi-stakeholder reporting
Claude Code Plugin 開發、發布、安裝、更新與 Marketplace 管理完整指南
Flame Engine core fundamentals - components, input, collision, camera, animation, scenes
SOC 직업 분류 기준
SKILL.md 표시 중
| name | auto-dev-setup |
| description | 設定 Auto-Dev workflow,實現 Human-in-the-Loop 自動化開發 |
| domain | tools-integrations |
| version | 1.0.0 |
| tags | ["github-actions","automation","workflow","ci-cd","human-in-the-loop"] |
| triggers | {"keywords":{"primary":["auto-dev","自動開發","human-in-the-loop","github actions workflow"],"secondary":["setup workflow","workflow automation","claude automation","agent workflow"]},"context_boost":["github","ci","automation","workflow"],"context_penalty":["frontend","ui","design"],"priority":"medium"} |
為任何專案設定 Human-in-the-Loop 自動開發流程。
當用戶說:
使用 AskUserQuestion 確認:
1. Workflow 來源
□ 使用 Reusable Workflow(推薦,自動更新)
□ 複製完整 Workflow(可自訂)
2. Skills 來源
□ 使用 claude-software-skills
□ 使用自己的 skills repo
□ 不使用額外 skills
3. 額外設定
□ 需要任務佇列(定時處理)
□ 需要 Feedback 處理(PR 上繼續迭代)
mkdir -p .github/workflows
mkdir -p .claude/memory/{learnings,failures,decisions,patterns,strategies}
mkdir -p .github/ISSUE_TEMPLATE
# .github/workflows/auto-dev.yml
name: 🤖 Auto-Dev
on:
issues:
types: [labeled]
issue_comment:
types: [created]
workflow_dispatch:
inputs:
goal:
description: '開發目標'
required: true
jobs:
auto-dev:
uses: {SKILLS_REPO}/.github/workflows/auto-dev-reusable.yml@main
with:
goal: ${{ github.event.inputs.goal || '' }}
secrets:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
替換 {SKILLS_REPO} 為實際的 repo 路徑。
從 claude-software-skills 複製:
.github/workflows/auto-dev.yml.github/workflows/auto-dev-feedback.yml.github/workflows/auto-dev-queue.yml# .github/ISSUE_TEMPLATE/auto-dev.yml
name: 🤖 Auto-Dev Task
description: 建立一個自動開發任務
labels: ["auto-dev"]
body:
- type: textarea
id: goal
attributes:
label: 目標
description: 描述開發目標
validations:
required: true
# .claude/memory/index.md
# 專案記憶索引
## 最近學習
<!-- LEARNINGS_START -->
<!-- LEARNINGS_END -->
## 失敗經驗
<!-- FAILURES_START -->
<!-- FAILURES_END -->
告知用戶:
請到 Repository Settings → Secrets → Actions
新增 ANTHROPIC_API_KEY
| 操作 | 方式 |
|---|---|
| 觸發自動開發 | Issue + auto-dev label |
| 命令觸發 | 留言 /evolve [目標] |
| 繼續迭代 | PR 上留言 /evolve [調整] |
| 手動觸發 | Actions → Run workflow |
設定完成後,建議:
auto-dev label