Agent Skills
› leamsigc/ShortsGenerator
› onboard
onboard
GitHub该技能用于快速上手并分析工作流代码库。通过扫描项目结构、阅读关键配置文件及文档,检查每个工作流的实现状态和测试情况,并结合Git记录提供项目整体状态的详细摘要。
Trigger Scenarios
需要了解新项目或代码库的整体结构和当前状态
需要获取工作流项目的概览、已部署情况及待办事项
Install
npx skills add leamsigc/ShortsGenerator --skill onboard -g -y
SKILL.md
Frontmatter
{
"name": "onboard",
"description": "Onboard into this workflows codebase and provide a summary of its current state"
}
Onboard into this workflows codebase and provide a summary of its current state.
Steps
-
Scan the project structure
- List all top-level files and directories
- List all workflows in
workflows/ - List all plans in
.agent/plans/
-
Read key files
CLAUDE.md— project conventions and rulesCATALOG.md— workflow index and statusREADME.md— project overviewrequirements.txt— shared Python dependencies.env.example— shared environment variables
-
For each workflow in
workflows/:- Read its
README.mdfor what it does - Check if it has tests
- Note its deploy target and current state
- Read its
-
Check git state (if git is initialized)
git status— any uncommitted changes?git log -5 --oneline— recent activity- Current branch
-
Provide a summary:
- What this project is (standalone workflows collection)
- How many workflows exist and their statuses (from CATALOG.md)
- Which workflows are planned but not yet built
- Which workflows are deployed
- Any uncommitted changes or work in progress
- Conventions to follow (from CLAUDE.md)
Version History
- 7b83166 Current 2026-08-29 02:31


