用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill create-project命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | create-project |
| description | Create a new project folder with standard tracking structure |
| user-invocable | true |
| argument-hint | <project-name> |
| allowed-tools | Read, Write, Bash |
Create a new project folder with standard tracking structure.
$ARGUMENTS - The project name (will be converted to kebab-case)
Convert to kebab-case:
Read projects/PROJECT_INDEX.md and check if project exists.
If exists:
mkdir -p "projects/$PROJECT_NAME"
Write projects/$PROJECT_NAME/README.md:
# Project: [Project Name]
**Created**: [Today's date]
**Status**: active
## Overview
[Description to be filled in]
## Goals
- [ ] Define project goals
## Key Files
(none yet)
## Related
- Links to related projects or resources
Write projects/$PROJECT_NAME/STATUS.md:
# Status: [Project Name]
**Current Status**: active
**Last Updated**: [Today's date]
## Current Focus
Project just created - define initial scope and goals.
## Next Steps
1. [ ] Define project scope
2. [ ] Identify key deliverables
3. [ ] Create initial files
## Blockers
None
## Progress Log
- [Today's date]: Project created
Write projects/$PROJECT_NAME/DECISIONS.md:
# Decisions: [Project Name]
Log of significant decisions with context and rationale.
## Decision Log
| Date | Decision | Rationale | Outcome |
|------|----------|-----------|---------|
| [Today] | Created project | [reason] | Project initialized |
Append to projects/PROJECT_INDEX.md:
| [project-name] | active | [Today] | [Today] | [Brief description] |
Tell user:
projects/[name]/