用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill setup-projects命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generate an agent-specific `/update-dashboard` skill that keeps `dashboard.yaml` current for Trinity. Analyzes the agent's purpose and data sources, proposes metrics, gets user approval, then scaffolds a schedulable skill.
Modify an existing playbook based on conversation context or explicit instructions. Use when user wants to update, fix, extend, or refine a playbook they already have.
Create a new skill or playbook. Guides through requirements gathering and generates the appropriate template based on complexity.
基于 SOC 职业分类
正在显示 SKILL.md
| name | setup-projects |
| description | Initialize project and session management structure with CLAUDE.md integration |
| user-invocable | true |
| allowed-tools | Read, Write, Bash, AskUserQuestion |
Initialize project and session management for organized multi-session work.
Use AskUserQuestion:
Question 1: "Where should projects be stored?"
Question 2: "Where should session files be stored?"
mkdir -p projects
mkdir -p sessions
Write projects/PROJECT_INDEX.md:
# Project Index
Central registry of all projects.
| Project | Status | Created | Last Active | Description |
|---------|--------|---------|-------------|-------------|
| (none yet) | - | - | - | - |
## Status Legend
- **active** - Currently being worked on
- **paused** - On hold, will resume
- **completed** - Finished, archived
- **archived** - No longer relevant
Write sessions/SESSION_INDEX.md:
# Session Index
Date-based session tracking.
| Date | Focus | Projects Touched | Key Outcomes |
|------|-------|------------------|--------------|
| (none yet) | - | - | - |
## Session Folder Format
`YYYY-MM-DD_brief-description/`
## Contents
Each session folder contains work artifacts from that date:
- Drafts and work-in-progress
- Research notes
- Temporary files
- Session summary (optional)
Write projects/.project-template/:
.project-template/
├── README.md # Project overview
├── STATUS.md # Current status and next steps
├── DECISIONS.md # Decision log
└── .gitkeep
README.md template:
# Project: ${PROJECT_NAME}
## Overview
[Brief description of the project]
## Goals
- [ ] Goal 1
- [ ] Goal 2
## Key Files
- `file1.ext` - Description
- `file2.ext` - Description
## Related
- [[Link to related project]]
STATUS.md template:
# Status: ${PROJECT_NAME}
**Current Status**: active | paused | completed
**Last Updated**: YYYY-MM-DD
## Current Focus
[What we're working on now]
## Next Steps
1. [ ] Step 1
2. [ ] Step 2
## Blockers
- None
## Recent Progress
- YYYY-MM-DD: [What was done]
Add comprehensive project management instructions:
## Project & Session Management
Organized structure for multi-session work.
### Directory Structure
- `projects/[project-name]/` - Project folders with tracking
- `sessions/YYYY-MM-DD_description/` - Date-based session work
### Project Folder Structure
Each project MUST contain:
- `README.md` - Project overview and goals
- `STATUS.md` - Current status, next steps, blockers
Optional:
- `DECISIONS.md` - Decision log with rationale
- `docs/` - Documentation
- `src/` - Source code/content
### Session Folders
For temporary work, drafts, and daily artifacts:
- Create: `sessions/YYYY-MM-DD_brief-topic/`
- Store: Work-in-progress, research, temporary files
- Clean: Move final outputs to projects, delete temp files
### What Goes Where
**Projects folder** (persistent, tracked):
- Deliverables and final outputs
- Project documentation
- Code and content being developed
- Status tracking and decisions
**Sessions folder** (temporary, date-based):
- Daily work artifacts
- Research and exploration
- Drafts before they're ready
- Scratch files and experiments
### Commands
- `/create-project <name>` - New project
- `/create-session [topic]` - Today's session folder
- `/archive-project <name>` - Archive completed project
### Rules
NEVER store project files in sessions/ - they belong in projects/
ALWAYS update STATUS.md when working on a project
Check PROJECT
Report:
projects/ ready for project folderssessions/ ready for date-based work/create-project <name> to start