Habilidades incremental-implementation
📦

incremental-implementation

Revisión del contenido r1 Seguro Contiene scripts⚙️ Comandos externos📁 Acceso al sistema de archivos🔑 Variables de entorno

Implement Changes in Verifiable Increments

Large changes become difficult to test, review, and reverse. This skill divides implementation into focused slices with verification, commits, flags, and final checks.

Compatible con: Claude Codex Code(CC)
🥉 77 Bronce

Instalar con mi Agente

Copia esta solicitud en tu Agente. Incluye la página canónica del Skill y el manifiesto.

Solicitud de agente
Review the Skillstore skill "incremental-implementation" from https://skillstore.io/skills/addyosmani-incremental-implementation.md and its manifest at https://skillstore.io/api/skills/addyosmani-incremental-implementation/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Tu Agente debe seguir mostrando su plan y solicitar cualquier confirmación exigida por la política de seguridad.

Recursos legibles por agentes

Usa estos enlaces cuando un agente de IA, crawler o script necesite contexto limpio en vez de leer la página completa.

Pruébalo

Usando "incremental-implementation". Add task creation, listing, editing, and deletion across the database, API, and interface.

Resultado esperado:

  • Slice 1: Add task creation across all layers and verify the complete path.
  • Slice 2: Add task listing and confirm existing creation behavior remains stable.
  • Slice 3: Add editing with focused tests and an independent commit.
  • Slice 4: Add deletion with confirmation, tests, and final end-to-end verification.

Usando "incremental-implementation". Prepare an unfinished sharing feature for gradual integration.

Resultado esperado:

Introduce a disabled-by-default feature flag, deliver one complete sharing path, verify both flag states, and keep each increment reversible.

Usando "incremental-implementation". Refactor a risky data path while preserving current behavior.

Resultado esperado:

  • Prove the uncertain dependency first with a focused test.
  • Move one behavior at a time while keeping the build green.
  • Run project-wide verification after all local increments pass.

Auditoría de seguridad

Seguro

All 28 static findings are false positives caused by Markdown formatting, safe documentation examples, or ordinary prose. The skill contains no executable scripts, prompt injection, secret access, or malicious behavior.

1
Archivos escaneados
250
Líneas analizadas
0
Elementos de revisión
0
Falsos positivos ignorados
La auditoría estática y semántica completada más reciente no detectó hallazgos de seguridad confirmados. Esto no demuestra que el skill no tenga efectos secundarios.
Auditado por: codex
Compartir y citar este informe

Comparte el informe de evaluación versionado, la insignia neutral, la tarjeta insertable y las citas. Skillstore presenta evidencias sin decidir si este Skill es seguro.

Abrir el informe versionado
Evaluación de seguridad

Copiar enlace del informe

https://skillstore.io/skills/addyosmani-incremental-implementation/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Insignia Markdown

[![Skillstore security assessment](https://skillstore.io/badges/skills/addyosmani-incremental-implementation/security.svg)](https://skillstore.io/skills/addyosmani-incremental-implementation?utm_source=security_passport_badge)

Insignia HTML

<a href="https://skillstore.io/skills/addyosmani-incremental-implementation?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/addyosmani-incremental-implementation/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Tarjeta para insertar

<iframe src="https://skillstore.io/embed/skills/addyosmani-incremental-implementation.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Citas académicas (APA · BibTeX · CFF)

Cita APA

addyosmani. (2026). incremental-implementation security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/addyosmani-incremental-implementation/audits/1

Cita BibTeX

@techreport{addyosmani-addyosmani-incremental-implementation-2026, author = {addyosmani}, title = {incremental-implementation security audit report (audit version 1)}, institution = {Skillstore}, year = {2026}, number = {1}, url = {https://skillstore.io/skills/addyosmani-incremental-implementation/audits/1}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "incremental-implementation security audit report (audit version 1)" version: "unspecified" type: report authors: - name: "addyosmani" date-released: "2026-09-12" url: "https://skillstore.io/skills/addyosmani-incremental-implementation/audits/1" identifiers: - type: other value: "skillstore:addyosmani-incremental-implementation:audit:1" description: "Skillstore immutable audit report identifier"

Puntuación de Skillstore

Por qué esta puntuación Confianza de la evidencia: Medio
55
Arquitectura
85
Mantenibilidad
87
Contenido
65
Comunidad
83
Cumplimiento de la especificación

Lo que puedes crear

Deliver a Multi-File Feature

Break a feature into complete paths that remain testable and reviewable after every increment.

Coordinate Frontend and Backend Work

Define contracts first, then develop compatible backend and frontend slices before integration.

Reduce Refactoring Risk

Sequence focused changes with tests and reversible commits to isolate failures quickly.

Prueba estos prompts

Plan the First Slice
Review this task and propose the smallest complete first slice. Define scope, excluded work, verification steps, and a completion condition.
Implement One Planned Increment
Implement the next approved slice only. Run relevant project checks, report results, and note unrelated issues without changing them.
Choose a Slicing Strategy
Compare vertical, contract-first, and risk-first approaches for this feature. Recommend one and produce ordered, independently verifiable increments.
Design a Controlled Rollout
Create an incremental rollout plan for this high-risk change. Include safe defaults, feature flags, migrations, rollback steps, verification gates, and commit boundaries.

Mejores prácticas

  • Define one observable outcome and explicit exclusions for every increment.
  • Run relevant verification after each meaningful change and record the result.
  • Keep commits focused so each increment can be reviewed or reverted independently.

Evitar

  • Do not combine feature work, unrelated cleanup, and broad refactoring in one increment.
  • Do not defer all testing until the complete feature is implemented.
  • Do not expose unfinished behavior without a disabled-by-default control.

Preguntas frecuentes

When should I use this skill?
Use it for multi-file features, refactors, migrations, or any change that benefits from several verified steps.
When is this skill unnecessary?
Skip it when a single-file, single-function change is already minimal and easy to verify.
What is a vertical slice?
A vertical slice delivers one complete user-visible path across every required system layer.
How should incomplete features be merged?
Use a disabled-by-default feature flag and verify behavior with the flag both enabled and disabled.
Should every slice have a separate commit?
Yes. Focused commits improve review, diagnosis, and rollback when each slice represents one logical change.
Does this skill choose project commands?
No. It uses the repository test, build, type-checking, and lint commands that the project already defines.

Detalles del desarrollador

Licencia

MIT

Revisión de Skillstore

r1

Aviso de versión

El autor no declaró una versión.

Ref.

5526951beaeca22519572a471618555839b53b05

Actualidad del mantenimiento

14/9/2026

Uso

0 descargas · 0 vistas

Estructura de archivos

📄 SKILL.md