Skills Agentes

Engineer System Change

Evaluate and carry out non-trivial software-system changes from first principles. Use when assessing RFCs, issues, designs, features, refactors, migrations, dependency changes, or proposed fields, events, APIs, modules, and services whose need, consumers, system fit, validation, or rollback require scrutiny. Read the actual system, identify the concrete problem and named semantic consumers, choose the smallest sufficient solution, reject pseudo-requirements and speculative abstractions, and require evidence proportional to risk. Do not use for mechanical edits, source-code explanation, or a dedicated review of an already-complete diff.

Estrellas
80.9k

en todo el repo

Actividad
55

0–100, la ruta de este skill

Actualizado
el mes pasado

último commit aquí

Commits
1

últimos 90 días

Contexto
2.5k tok

161 tok en reposo

Paquete
1 archivo

10 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add bytedance/deer-flow --skill engineer-system-change --agent claude-code

Se instala solo en este repositorio.

SKILL.md

En inglés

Engineer System Change

Treat every proposed change as a hypothesis about a real system, not as an implementation checklist. Establish whether the change should exist before designing or building it, then keep the solution and the process proportional to the risk.

Preserve the Task Boundary

  • If asked only to assess, review, or plan, make no project or external-state changes.
  • If explicitly asked to implement, including after an assessment, pass the decision gates before editing and verify the result afterward.
  • Treat implementation permission as separate from permission to commit, push, deploy, publish, or update issues and pull requests.
  • If repository truth matters, inspect the current target revision and relevant discussion. Do not rely on a stale checkout, an RFC alone, or remembered architecture.
  • Separate verified facts, inferences, and unknowns. Do not turn missing evidence into a confident conclusion.

Apply the Decision Gates

1. Ground the Problem

  • Trace the current user workflow, failure, or code path before proposing a solution.
  • State the undesirable observable behavior and the invariant or outcome that should replace it.
  • Identify who is affected and which concrete decision or action changes.
  • Check whether the existing system, configuration, documentation, or operating procedure already solves the problem.
  • Enumerate adjacent product paths and workarounds, not only the proposed target surface. Explain precisely which accepted outcome each alternative fails; do not claim “the only option” from one missing UI control or code path.
  • Treat an absent field, interface, abstraction, or standard as an observation, not proof of a requirement.

Return STOP only when evidence affirmatively shows that no change is needed or the affected workflow already achieves the outcome. Return NEEDS_EVIDENCE when an unverified fact prevents the decision.

2. Name Semantic Consumers

For every proposed durable field, event, API, table, store, module, service, or workflow, establish:

Question Required answer
Producer or lifecycle owner What creates, updates, or owns it?
Committed consumer Which named caller, component, operator, or user reads or acts on it now or as part of this same accepted slice?
Semantic use What behavior, decision, or externally visible result changes after consumption?
Reachable path Where does production reach consumption in the current system or proposed slice?
Absence test Which verified scenario or accepted outcome fails if the addition is removed?

Accept a proposed consumer only when it is tied to a verified current need and committed integration in the same change. Do not accept a roadmap, possible future evaluator, generic read/debug API, storage alone, or “future flexibility” as a semantic consumer. If an addition has no such consumer, remove or defer it. Treat a public or externally consumed contract as a compatibility boundary even when no in-repository caller is visible. Absence of a discoverable caller is uncertainty, not proof that no consumer exists.

3. Choose the Smallest Sufficient Change

Consider solutions in this order and stop at the first one that fully satisfies the verified outcome and invariants without shifting disproportionate recurring cost, coupling, or risk downstream:

  1. No product or code change
  2. Documentation, configuration, or operating procedure
  3. Reuse an existing capability
  4. Make a local behavior fix
  5. Extend an existing abstraction
  6. Introduce a new abstraction
  7. Introduce a new subsystem or migration path
  • Minimize concepts, states, interfaces, irreversible decisions, and maintenance surface, not literal line count.
  • Require a second current consumer, a demonstrated variation, or a hard boundary before generalizing a local solution.
  • Prefer independently reversible slices over a comprehensive architecture rollout.
  • Distinguish a real problem from an oversized solution. A valid verdict is: “The problem is real; reduce the proposal to this smaller change.”
  • Apply these gates recursively to your own recommendation. Do not propose a new field, contract, abstraction, migration, or validation system without naming its consumer, checking existing mechanisms, and showing why a smaller change is insufficient.

4. Map Consequences and Verification Proportionally

Inspect only relevant dimensions, but do not omit a dimension merely because the proposal omits it:

  • callers and downstream consumers
  • API, data, event, and UI contracts
  • authorization, ownership, privacy, and trust boundaries
  • persistence, migrations, replay, and side effects
  • concurrency, ordering, retries, idempotency, and failure recovery
  • compatibility, dependencies, performance, deployment, and operations
  • observability and rollback

For state replay or retry features, explicitly distinguish restored application state from external side effects that cannot be undone. Label material risk claims as VERIFIED, INFERENCE, or UNKNOWN. Use an inference to request a focused check, not to require new architecture as though the claim were already proven. Evidence labels classify individual claims; verdicts classify the overall decision. An UNKNOWN requires NEEDS_EVIDENCE only when the unknown blocks a material decision.

Before implementation, require observed evidence for the current-system claims that justify the decision and a proportional, executable verification plan. Treat proposed checks as a verification plan, not observed evidence.

5. Implement Only the Justified Slice

When implementation is authorized:

  • Reproduce the baseline first. Encode it as a failing behavioral test when executable; otherwise state why and record a reproducible check.
  • Change only the paths required by the accepted outcome and consumers.
  • Reuse existing execution paths and contracts when they preserve the required semantics.
  • Avoid speculative compatibility layers, selectors, shadow systems, canaries, or dual stacks unless an irreversible or high-risk transition requires them.
  • Update repository guidance only when architecture, commands, or durable conventions actually change.

6. Prove the Result

  • Map each important result claim to observed evidence: tests, contract checks, static analysis, runtime traces, benchmarks, or a reproducible manual check.
  • Do not use the agent's own summary as proof.
  • Verify negative boundaries and failure behavior, not only the happy path.
  • State what remains unverified and how that uncertainty affects the verdict.
  • Use focused regression checks for local reversible changes.
  • Add targeted integration and adversarial checks for contract, persistence, security, concurrency, replay, or cross-component changes.
  • Require a production-like rehearsal plus executable containment or rollback for irreversible changes or materially high-risk external side effects.

Use Explicit Verdicts

  • STOP: evidence affirmatively shows that no current change is needed, or that existing capability already achieves the accepted outcome.
  • REDUCE: the problem is real, but the proposed scope or abstraction exceeds the evidence.
  • REVISE: the problem and approximate scope are justified, but a correctness, contract, or failure-semantics defect must change before proceeding.
  • PROCEED: the problem, consumers, minimum solution, consequences, and proportional verification plan are sufficiently established.
  • NEEDS_EVIDENCE: a decision would be guesswork until a specific fact, code path, incident, or consumer is verified.

Do not force a binary approve/reject judgment when evidence is incomplete. Choose the verdict from the condition blocking the earliest gate, not from the gate number: affirmative evidence that no change is needed maps to STOP; a decision-blocking unknown maps to NEEDS_EVIDENCE; a real problem with unsupported scope or no committed consumer maps to REDUCE; and a confirmed correctness, contract, or failure-semantics defect maps to REVISE. Use PROCEED only when no gate is blocked. When more than one condition applies, give one primary verdict and list the other required changes without inventing a compound status. A verdict records the decision gate and never expands authorization. After authorized implementation, separately report the implemented slice, observed verification, and remaining uncertainty.

Keep the Output Proportional

For a simple change, report only:

  1. Problem and desired behavior
  2. Named semantic consumer
  3. Smallest sufficient change
  4. Observed evidence and, before implementation, the verification plan
  5. Verdict

For a cross-boundary change or RFC, add:

  • verified current-system facts
  • existing alternatives and why they do not meet the accepted outcome
  • consumer ledger for proposed additions
  • affected contracts and side effects
  • rejected or deferred scope with reasons
  • failure, observation, and rollback strategy

Do not create ceremonial documents or exhaustive matrices when a short evidence-backed answer is sufficient. The workflow itself must not become overengineering.

Reproducido de bytedance/deer-flow bajo licencia MIT. Leer esta página en markdown.

Archivos

1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Detalles

Creador
bytedance
Licencia
MIT
Recursos incluidos
Solo SKILL.md
Código fuente
Ver SKILL.md

Etiquetas

Más de bytedance/deer-flow

Este repo incluye 27 skills. Si instalas uno, normalmente ya tienes los demás.

Reviews DeerFlow skill packages for readiness, triggers, safety boundaries, resources, and evidence. Invoke when users ask to audit, grade, or production-check an existing skill.

Costo de contexto al activarse
1.4k tok
Tamaño del paquete
13 archivos
Última actualización
el mes pasado
herramientas desarrollo

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

Costo de contexto al activarse
9.2k tok
Tamaño del paquete
20 archivos
Última actualización
el mes pasado
herramientas desarrollo

End-to-end smoke test skill for DeerFlow. Guides through: 1) Pulling latest code, 2) Docker OR Local installation and deployment (user preference, default to Local if Docker network issues), 3) Service availability verification, 4) Health check, 5) Final test report. Use when the user says "run smoke test", "smoke test deployment", "verify installation", "test service availability", "end-to-end test", or similar.

Costo de contexto al activarse
2.5k tok
Tamaño del paquete
12 archivos
Última actualización
hace 2 meses
devops infraestructura

Use when a DeerFlow maintainer needs comment-only GitHub issue or PR handling: resolve issue/PR scopes with gh, analyze issues, post or draft issue comments, perform PR review comments, review PR or issue batches, compare competing PRs that target the same issue, give fix strategy, risk classification, and validation guidance. Intended for maintainers and trusted local agents, not general contributors.

Costo de contexto al activarse
5.4k tok
Tamaño del paquete
1 archivo
Última actualización
hace 2 meses
herramientas desarrollo

Ensure async-path backend code that could block the asyncio event loop is protected by a teeth-verified runtime anchor in tests/blocking_io/. Use when changing backend Python under app/, packages/harness/deerflow/, or scripts/, when running a blocking-IO triage round over the whole repo, or when a reviewer/CI asks for blocking-IO coverage. Runs a deterministic scan (changed-lines or full-repo), routes each candidate, drafts/extends an anchor, and proves it fails when the blocking IO regresses.

Costo de contexto al activarse
1.7k tok
Tamaño del paquete
4 archivos
Última actualización
hace 2 meses
herramientas desarrollo

Use this skill when the user requests to generate, create, imagine, or visualize images including characters, scenes, products, or any visual content. Supports structured prompts and reference images for guided generation.

Costo de contexto al activarse
2.5k tok
Tamaño del paquete
3 archivos
Última actualización
hace 2 meses
herramientas desarrollo

Skills relacionados

Ensure async-path backend code that could block the asyncio event loop is protected by a teeth-verified runtime anchor in tests/blocking_io/. Use when changing backend Python under app/, packages/harness/deerflow/, or scripts/, when running a blocking-IO triage round over the whole repo, or when a reviewer/CI asks for blocking-IO coverage. Runs a deterministic scan (changed-lines or full-repo), routes each candidate, drafts/extends an anchor, and proves it fails when the blocking IO regresses.

Costo de contexto al activarse
1.7k tok
Tamaño del paquete
4 archivos
Última actualización
hace 2 meses
herramientas desarrollo

Use this skill when the user requests to generate, create, or improve documentation for code, APIs, libraries, repositories, or software projects. Supports README generation, API reference documentation, inline code comments, architecture documentation, changelog generation, and developer guides. Trigger on requests like "document this code", "create a README", "generate API docs", "write developer guide", or when analyzing codebases for documentation purposes.

Costo de contexto al activarse
3.5k tok
Tamaño del paquete
1 archivo
Última actualización
hace 4 meses
herramientas desarrollo

Use when a DeerFlow maintainer needs comment-only GitHub issue or PR handling: resolve issue/PR scopes with gh, analyze issues, post or draft issue comments, perform PR review comments, review PR or issue batches, compare competing PRs that target the same issue, give fix strategy, risk classification, and validation guidance. Intended for maintainers and trusted local agents, not general contributors.

Costo de contexto al activarse
5.4k tok
Tamaño del paquete
1 archivo
Última actualización
hace 2 meses
herramientas desarrollo