Навыки incremental-implementation
📦

incremental-implementation

Ревизия содержимого r2 Безопасно ⚡ Содержит скрипты⚙️ Внешние команды📁 Доступ к файловой системе🔑 Переменные окружения

Build Software in Small, Verifiable Increments

Large changes are difficult to test, review, and recover when problems appear late. This skill breaks work into complete increments with explicit tests, verification, and rollback points.

Поддерживает: Claude Codex Code(CC)
🥉 78 Бронза

Установить с помощью моего Агента

Скопируйте этот запрос в своего Агента. Он содержит каноническую страницу Skill и манифест.

Запрос агента
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.

Ваш Агент по-прежнему должен показать план и запросить все подтверждения, требуемые политикой безопасности.

Ресурсы для AI-агентов

Используйте эти ссылки, когда AI-агенту, crawler или script нужен чистый контекст вместо полной страницы.

Протестировать

Использование «incremental-implementation». Add task creation, task listing, and task editing to an application.

Ожидаемый результат:

  • Increment 1: create a task through the database, API, and basic interface.
  • Increment 2: list tasks through the query, API, and interface.
  • Increment 3: edit a task with focused tests and verification.

Использование «incremental-implementation». Add a sharing feature that is not ready for all users.

Ожидаемый результат:

Add the sharing path behind a disabled-by-default feature flag. Test the flag-off behavior, then verify the enabled path before wider release.

Использование «incremental-implementation». A new WebSocket integration has uncertain reliability.

Ожидаемый результат:

Start with a connection proof and its test. Add real-time updates only after the connection works, then add reconnection and offline behavior.

Аудит безопасности

Безопасно

All 28 static findings are false positives caused by Markdown syntax, illustrative code, or ordinary implementation guidance. The skill contains no executable scripts, network behavior, secret handling, or prompt injection evidence.

1
Просканировано файлов
250
Проанализировано строк
0
Пункты проверки
0
Ложные срабатывания проигнорированы
Последний завершенный статический и семантический аудит не обнаружил подтвержденных проблем безопасности. Это не доказывает отсутствие побочных эффектов у навыка.
Поделиться и цитировать этот отчет

Делитесь версионным отчетом об оценке, нейтральным значком, встраиваемой карточкой и цитатами. Skillstore публикует доказательства, не решая, безопасен ли этот Skill.

Открыть версионный отчет
Оценка безопасности

Копировать ссылку на отчёт

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

Значок 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)

Значок 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>

Встраиваемая карточка

<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>
Академические ссылки (APA · BibTeX · CFF)

Цитата APA

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

Цитата BibTeX

@techreport{addyosmani-addyosmani-incremental-implementation-2026, author = {addyosmani}, title = {incremental-implementation security audit report (audit version 2)}, institution = {Skillstore}, year = {2026}, number = {2}, url = {https://skillstore.io/skills/addyosmani-incremental-implementation/audits/2}, 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 2)" version: "unspecified" type: report authors: - name: "addyosmani" date-released: "2026-09-19" url: "https://skillstore.io/skills/addyosmani-incremental-implementation/audits/2" identifiers: - type: other value: "skillstore:addyosmani-incremental-implementation:audit:2" description: "Skillstore immutable audit report identifier"

Оценка Skillstore

Почему такая оценка Достоверность доказательств: Средний
55
Архитектура
85
Сопровождаемость
87
Контент
65
Сообщество
91
Соответствие спецификации

Что вы можете построить

Plan a Multi-File Feature

Turn a large feature into complete vertical slices that can be tested and reviewed as they are built.

Coordinate Frontend and Backend Work

Use contract-first slicing to define shared interfaces before parallel implementation and integration.

Reduce Delivery Risk

Use risk-first slices, feature flags, and rollback-friendly changes when a task has uncertainty or incomplete functionality.

Попробуйте эти промпты

Start a Small Change
Help me split this change into the smallest complete increment. Identify the files, test, and verification step for the first increment.
Plan Vertical Slices
Create a vertical-slice plan for this feature. Each slice must deliver working behavior, include tests, and remain reviewable.
Use a Contract First
Design a contract-first sequence for this frontend and backend change. Separate the contract, backend, frontend, and integration checks.
Prioritize Technical Risk
Analyze this implementation plan and reorder its increments by technical risk. Add feature flags, verification gates, and rollback points where needed.

Лучшие практики

  • Keep every increment complete, testable, and independently reviewable.
  • Address the riskiest or most uncertain technical assumption early.
  • Use explicit scope, verification gates, feature flags, and rollback points.

Избегать

  • Implementing an entire multi-file feature before testing.
  • Combining unrelated refactors, configuration changes, and features.
  • Adding abstractions or scope before a real use case requires them.

Часто задаваемые вопросы

When should I use this skill?
Use it for multi-file features, refactors, feature flags, or tasks that feel too large to complete safely in one pass.
What is a vertical slice?
A vertical slice is a small change that travels through the required layers and leaves working user-visible behavior.
Should every increment be committed?
The skill recommends descriptive commits after verified increments so each change remains understandable and reversible.
How does contract-first slicing help?
It gives parallel teams a shared interface before they implement separate backend and frontend pieces.
When should I use a feature flag?
Use a flag when incomplete functionality must be merged without exposing it to users.
Does this skill run project commands?
No. It recommends that the agent discover and run the repository's own tests, build, type-check, and lint commands.

Сведения для разработчиков

Автор

addyosmani

Лицензия

MIT

Ревизия Skillstore

r2

Примечание о версии

Автор не указал версию.

Ссылка

5d5054f8a23586f9b500fece1cb613a9dffc787b

Актуальность поддержки

19.09.2026

Использование

1 загрузок · 0 просмотров

Структура файлов

📄 SKILL.md

Больше от addyosmani

Показать все
📦

code-review-and-quality

78

Проверка кода по пяти критериям качества

Изменения в коде могут скрывать проблемы с корректностью, безопасностью, архитектурой, читаемостью и производительностью. Этот навык применяет структурированный процесс проверки и предоставляет приоритизированную обратную связь с конкретными рекомендациями.

Кодинг и разработка Просмотр
Показать все
📦

testing-patterns

81

Планируйте надежные тесты во всей кодовой базе

от 0xDarkMatter

Этот skill помогает командам выбирать стратегии тестирования, моки, фикстуры данных, пороги покрытия и CI-паттерны, не смешивая уровни тестирования. Он дает Claude, Codex и Claude Code структурированные рекомендации для unit, integration, end-to-end, TDD и pipeline-тестирования.

Кодинг и разработка Просмотр
📦

golang-testing

81

Создавайте более качественные тесты Go

от 89jobrien

Командам Go нужны единообразные тесты для модулей, интеграций, моков, бенчмарков и покрытия. Этот навык предоставляет практические шаблоны тестирования Go, которые Claude, Codex и Claude Code могут применять во время разработки.

Кодинг и разработка Просмотр
📦

waterfall-development

81

Обеспечение контрольных шлюзов фаз Waterfall

от Chemiseblanc

Сеансы кодирования с ИИ могут пропускать требования, проектирование или тестирование, когда растет давление. Этот навык удерживает работу в строгом каскадном потоке с документированными контрольными шлюзами.

Кодинг и разработка Просмотр
📦

tdd-pytest

81

Создавайте тесты Python с pytest TDD

от 89jobrien

Командам Python часто нужны согласованные тесты, покрытие и отчеты без потери дисциплины TDD. Этот skill предоставляет ориентированные на pytest рабочие процессы, примеры и рекомендации по отчетности для Claude, Codex и Claude Code.

Кодинг и разработка Просмотр