用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill goskill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
| name | goskill |
| description | | Use when this capability is needed. |
让 Skill 持续运行,直到目标达成
GoSkill = 普通 Skill 的增强版
| 普通 Skill | GoSkill |
|---|---|
| 一问一答 | 持续运行 100+ 小时 |
| 容易放弃 | 不达目标不停止 |
| 质量不稳定 | 严格按标准验证 |
| 被动响应 | 主动推进直到成功 |
from goskill import goskill
@goskill(
goal="将项目从 Android 迁移到鸿蒙",
criteria={
"compile": "0 errors",
"test": "100% pass",
"performance": ">= 90%"
}
)
def my_task():
# 你的任务逻辑
pass
my_task() # 持续运行直到达标
from goskill import GoSkill
skill = GoSkill(
goal="分析1000份财报",
criteria={
"coverage": "100%",
"accuracy": ">= 95%",
"report": "complete"
}
)
skill.run() # 开始持续执行
你设定目标 + 成功标准
↓
Master Agent 创建 Subagent
↓
Subagent 持续工作
↓
每5分钟验证进度
↓
达标 → 停止,交付结果
不达标 → 继续工作
↓
循环直到成功
✅ 完美适合:
❌ 不适合:
@goskill(
goal="将AIFireHome从Android迁移到鸿蒙",
criteria={
"compile": "0 errors, 0 warnings",
"test": "100% pass rate",
"performance": ">= 90% of original",
"docs": "API documentation complete"
},
max_hours=100
)
def migrate_aifirehome():
# 自动持续执行,直到所有标准达标
pass
@goskill(
goal="分析过去5年AI行业投资趋势",
criteria={
"coverage": "Top 500 companies",
"insights": "10 high-potential tracks identified",
"strategy": "executable investment strategy",
"backtest": "annual return > 20%"
}
)
def analyze_ai_investment():
# 持续分析直到达标
pass
⚠️ 这会消耗大量时间和Token
⚠️ 需要明确的成功标准
我已经安装了这个Skill,你可以直接说:
"圆圆,用GoSkill模式,帮我完成XXX,成功标准是YYY"
我会自动进入持续工作模式,不达目标不停止!
Source: AIPMAndy/goskill — distributed by TomeVault.