Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

forge-studio

forge-studio 收录了来自 ArtMin96 的 88 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
88
Stars
2
更新
2026-06-03
Forks
0
职业覆盖
10 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

dispatch
项目管理专家

Use when the user describes a multi-step feature or refactor and you need to decide whether to handle it solo, dispatch a parallel `/fan-out`, or run a `/worktree-team` planner→generator→reviewer pipeline. Outputs a routing recommendation with the reasoning behind it.

2026-06-03
fan-out
软件开发工程师

Use whenever the user asks to apply the same operation to many independent files or components — bulk migration, batch refactor across controllers, parallel exploration of unrelated subsystems. Dispatches one subagent per file with a shared prompt template, then collects the results.

2026-06-03
safe-mode
网络与计算机系统管理员

Use to toggle the safe-mode flag at .claude/safe-mode. The flag is written automatically by consecutive-failure-guard once tool failures hit FORGE_SAFE_MODE_THRESHOLD (default 5), and block-destructive.sh denies every Bash/Write/Edit while it exists. /safe-mode off clears the flag, logs the exit, and prompts /postmortem; /safe-mode on enters manually; /safe-mode status reports current state.

2026-06-03
token-pipeline
项目管理专家

Run the 5-stage Token Transformation Pipeline (TRAE §5.2.2) over the current session state — Collection, Ranking, Compression, Budgeting, Assembly. Emits a concrete next-action recommendation (/compact, /lean-md, or /progress-log + fresh session) instead of a generic warning.

2026-06-03
md-structure
软件开发工程师

Audit or scaffold a CLAUDE.md against the Karpathy 4-section structure (Think Before Coding · Simplicity First · Surgical Changes · Goal-Driven Execution). Companion to /lean-md — structure audit, not size trim.

2026-06-03
policies-list
软件开发工程师

Print every policy enforcement point declared in plugins/diagnostics/registry/policies.json — id, verdict, plugin, hook event, severity, bypass — grouped by verdict. Single discoverable index of what the harness blocks, anchors, nudges, or logs at runtime.

2026-06-03
rest-audit
软件开发工程师

Audit the project against the R.E.S.T. framework (TRAE) — Reliability, Efficiency, Security, Traceability. Reads ledger entries, hook state, and artifact presence across long-session + policy-gateway + context-engine + traces. Single PASS/WARN/FAIL table. Cross-cut meta-surface.

2026-06-03
startup-profile
软件开发工程师

Read the SessionStart timing log written by the diagnostics time-hook wrapper and report per-hook duration plus a cold-vs-warm split across recent sessions. Surfaces which plugin's bootstrap is dominating session-open latency.

2026-06-03
skill-staleness-audit
软件开发工程师

Score every SKILL.md in the marketplace against staleness signals (last-edit age, eval coverage, citation freshness, frontmatter compliance) and emit a ranked report. Read-only — never modifies a skill.

2026-06-03
feature-list
软件开发工程师

Expand the

2026-06-03
forward-briefing
项目管理专家

Produce `.claude/forward-briefing.md` — a forward-framed view of the last 5 progress entries. Re-presents accumulated blockers as open questions and surfaces next steps first, so the resuming session starts in a problem-solving posture rather than a failure-replay posture.

2026-06-03
init-sh
软件开发工程师

Generate an executable init.sh that bootstraps the dev environment (install, build, test, run commands) so fresh sessions can recreate state in one command.

2026-06-03
progress-log
软件开发工程师

Append the current session's net outcomes to claude-progress.txt (durable, session-to-session log). Records completions, in-progress work, blockers, and next-step recommendations. Emits a ledger entry for unified audit.

2026-06-03
session-resume
软件开发工程师

Resume work from the long-session artifacts (claude-progress.txt + spec.md + features.json). Reads the append-only log, the living spec, and the testable-requirements list, then briefs the current session.

2026-06-03
parallel-power
项目管理专家

Use when the user asks "how do I run things in parallel", "should I use worktrees", or wants the playbook for multi-session and parallel execution — worktrees, fan-out, writer/reviewer splits, headless mode, queue-and-collect. Reference-style passive skill that surfaces examples inline.

2026-06-03
ultrathink
项目管理专家

Use when the user asks about "thinking modes", "effort levels", "how hard should Claude think", or wants to pick between low/medium/high/xhigh/max for a task — explains the cost/quality tradeoff per level and recommends one based on the work shape.

2026-06-03
commit-proposal
软件开发工程师

Use to apply an assessed self-evolution proposal — snapshots the prior resource version under `.claude/lineage/versions/`, writes the new content, and appends a commit entry to the ledger. Refuses to run unless the most recent `assess` verdict is `pass` and the user has explicitly approved.

2026-06-03
living-spec
软件开发工程师

Initialize .claude/spec.md from the latest plan's

2026-06-03
rollback
软件开发工程师

Use to reverse a prior self-evolution commit — restores a snapshot from `.claude/lineage/versions/<slug>/<version>` and appends a rollback entry to the ledger. The rollback itself is logged so history stays append-only and auditable.

2026-06-03
humanizer
编辑

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, passive voice, negative parallelisms, and filler phrases.

2026-06-03
stack-create
软件开发工程师

Use when the user says "create a stacked branch", "start a new branch on top of the current one", or "add a layer to the stack" — creates a new git branch whose parent is the currently checked-out branch and registers it in the stack graph so subsequent stack-submit and stack-restack know the lineage.

2026-06-02
stack-reparent
软件开发工程师

Use when a parent branch was squash-merged into its base and the child branch now shows duplicate commits — replays only the child's own commits onto the new base using rebase --onto, then retargets the child's PR and force-pushes.

2026-06-02
stack-restack
软件开发工程师

Use when branches in a stacked-PR chain have diverged from their parents and need rebasing — runs the full stack rebase using --update-refs, then force-pushes each moved branch and reconciles its PR body.

2026-06-02
stack-status
软件开发工程师

Use when you want a read-only view of the current stacked-PR chain — which branches are in the stack, their PR numbers and states (OPEN, MERGED, CLOSED), and which branches have diverged from their parent and need a restack. Renders the full tree without touching any branch or remote.

2026-06-02
stack-submit
软件开发工程师

Use when you want to open or refresh pull requests for every branch in a stacked-PR chain — creates missing PRs with the correct base branch and refreshes the body of existing ones, then force-pushes any branch whose tip has moved.

2026-06-02
run-evals-bench
软件质量保证分析师与测试员

Run comparative benchmarks for a skill — with-skill vs without-skill, N iterations each. Emits per-iteration benchmark.json with pass_rate/time/token mean+stddev+delta, and per-run grading.json with per-assertion evidence.

2026-05-30
impact-trace
软件开发工程师

Use when you need to answer "if I change <symbol>, what actually breaks?" — joins the static caller graph (codegraph MCP) with recent execution traces to separate code-reachable callers from runtime-exercised ones. Surfaces three sets: static-known-and-exercised (real blast radius), static-known-but-dormant (callable but unused this session), and runtime-only (called but not in graph — likely dynamic dispatch or graph drift).

2026-05-29
trace-review
软件开发工程师

Analyze recent execution traces to find recurring patterns, failures, and optimization opportunities.

2026-05-29
ssl-audit
软件开发工程师

Audit forge-studio SKILL.md frontmatter for the SSL overlay (scheduling / structural / logical). Reports skills missing a measurable success criterion. Read-only.

2026-05-27
harness-metrics
软件开发工程师

Compute seven harness-level quality dimensions (arXiv:2605.18747 §5.2.1, arXiv:2605.26112 §4.2) from existing Forge Studio artifacts and render a Markdown scorecard. Use when you want a snapshot of how well the harness is performing across trajectory efficiency, verification strength, recovery ability, state consistency, safety compliance, replayability, and memory hygiene.

2026-05-27
recall
软件开发工程师

Use when the user references prior work, asks "what did we decide about X", or starts a topic that may have been explored before — loads `.claude/memory/index.md`, picks the matching tier-2 topic file, and brings the relevant facts into the current turn. Performs a tier-aware retrieval (pointer → topic → optional transcript) instead of dumping everything.

2026-05-27
remember
软件开发工程师

Use whenever the user shares (or you discover) something that should survive session boundaries — architectural decisions, recurring user preferences, non-obvious constraints, "always do it this way" rules. Writes a tier-2 topic file in `.claude/memory/topics/`, adds a tier-1 pointer to the index, and snapshots any prior version to the lineage ledger.

2026-05-27
rules-audit
软件开发工程师

Use when the user asks to "audit my session", "check for sycophancy", "review behavioral compliance", or otherwise wants a self-discipline pass — scans the current transcript for sycophancy, unnecessary apologies, scope creep, focus drift, and filler language, then reports violations against the rules in `behavioral-core/hooks/rules.d/`.

2026-05-27
worktree-team
软件开发工程师

Use when two or more streams of work must not interleave edits — concurrent feature branches, long-running research alongside implementation, or any time `/fan-out` would race because items share mutable state. Bootstraps N (max 5) parallel agents each in an isolated git worktree with a role-scoped CLAUDE.md and optional path ownership, so each role can only write to its declared subtree.

2026-05-22
entropy-scan
信息安全分析师

Scan the marketplace for documentation drift, registration gaps, convention violations, stale memory, and HARNESS_SPEC invariant compliance. Reports only — no writes.

2026-05-22
convergence-check
网络与计算机系统管理员

Internal helper — parses a plan file's `## Convergence` section and evaluates its `criterion` shell command against current state. Returns a structured report with `met`, `evidence`, and `gap` fields. Called by /verify and /status; not for direct user invocation.

2026-05-22
orchestrate
软件开发工程师

Manually invoke the agentic workflow for the current task. Reads the active plan and dispatches the right pattern (single-agent, pipeline, fan-out, TDD loop).

2026-05-22
paper-research
数据科学家

Use when the user names a paper PDF in `docs/papers/` and asks to research, audit, or apply its findings to this marketplace — produces a single research brief that grounds the paper's claims in the existing plugin/hook/skill/agent surface, prefers reuse before proposing new, and verifies every Claude Code CLI mechanic the paper touches against current docs.

2026-05-21
verify
软件质量保证分析师与测试员

Use whenever a task is about to be marked done — runs the listed verification commands (tests, lint, type-check, behavioral spot-check), captures the actual output, and compares against `.claude/features.json` or the `/contract` criteria. Refuses to mark done unless every gate produced evidence; closes the trust-then-verify gap that produces "I think it works" claims.

2026-05-21
belief-audit
软件质量保证分析师与测试员

Use when a long session has compacted or handed off, before any Edit, to confirm Claude's belief about file contents still matches disk. Diffs current sha256 signatures against the last-recorded snapshot in `.claude/state/belief.jsonl` for the N most-recently-edited files (default 5).

2026-05-20
当前展示该仓库 Top 40 / 88 个已收集 skills。