Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

openspec-task-loopopenspec 任务循环

Agent Skill

openspec-task-loop 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

973

周安装

39

GitHub Stars

68

下载量

315
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openspec-task-loop(openspec 任务循环)
来源仓库:https://github.com/luongnv89/skills
仓库路径:skills/openspec-task-loop
安装命令:
npx skills add https://github.com/luongnv89/skills --skill openspec-task-loop
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/luongnv89/skills --skill openspec-task-loop

简介

用于查找、检索和筛选相关信息,适合在主流 Agent 环境中按条件快速定位结果。

  • 支持根据关键词、任务类型或来源路径进行智能匹配与排序。
  • 通过 npx skills add 命令从 skills 仓库安装使用。
  • 使用前应核实权限级别与是否允许执行外部命令。
  • openspec-task-loop 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

OpenSpec Task Loop

Subagent Architecture

This skill uses a strictly sequential pipeline of subagents, where each iteration accumulates context and depends on the previous step. Pattern: E (Staged Pipeline) + C (Review Loop).

Agents

AgentRoleTrigger
spec-scaffolderCreate all OpenSpec artifacts (proposal.md, design.md, tasks.md, specs/)After task selection
implementerImplement scoped task, update checkboxes, run validationAfter spec scaffolding
verifierIndependently check quality gate: scope atomicity, acceptance criteria, spec-to-test alignmentAfter implementation complete
archiverMerge spec deltas, move to archive, update parent tasks.mdAfter verification passed

Sequential Dependency

  • No Parallelism: Step N+1 depends on Step N completion
  • Context Accumulation: Each agent reads previous artifacts and extends understanding
  • Quality Gates: Verifier ensures each stage is solid before proceeding

Why Sequential: Multiple task iterations (5-10) degrade reasoning quality significantly without this staged approach. Each step builds confidence and catches issues early.

Environment Check

Before executing:

  1. Verify git access to repository
  2. Confirm write permissions to openspec/ directory
  3. Check for existing task lists in project root (tasks.md)
  4. Ensure references/openspec-task-templates.md is available

Repo Sync Before Edits (mandatory)

Before creating/updating/deleting files in an existing repository, sync the current branch with remote:

branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"

If the working tree is not clean, stash first, sync, then restore:

git stash push -u -m "pre-sync"
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin && git pull --rebase origin "$branch"
git stash pop

If origin is missing, pull is unavailable, or rebase/stash conflicts occur, stop and ask the user before continuing.

Overview

Run OpenSpec as one task = one change. Keep scope tight, generate artifacts, implement, verify, and archive before moving to the next task.

Workflow Decision

  1. **If /opsx:* commands are supported in the current coding tool**: use native OPSX flow.
  2. If not supported: use manual fallback by creating files under openspec/changes/<change-id>/.

Core Loop (Single Task)

For each selected task from tasks.md:

  1. Select exactly one task

- Keep one atomic unit of value (usually 1–3 dev days). - If too large, split before proceeding.

  1. Create a task-scoped change

- Use change id format: task-<task-id>-<short-slug> (example: task-2-3-pin-crud).

  1. Plan with OpenSpec artifacts

- proposal.md: intent, scope, acceptance criteria, out-of-scope. - specs/.../spec.md: requirements and GIVEN/WHEN/THEN scenarios. - design.md: implementation approach and tradeoffs. - tasks.md: implementation checklist for this single task.

  1. Implement only this task scope

- Do not include unrelated refactors. - Update checkboxes as work completes.

  1. Verify before archive

- Validate completeness, correctness, coherence. - Fix critical mismatches before archive.

  1. Archive and sync

- Merge delta specs if needed. - Archive change folder. - Mark the parent project task complete.

Native OPSX Command Path

Use this sequence per task:

/opsx:new task-<task-id>-<slug>
/opsx:ff <change-id>          # or /opsx:continue for stepwise control
/opsx:apply <change-id>
/opsx:verify <change-id>
/opsx:archive <change-id>

Rules:

  • Prefer /opsx:continue when requirements are still unclear.
  • Prefer /opsx:ff when scope is clear and small.
  • If implementation reveals drift, update artifacts before continuing.

Manual Fallback Path (No /opsx Support)

If slash commands are unavailable:

  1. Ensure OpenSpec tree exists (openspec/changes, openspec/specs).
  2. Scaffold one change folder with:

