Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

autocraftautocraft 命令行

Agent Skill

autocraft 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

442

周安装

19

GitHub Stars

公开资料未说明

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sunfmin/autocraft --skill autocraft

简介

autocraft 是多 Agent 协作框架,包含 Analyst、Builder、Tester 和 Inspector 四个角色分工明确的智能体。

  • Analyst 负责与用户沟通并更新 spec.md,Builder 实现功能但不自测或提交代码,Tester 分探索与回归两种模式工作。
  • 强调人类在环流程,所有关键决策需经人工审核,避免完全自主带来的风险。
  • 适用于复杂系统开发项目,通过结构化分工提升交付质量与可追溯性。
  • autocraft 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Autocraft

Five agents. Strict roles. No self-grading. Human in the loop.

Human ◄──► Analyst (foreground agent)
               │
               ├──► spec.md (writes/updates)
               ├──► .autocraft/feedback-log.md (routes feedback)
               │
               ▼
           Orchestrator (you) ──► Builder (background agent)
                              ──► Tester (background agent)
                              ──► Inspector (foreground agent)

The Analyst talks to the human, collects feedback, writes and updates spec.md, and routes actionable feedback to the right agent. → analyst.md The Builder implements features but CANNOT write tests, review its own work, grade itself, or commit. → builder.md The Tester works in two modes — Mode A writes assertion-based integration tests; Mode B sharpens a journey.md scenario and spawns a separate Claude instance to run it with vision. Cannot modify production code. → tester.md The Inspector audits both modes — forensic code scans for Mode A, journey-structure scans + screenshot-evidence review for Mode B. Only the Inspector can set "polished." → inspector.md The Orchestrator routes each acceptance criterion by mode ("verify needs eyes on screen?" → Mode B; observable state → Mode A; hybrid → both) and commits only when the Inspector approves. → orchestrator.md

Why this separation matters: A builder who writes their own tests optimizes for tests that pass — not for tests that prove features work. A separate tester reads the contract, exercises the pipeline, and checks what came out. If the output is wrong, they write a failing test — and the builder has to make it pass.


When to Use

  • Building a new app or feature set from a spec with multiple acceptance criteria
  • You want automated, verified proof that every criterion is met — Mode B journey (markdown scenario executed by Claude with vision) for UI-visible criteria; Mode A integration tests (assertion-based) for observable-state criteria (API responses, file contents, exit codes)
  • The project needs real implementations (not stubs) with independent test verification
  • Consolidating or refactoring tests into scenario-based integration tests
  • Building or testing CLI tools, libraries, or APIs where data pipeline correctness matters
  • You have a spec.md (or gist) describing requirements and acceptance criteria

When NOT to Use

  • Single-file bug fixes — just fix the bug directly
  • Quick prototyping where stubs are acceptable
  • No spec yet — start with the Analyst step or write spec.md first

Criterion Mode

Every acceptance criterion is routed by the Orchestrator (see Step 6 "Mode routing rule"):

  • Mode A (integration-test-contract.md) — verification is about observable state: API payloads, file contents, DB rows, exit codes
  • Mode B (journey.md) — verification requires eyes on screen: layout, toasts, modals, visual regressions, crash-free interactions
  • Hybrid — both matter; both artifacts generated, both must pass

Behavior follows from the routed criteria, not from a project-level flag:

  • If no criterion routes to Mode B, no journey.md is drafted (Step 6 produces nothing).
  • If no criterion routes to Mode A, no integration-test-contract.md is drafted (Step 7 produces nothing).
  • If the task has no production code changes (e.g., pure test refactoring), the Builder is skipped.
  • The Inspector runs only the scans relevant to the artifacts that exist.

Inputs

Special command: If $ARGUMENTS is init, run the init flow instead of the build loop:

  1. Copy {skill-base-dir}/claude-md-template.md to CLAUDE.md in the user's project root
  2. Create .autocraft/ directory if it doesn't exist
  3. Tell the user: "Analyst is now always-on in this project. Just talk naturally — I'll handle specs, feedback routing, and build triggers automatically."
  4. Do not start the build loop. Return immediately.

If CLAUDE.md already exists, append the Analyst section under a # Autocraft Analyst heading instead of overwriting.


Spec source: $ARGUMENTS (defaults to spec.md in current directory)

Gist support: If $ARGUMENTS is a GitHub gist URL or gist ID, the spec lives in the gist instead of a local file.

Detection rules:

  • Starts with https://gist.github.com/ → gist URL. Extract gist ID from the last path segment.
  • Matches /^[a-f0-9]{20,}$/ → bare gist ID.
  • Otherwise → local file path.
# Read spec from gist
gh gist view <gist-id> -f spec.md

# Update spec in gist (Analyst only) — non-interactive
gh api --method PATCH /gists/<gist-id> \
  -f "files[spec.md][content]=$(cat /tmp/spec-updated.md)"

# If gist has no file named spec.md, list files first:
gh gist view <gist-id> --files

Error handling: If gh gist view fails, print the error, ask the user to verify the gist URL and run gh auth status, and do not proceed until the spec is readable.

The Orchestrator detects the source type at startup and stores it in .autocraft/journey-loop-state.md as Spec source: gist:<gist-id> or Spec source: file:<path>. All agents read the spec through a consistent method — the Orchestrator fetches the latest content and includes it in each agent's prompt. The Analyst writes spec updates to a temp file then pushes via gh api.


Shared State Files

FileWritten byRead by
.autocraft/journeys/*/Builder (code), Tester (tests/journey artifacts)Inspector, Orchestrator
.autocraft/journeys/*/journey.mdOrchestrator (drafts skeleton), Tester (sharpens locators/waits/Pass clauses)Journey executor (Claude instance), Inspector
.autocraft/journeys/*/integration-test-contract.mdOrchestratorTester (implements as code), Inspector (validates)
.autocraft/journeys/*/screenshots/Mode B journey executorInspector (Phase 1B evidence check + Phase 2c sanity review)
.autocraft/journey-state.mdTester (needs-review), Inspector (polished/needs-extension)All
.autocraft/journey-refinement-log.mdInspectorOrchestrator
.autocraft/journey-loop-state.mdOrchestratorOrchestrator (resume)
AGENTS.md (repo root)InspectorBuilder, Tester (each restart)
.autocraft/feedback-log.mdAnalystOrchestrator, Builder, Tester, Inspector

Playbooks

Playbooks are platform-specific knowledge bases that live inside this skill at skills/autocraft/playbooks/. The Orchestrator reads them once per invocation and injects the content directly into each agent's prompt (see orchestrator.md Step 2). No network, no gist — just files.

Projects can override the path via a .autocraft file at repo root ("playbooks_path": "tools/my-playbooks/"). See playbooks.md for the registry format, entry format, and how to add or update a platform.


Orchestrator Protocol

The full 12-step orchestrator protocol — including agent launch directives, mode routing, journey drafting, integration contract generation, compliance validation, and the build loop — is in orchestrator.md.


Common Mistakes

MistakeFix
Mode A contract assertions too strict for current implementation stageWrite contracts that match what's testable now, tighten in later iterations
Mode B journey PASS clause too vague ("looks right")Inspector's Scan B3 auto-rejects. Rewrite to name a specific element, exact text, or property value that the executor can verify
Screenshots show permission dialogsRun /preflight-permissions first to grant all TCC permissions
Loop stalls with no progress for multiple iterationsStall detection: if no changes for 2 iterations, re-launch with Inspector's last failure list
Playbook file missing or path resolves nowhereCheck playbooks/registry.json and .autocraft override path; the Orchestrator warns and runs without playbooks, but agent quality drops

Optional External Skills

These skills enhance autocraft but are not required. If not installed, autocraft works without them.

SkillUsed byPurpose
driving-macos-with-wda-visionMode B journey executor (spawned by Tester)macOS UI automation via WebDriverAgentMac + Appium + vision. Required for Mode B journeys on macOS apps.
Playwright MCPMode B journey executor (spawned by Tester)Browser UI automation for web apps. Required for Mode B journeys on web projects.
/frontend-designInspector (via Orchestrator)Design principles for Mode B screenshot review. If missing, Inspector uses general design judgment.
/attack-blockerBuilderStructured approach to resolving permission/hardware blockers. If missing, Builder reports blockers to Orchestrator directly.
/preflight-permissionsUser (before first run)Grants macOS TCC permissions. Bundled in this repo.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.4%
按下载量换算55

Claude

31.12%
按下载量换算48

Cursor

17.22%
按下载量换算27

Gemini CLI

7.87%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills