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

loopkit

loopkit 收录了来自 Archive228 的 50 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
50
Stars
561
更新
2026-07-10
Forks
103
职业覆盖
7 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

evaluator-calibration
其他计算机职业

Calibrate a reviewer persona with few-shot rubric examples so skepticism stays consistent and doesn't drift lenient over long runs.

2026-07-10
feature-list-json
软件开发工程师

Enumerate every end-to-end feature as strict JSON entries with passes:false, editable-passes-only discipline, and priority order. The ledger fresh-context sessions read to know what's done, what's next, and what they're forbidden to touch.

2026-07-10
harness-stripping
其他计算机职业

Systematically remove one harness component at a time and measure impact, killing scaffolding that no longer earns its complexity.

2026-07-10
init-script-contract
软件开发工程师

Author idempotent init.sh under 120s plus sibling test.sh, stop.sh, reset.sh, serve.sh with fixed names the harness relies on.

2026-07-10
planner-spec-expand
项目管理专家

Expand a 1-4 sentence product brief into a full spec with a design language, acceptance surface, and an ordered feature list.

2026-07-10
progress-reading-protocol
软件开发工程师

Run the fixed 6-step session-opening sequence — pwd, read progress, git log, count remaining features, init.sh, smoke-test last feature — before touching any new work. The orientation ritual that lets fresh-context sessions reconstruct project state in under a minute.

2026-07-10
self-eval-bias
其他计算机职业

Detect and interrupt the pattern where an agent confidently praises work it just produced instead of reviewing it critically. Same-context grading is not review — it's rationalization.

2026-07-10
sprint-contract
软件开发工程师

Negotiate a pre-code contract between generator and evaluator personas that defines what "done" means before any code is written. Turns fuzzy specs into a testable target the evaluator can hold the generator to.

2026-07-10
using-loopkit
其他计算机职业

Use when starting any conversation in a loopkit-enabled project - establishes how to find and use loopkit's 49 skills, requiring skill invocation before ANY response including clarifying questions.

2026-07-10
my-new-skill
软件开发工程师

One sentence that describes WHEN to invoke this skill. Write it as a trigger phrase, not a summary — include the words a user would say ("fix bug", "add feature", "review diff"). The agent routes on this field.

2026-07-07
broken-window-check
软件质量保证分析师与测试员

Before picking new work, smoke-test the last "completed" feature. If it's broken, revert and re-open it before touching anything else. Kills the "looks shipped, isn't shipped" bug across sessions.

2026-07-07
eval-harness
软件质量保证分析师与测试员

Build a repeatable eval loop that grades agent output with an LLM judge, so prompt/skill changes get scored against a baseline instead of eyeballed. Reuses loopkit's verifier subagent as the grader — do not build a new one.

2026-07-07
pdf-ingestion
软件开发工程师

Get a PDF into the model without blowing the context window or losing structure. Native PDF beats OCR-then-text for most cases; extract-then-summarize beats native for very long docs.

2026-07-07
prompt-caching
软件开发工程师

Cache the parts of the prompt that don't change so a long-running loop stops paying full price on every turn. Use when the system prompt, tool defs, or reference docs are stable across many turns.

2026-07-07
shift-notes
软件开发工程师

Write and read the between-session handoff file so a fresh agent with no memory can pick up where the last one stopped without re-deriving context. Structured prose, not JSON — the model writes prose better.

2026-07-07
structured-output
软件开发工程师

Get JSON out of the model reliably. Prefer tool_use with a schema over prompted-JSON, validate on receive, retry on parse fail. Use when downstream code will parse the response.

2026-07-07
verification-before-completion
软件质量保证分析师与测试员

Use before claiming work is complete, fixed, or passing — before committing, opening a PR, or handing off. Requires running the verification command in THIS turn and reading its output before any success claim.

2026-07-07
authz-check
信息安全分析师

Verify that an endpoint checks ownership, not just authentication. Use on any handler that reads or mutates user data.

2026-06-29
context-budget
软件开发工程师

Keep the agent's context lean so accuracy doesn't collapse. Use on long sessions, big files, or when the agent starts hallucinating.

2026-06-29
contract-test
软件质量保证分析师与测试员

Test the boundary between two systems by the contract, not the implementation. Use for APIs, integrations, and shared interfaces.

2026-06-29
input-validation
软件开发工程师

Validate and constrain untrusted input at the boundary. Use on any handler that accepts external data.

2026-06-29
loading-empty-error-states
网页与数字界面设计师

Design the three states every data UI forgets. Use for any component that fetches or lists data.

2026-06-29
read-the-trace
软件开发工程师

Extract the actual cause from a stack trace instead of pattern-matching the error type. Use on any crash or exception.

2026-06-29
reduce-nesting
软件开发工程师

Flatten deeply nested conditionals into readable, early-return code. Use on any function with 3+ levels of indentation.

2026-06-29
revert-surgical
软件开发工程师

Undo a bad change without nuking unrelated work. Use when a specific commit or change broke something.

2026-06-29
spec-first
软件开发工程师

Write the goal spec on disk before the agent acts, so it can't drift. Use before any multi-step task.

2026-06-29
subagent-fanout
其他计算机职业

Parallelize independent sub-jobs across fresh-context subagents instead of one bloated context. Use when a goal branches into many independent pieces.

2026-06-29
tool-restraint
其他计算机职业

Don't over-equip an agent with tools/MCP servers. More tools = more ways to fail and a higher cognitive load. Use when wiring tools or an agent underperforms.

2026-06-29
a11y-pass
网页与数字界面设计师

Catch the accessibility failures that ship in almost every AI-built UI. Use after building any interactive component.

2026-06-29
adversarial-verify
软件质量保证分析师与测试员

Review a diff against the goal spec assuming the code is BROKEN. The reviewer that lives in the maker's head always agrees with itself — this pulls review into a hostile, separate pass. Invoke after every code change before marking work done.

2026-06-29
bisect-regression
软件开发工程师

Find the exact commit that introduced a bug. Use when something worked before and broke, and you don't know which change did it.

2026-06-29
changelog-from-diff
软件开发工程师

Turn a set of commits or a diff into a clean, user-facing changelog entry. Use before a release or PR description.

2026-06-29
clean-commits
软件开发工程师

Turn messy WIP into clean, atomic commits with messages that explain why. Use before opening a PR.

2026-06-29
coverage-gaps
软件质量保证分析师与测试员

Find the untested code paths that actually matter, not just the coverage percentage. Use after adding tests.

2026-06-29
decision-record
软件开发工程师

Capture an architectural decision so the next session (or engineer) knows WHY. Use after any non-obvious technical choice.

2026-06-29
dependency-audit
软件开发工程师

Decide whether to add, keep, or remove a dependency. Use before adding any package.

2026-06-29
design-system
网页与数字界面设计师

Make frontend output look intentional, not AI-generated. Use for any UI work — components, pages, layouts.

2026-06-29
flaky-hunter
软件质量保证分析师与测试员

Diagnose and fix tests that pass sometimes and fail other times. Use when CI is red intermittently.

2026-06-29
kill-dead-code
软件开发工程师

Find and remove unreachable/unused code safely. Use during cleanup or before a refactor.

2026-06-29
migration-writer
数据库架构师

Write safe, reversible database migrations for this repo's conventions. Use for any schema change.

2026-06-29
当前展示该仓库 Top 40 / 50 个已收集 skills。