- proposal.md - design.md - tasks.md - specs/<capability>/spec.md

  1. Read references/openspec-task-templates.md before scaffolding task artifacts.
  2. Implement task and update checkboxes.
  3. Run local validation/tests.
  4. Merge spec deltas into openspec/specs/ and move change to openspec/changes/archive/<date>-<change-id>/.

Quality Gate (must pass before archive)

  • Scope remained single-task and atomic
  • Acceptance criteria satisfied
  • Spec scenarios reflected in tests or executable checks
  • No unrelated files changed
  • Parent tasks.md updated with completion state
  • Archive note includes what changed and why

Output Format for Updates

When reporting progress, use:

Task: <id + title>
Change: <openspec change id>
Status: planning | implementing | verifying | archived
Done:
- ...
Next:
- ...
Risks/Notes:
- ...

Expected Output

For each completed task iteration you should see:

  • An OpenSpec change folder at openspec/changes/<change-id>/ containing proposal.md, design.md, tasks.md, and specs/<capability>/spec.md
  • Implemented code with all task checkboxes checked off
  • A verifier report confirming scope atomicity, acceptance criteria met, and spec-to-test alignment
  • The change folder moved to openspec/changes/archive/<date>-<change-id>/
  • Parent tasks.md updated with the completed task marked done
  • A progress report in the Output Format block showing Status: archived

Edge Cases

  • Task is too large: Split into smaller atomic subtasks (1–3 dev days each) before proceeding; do not start implementation on an oversized task.
  • No /opsx command support: Fall back to manual file scaffolding under openspec/changes/ and follow the Manual Fallback Path steps.
  • Missing references/openspec-task-templates.md: Warn the user and proceed with minimal artifacts; request the templates file to improve scaffold quality.
  • Verifier finds critical mismatch: Block archiving, surface the specific gap, and fix before re-verifying; never archive a failing quality gate.
  • Merge conflicts during rebase: Stop, surface the conflict to the user, and do not auto-resolve changes in spec or implementation files.
  • Tasks.md does not exist: Ask the user to provide or create a task list before entering the loop.

Step Completion Reports

After completing each major step, output a status report in this format:

◆ [Step Name] ([step N of M] — [context])
··································································
  [Check 1]:          √ pass
  [Check 2]:          √ pass (note if relevant)
  [Check 3]:          × fail — [reason]
  [Check 4]:          √ pass
  [Criteria]:         √ N/M met
  ____________________________
  Result:             PASS | FAIL | PARTIAL

Adapt the check names to match what the step actually validates. Use for pass, × for fail, and to add brief context. The "Criteria" line summarizes how many acceptance criteria were met. The "Result" line gives the overall verdict.

Selection (step 1 of 4)

◆ Selection (step 1 of 4 — task scoping)
··································································
  Task identified:        √ pass — task-2-3-pin-crud selected
  Scope bounded:          √ pass — 1-3 dev days, atomic unit
  Dependencies clear:     √ pass — no blockers in tasks.md
  [Criteria]:             √ 3/3 met
  ____________________________
  Result:                 PASS

Planning (step 2 of 4)

◆ Planning (step 2 of 4 — spec scaffolding)
··································································
  Spec artifacts created: √ pass — proposal.md, design.md, tasks.md, spec.md
  Implementation planned: √ pass — approach and tradeoffs documented
  [Criteria]:             √ 2/2 met
  ____________________________
  Result:                 PASS

Implementation (step 3 of 4)

◆ Implementation (step 3 of 4 — code delivery)
··································································
  Code written:           √ pass — all checkboxes updated
  Tests pass:             × fail — 1 unit test failing
  Scope respected:        √ pass — no unrelated files changed
  [Criteria]:             √ 2/3 met
  ____________________________
  Result:                 PARTIAL

Archive (step 4 of 4)

◆ Archive (step 4 of 4 — completion and sync)
··································································
  Artifacts synced:       √ pass — specs merged into openspec/specs/
  Quality gate passed:    √ pass — all 6 criteria met
  [Criteria]:             √ 2/2 met
  ____________________________
  Result:                 PASS

Resources

  • references/openspec-task-templates.md — proposal/spec/design/tasks templates for manual mode.
  • scripts/new_task_change.sh — optional scaffold script for manual mode.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

32.9%
按下载量换算104

Codex

32.58%
按下载量换算103

Cursor

16.94%
按下载量换算53

Gemini CLI

8.68%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills