Skip to content
Skillv1.0.0

goskill

GoSkill - Let your Skill keep running until goal achieved. Continuous execution (100+ hours) with automatic verification. Goal-driven: Master monitors, Sub executes until success criteria met. Best fo

by AIPMAndy(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from AIPMAndy/goskill (SKILL.md). Install upstream with npx skills add AIPMAndy/goskill. Copyright stays with the author (Apache-2.0).

GoSkill

让 Skill 持续运行,直到目标达成

核心概念

GoSkill = 普通 Skill 的增强版

普通 Skill GoSkill
一问一答 持续运行 100+ 小时
容易放弃 不达目标不停止
质量不稳定 严格按标准验证
被动响应 主动推进直到成功

使用方式

方式1:装饰器(推荐)

from goskill import goskill

@goskill(
    goal="将项目从 Android 迁移到鸿蒙",
    criteria={
        "compile": "0 errors",
        "test": "100% pass",
        "performance": ">= 90%"
    }
)
def my_task():
    # 你的任务逻辑
    pass

my_task()  # 持续运行直到达标

方式2:直接调用

from goskill import GoSkill

skill = GoSkill(
    goal="分析1000份财报",
    criteria={
        "coverage": "100%",
        "accuracy": ">= 95%",
        "report": "complete"
    }
)

skill.run()  # 开始持续执行

工作原理

你设定目标 + 成功标准
    ↓
Master Agent 创建 Subagent
    ↓
Subagent 持续工作
    ↓
每5分钟验证进度
    ↓
达标 → 停止,交付结果
不达标 → 继续工作
    ↓
循环直到成功

适用场景

完美适合:

  • 大型代码重构/迁移
  • 复杂系统架构设计
  • 深度数据分析(1000+文件)
  • 长期研究项目
  • 自动化测试覆盖

不适合:

  • 简单的问答对话
  • 一次性的小任务
  • 没有明确成功标准的任务

示例

示例1:代码迁移

@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

示例2:数据分析

@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

  • 复杂任务可能需要运行数小时甚至数天
  • 确保你有足够的API额度
  • 我会定期汇报进度

⚠️ 需要明确的成功标准

  • 目标必须清晰可验证
  • 标准必须量化
  • 不能是模糊的要求

现在就可以用

我已经安装了这个Skill,你可以直接说:

"圆圆,用GoSkill模式,帮我完成XXX,成功标准是YYY"

我会自动进入持续工作模式,不达目标不停止!

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/aipmandy-goskill-goskill/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

aipmandy-goskill-goskill.ocm.jsonjson
{
  "ocm": "1",
  "id": "aipmandy-goskill-goskill",
  "kind": "skill",
  "name": "goskill",
  "description": "GoSkill - Let your Skill keep running until goal achieved. Continuous execution (100+ hours) with automatic verification. Goal-driven: Master monitors, Sub executes until success criteria met. Best for: complex coding, system design, large-scale refactoring.",
  "publisher": "AIPMAndy",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "math"
    ],
    "tags": [
      "skill-md",
      "goskill",
      "long-running",
      "goal-driven",
      "persistence",
      "complex-tasks",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "GoSkill - Let your Skill keep running until goal achieved. Continuous execution (100+ hours) with automatic verification. Goal-driven: Master monitors, Sub executes until success criteria met. Best for: complex coding, system design, large-scale refactoring."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/AIPMAndy/goskill",
      "path": "SKILL.md",
      "ref": "9731ba41378164ba8153f5062bace4cc82c3e05f",
      "url": "https://github.com/AIPMAndy/goskill/blob/9731ba41378164ba8153f5062bace4cc82c3e05f/SKILL.md",
      "key": "AIPMAndy/goskill/SKILL.md"
    },
    "license": "Apache-2.0"
  },
  "instructions": "# GoSkill\n\n> 让 Skill 持续运行,直到目标达成\n\n## 核心概念\n\n**GoSkill = 普通 Skill 的增强版**\n\n| 普通 Skill | GoSkill |\n|-----------|---------|\n| 一问一答 | 持续运行 100+ 小时 |\n| 容易放弃 | 不达目标不停止 |\n| 质量不稳定 | 严格按标准验证 |\n| 被动响应 | 主动推进直到成功 |\n\n## 使用方式\n\n### 方式1:装饰器(推荐)\n\n```python\nfrom goskill import goskill\n\n@goskill(\n    goal=\"将项目从 Android 迁移到鸿蒙\",\n    criteria={\n        \"compile\": \"0 errors\",\n        \"test\": \"100% pass\",\n        \"performance\": \">= 90%\"\n    }\n)\ndef my_task():\n    # 你的任务逻辑\n    pass\n\nmy_task()  # 持续运行直到达标\n```\n\n### 方式2:直接调用\n\n```python\nfrom goskill import GoSkill\n\nskill = GoSkill(\n    goal=\"分析1000份财报\",\n    criteria={\n    ",
  "cost": {
    "context_tokens": 473
  }
}

Fetch it by URL: GET /api/v1/registry/aipmandy-goskill-goskill/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.