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

plan-to-task-list-with-dag用 dag 计划任务列表

Agent Skill

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

总安装

1,357

周安装

56

GitHub Stars

公开资料未说明

下载量

444
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill plan-to-task-list-with-dag

简介

plan-to-task-list-with-dag 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息检索与筛选的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Non-negotiable rules:

  1. Start with scope challenge and mode selection using AskUserQuestion.
  2. Explore existing code before decomposing. Never invent file paths.
  3. Build one canonical plan object, then emit both markdown and JSON from it.
  4. Every task must have explicit ownership, validation, dependency handling, and an Agent field.
  5. Keep the skill body focused on workflow. Load plan schema, agent mapping, and examples from references.
  6. Every task needs 2-3 testable acceptance criteria, at least one covering a failure or edge case.
  7. Never create tasks touching more than 3 files, never create circular dependencies, never assume codebase structure.
  8. If a task claims side effects (persistence, WAL, network I/O, registration), state where the capability comes from.
  9. For new files, explicitly assign export/registration/wiring ownership to a task.
  10. If a task can be "completed" with placeholders or dead wiring, split semantic hardening into an explicit follow-up.
  11. Treat JSON as the source of truth. Render markdown from the same canonical plan object.
  12. Do not use vague contract language ("internal update", "eventually skipped", "graceful degradation") without defining owner, behavior, and recovery.
  13. Distinguish local reuse from external references. Do not present external docs or clones as local code.

Plan To Task List With DAG

Inputs

  • $request: Optional feature or planning request text

Goal

Produce a concrete task DAG that is safe to execute:

  • scope-challenged
  • grounded in real repository structure
  • atomic enough for parallel work
  • persisted to .ulpi/plans/<plan-name>.md and .ulpi/plans/<plan-name>.json

Step 0: Challenge scope before planning

Before decomposing, do a quick overlap check:

  • prefer the codemap skill if available for semantic search
  • otherwise use Glob, Grep, and Read

Identify:

  • what already exists
  • what can be reused
  • what is truly new
  • likely prerequisites
  • likely non-goals
  • whether the request is small enough to execute directly instead of planning

Then use AskUserQuestion to confirm:

  • planning mode: EXPANSION, HOLD, or REDUCTION
  • default post-task review: claude, codex, kiro, all, or none
  • any scope cuts or explicit non-goals

Do not proceed until the scope framing is confirmed.

Success criteria: The user has confirmed the scope, selected a planning mode, and chosen a default review posture.

Step 1: Explore the real code surface

Explore the repository before writing any task:

  • likely modules and directories involved
  • existing code that partially solves the request
  • shared integration surfaces:

- package roots - export barrels - registries - routers - manifests - startup hooks

  • public surfaces:

- API routes - CLI commands - config files - schemas - persisted formats

Rules:

  • prefer semantic search via codemap skill when available
  • use Grep for exact-string validation
  • use Read on the actual files before naming them in tasks
  • never invent paths, modules, or existing helpers

Success criteria: Every path named in the plan comes from observed repository state.

Step 2: Capture planning contracts

Before tasking, record the conditions that make the plan valid:

  • prerequisites
  • non-goals
  • cross-boundary contracts
  • capability providers for side effects
  • shared integration points
  • ship cut if execution stops halfway

Explicitly note:

  • where persistence comes from
  • who owns export and registration edits
  • which public surfaces must remain stable
  • which failure paths or isolation invariants must be preserved

Success criteria: The plan explains what must already be true and what is explicitly out of scope.

Step 3: Decompose into atomic tasks

Create tasks that are:

  • atomic
  • file-scoped
  • dependency-aware
  • reviewable

Task rules:

  • prefer 1 to 3 files per task
  • every file in writeScope must have an explicit role
  • every task needs:

- TASK-NNN id - title - description - Type - Priority - Effort - Agent (see Agent Selection Reference in references/output-format.md) - acceptance criteria - writeScope - validateCommand

  • include 2-3 testable acceptance criteria per task; at least one must cover a failure or edge case
  • for public surfaces, pin the exact signature/examples and add a wrong-shape or wrong-routing check
  • for rewrite or composition tasks, add at least one criterion proving existing semantics were not silently dropped
  • if a new file needs export or registration, assign that ownership to a specific task
  • if a task only creates structure and semantic hardening is still needed, split that follow-up explicitly

Success criteria: Each task is executable without hidden context and small enough for independent review.

Step 4: Map dependencies and maximize parallelism

Add dependencies only when they are real:

  • file overlap
  • data flow
  • API contract
  • shared integration surface
  • capability provider
  • lifecycle or bootstrap dependency

Do not over-constrain:

  • independent tasks should stay parallel
  • shared-file edits should be made explicit rather than hidden
  • circular dependencies are invalid

Use P0 through P3 priorities:

  • P0: foundations that unblock other tasks
  • P1: core feature work
  • P2: supporting work and edge cases
  • P3: optional polish, docs, or cleanup

Success criteria: The dependency graph is acyclic, minimal, and exposes real parallel layers.

Step 5: Render markdown and JSON from one canonical plan object

Before writing output, load references/output-format.md.

Write both files:

  • .ulpi/plans/<plan-name>.md
  • .ulpi/plans/<plan-name>.json

Requirements:

  • markdown and JSON must describe the same tasks
  • task ids must match exactly in both files
  • dependency JSON is the source of truth
  • markdown must not contain [PLAN] markers on disk

Success criteria: Both artifacts exist and describe the same DAG.

Step 6: Validate before finishing

Run a final structural pass:

  • all task ids exist in markdown and JSON
  • every dependency target exists
  • no cycles
  • no phantom file paths
  • no task exceeds sensible write scope
  • acceptance criteria include edge or failure behavior where needed
  • review default is present

Load references/examples.md only if you need a pattern for presentation shape.

Success criteria: The plan is schedulable, internally consistent, and ready for execution.

Guardrails

  • Do not skip AskUserQuestion-based scope challenge.
  • Do not turn this into direct implementation.
  • Do not invent existing files, helpers, or package boundaries.
  • Do not keep giant examples or output templates inline in SKILL.md.
  • Do not add paths:. This is a generic workflow skill.
  • Do not add context: fork. This workflow depends on user interaction mid-process.
  • Do not introduce agent-only headers.
  • Do not create tasks that touch more than 3 files.
  • Do not over-constrain dependencies -- independent tasks must stay parallel.
  • Do not hide required shared-file edits behind narrow write scopes.
  • Do not let a task claim side effects that require capabilities the task never defines.
  • Do not present external docs, clones, or web research as local code unless the path exists in the repo.
  • Do not use P1-P4 priorities. This skill uses P0-P3.
  • Do not hand-maintain counts, layer summaries, or dependency references separately between JSON and markdown -- derive from canonical plan object.

When To Load References

  • references/personality.md Use at session start for role, expertise, traits, and communication style.
  • references/knowledge.md Use for DAG semantics, parser assumptions, and plan-object knowledge.
  • references/output-format.md Use before rendering final markdown and JSON artifacts.
  • references/examples.md Use only when you need an example shape for a similar request.

Output Contract

Report:

  1. selected mode and review default
  2. plan file paths
  3. task count and critical path summary
  4. major prerequisites and non-goals
  5. any notable risks or cut-line decisions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.7%
按下载量换算172

Claude

29.64%
按下载量换算132

Cursor

17.35%
按下载量换算77

Gemini CLI

8.86%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills