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

dev开发者

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zackbart/motif --skill dev

简介

开发者专属工具集与快捷命令封装。

  • 集成常用调试、构建与部署脚本。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持自定义插件扩展功能模块。dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 命令执行前应确认环境变量配置正确。
  • 敏感操作需二次确认防止误执行。

SKILL.md

Motif Development Workflow

You are running the motif workflow — a 5-stage development process. Research flows into Plan, which is the single approval gate. Once the plan is approved, Scaffold, Build, and Validate run autonomously.

Complexity Assessment

Before starting, assess task complexity on a 3-point scale:

  • Light (quick bug fix, small tweak, config change): abbreviated research, minimal planning, 1-3 tasks
  • Medium (feature addition, moderate refactor, new test coverage): standard research, full planning, 3-8 tasks
  • Heavy (large refactor, new system, architecture change): deep research, thorough planning with tradeoff analysis, 8+ tasks

State your assessment to the user before beginning Stage 1.


Approval Gate

The only pause point is after Stage 2 (Plan). Present the final plan (including critic triage if applicable) and ask:

Plan complete. [Brief summary of approach] - go — approve and execute (Scaffold → Build → Validate run autonomously) - redo — re-plan with feedback - stop — end here Or discuss — ask questions, raise concerns, suggest changes. The plan is updated through conversation until you're satisfied.

Do not auto-advance past the plan. Once approved, Stages 3-5 run without pausing.


Stage 1: Research

Read-only codebase exploration. Do not create, edit, or delete any files.

If a subagent capability is available (e.g., a dedicated research agent), delegate to it. Otherwise, perform research directly.

Depth Calibration:

  • Light: Find the 1-3 most relevant files. Check for obvious patterns. Minimize tool calls.
  • Medium: Map the relevant module structure, identify patterns, check test coverage, review recent git history.
  • Heavy: Comprehensive module mapping, dependency tracing, git archaeology, related test suites, documentation review, similar precedents.

Research Process:

  1. Orient — project structure (package.json, Cargo.toml, pyproject.toml, go.mod, etc.; top-level directories)
  2. Locate — find files relevant to the task
  3. Understand — read key files to understand current implementation
  4. Context — git history for recent changes (git log --oneline -20 -- <path>)
  5. Patterns — coding conventions, testing patterns, architectural decisions
  6. Toolchain — find the test, build, and lint commands so you can run them in later stages

Output:

  • Relevant Files — each with a 1-line description
  • Patterns & Conventions — how similar work is done in this codebase
  • Constraints — build/CI requirements, type system, linting rules
  • Toolchain — exact commands for test, build, lint
  • Risks — fragile areas, edge cases, missing coverage

Post-Research Clarification

After research completes, review the findings for open questions or ambiguities. If the research surfaced meaningful unknowns — multiple valid approaches, unclear scope, design choices that would change the plan — ask the user before proceeding to Plan. Use AskUserQuestion to present the questions concisely.

Skip this for light tasks or when research findings are clear and unambiguous. Don't ask questions you can answer from the codebase — this is for genuine unknowns that only the user can resolve.

After clarification (or if none is needed), proceed to Plan.


Stage 2: Plan

Using research findings, produce an implementation plan.

Output:

  • Approach — what will change and how (be specific about the technique, not just "modify X")
  • Files — which files will be created, modified, or deleted
  • Testing — what tests to write or update, how to verify correctness
  • Tradeoffs (medium/heavy only) — alternatives considered and why this approach wins

Scale depth to complexity. A light plan can be a few sentences. A heavy plan needs alternatives and risk assessment.

Critic Review (medium/heavy tasks)

After drafting the plan, run a critic pass to pressure-test it. Build a complete briefing — the critic starts cold with zero context:

  1. The plan — your full approach with specific files, functions, and techniques
  2. Assumptions — what you're taking for granted
  3. Project context — language, framework, relevant patterns from Research
  4. File paths — every file the plan touches or depends on

Choosing the critic:

First, check whether Codex CLI is available and authenticated:

command -v codex >/dev/null 2>&1 && (test -f ~/.codex/auth.json || test -n "$OPENAI_API_KEY")
  • If available: tell the user Using Codex (gpt-5.4) for critic review. and spawn the codex-critic subagent with the full briefing.
  • If not available: tell the user Codex not found — using built-in critic. and spawn the critic subagent with the full briefing.

Present the raw critique to the user, then triage each point:

  • ACCEPT — the critique is valid. State the specific change to the plan.
  • REJECT — the critique doesn't hold. Provide evidence from the codebase.

Update the plan with accepted changes before presenting at the pause point.

For light tasks, skip the critic — the overhead isn't worth it.


Stage 3: Scaffold

Decompose the plan into a task list. Each task should be a single, verifiable unit of work.

Use the available task tracking tools (TaskCreate, TaskUpdate, etc.) to create and manage tasks.

  • Set dependencies where order matters
  • Include test tasks alongside the code they verify (not as a separate "write all tests" task)
  • Final task: validate the overall goal

After scaffolding, proceed directly to Build.


Stage 4: Build

This stage runs autonomously. Work through tasks in order without stopping for approval on each one.

For each task:

  1. Mark in-progress
  2. Implement the change
  3. If tests are part of this task, write and run them
  4. Mark completed

Parallel execution (medium/heavy tasks)

When the task list contains independent tasks with no dependencies between them, spawn subagents to work on them concurrently. Each subagent gets:

  • The specific task(s) to complete
  • The plan context relevant to those tasks
  • The patterns and conventions from Research

Keep dependent tasks sequential. For light tasks, just work through them one at a time — the parallelism overhead isn't worth it.

When to stop and ask

  • A task requires a design decision not covered by the plan
  • Tests fail in a way that suggests the plan is wrong (not just a typo)
  • You discover the plan missed something significant

For routine issues (lint errors, minor test fixes, small deviations), handle them and keep going. Use your judgment — the plan is a guide, not a contract.

After all tasks complete, proceed directly to Validate.


Stage 5: Validate

Run automatically after Build completes.

Spawn the validator subagent to independently audit the completed work. Build a complete briefing:

  1. Original task description — what was supposed to be accomplished
  2. The plan — the approach that was agreed on
  3. Task list — the decomposed units of work and their status
  4. Changed files — which files were created, modified, or deleted
  5. Toolchain — test, build, and lint commands from Research

The validator reads every changed file, checks the diff, runs tests, traces callers for regressions, and returns a structured report with a verdict (PASS / PASS WITH NOTES / ISSUES FOUND).

Present the validator's report to the user. If issues are found:

  • fix + details → go back to Build for targeted fixes
  • done → accept current state

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.98%
按下载量换算27

Claude

27.39%
按下载量换算20

Cursor

20.27%
按下载量换算15

Gemini CLI

9.24%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/zackbart/motif --skill dev 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills