sentinel-plan

Generates a structured implementation plan for SENTINEL protocol features.

Updated Apr 3, 2026
One-click install
npx skills add https://github.com/Ayoub-ouederni/SENTINEL --skill sentinel-plan-ayoub-ouederni
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentinel-plan
Source: https://github.com/Ayoub-ouederni/SENTINEL/tree/main/.claude/skills/sentinel-plan
Command: npx skills add https://github.com/Ayoub-ouederni/SENTINEL --skill sentinel-plan-ayoub-ouederni

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Starting a new feature in the SENTINEL decentralized AML protocol without a clear plan leads to missed dependencies, untested code, and unclear scope. This Skill turns a feature request into a structured, actionable development plan. ## Core Features & Use Cases - File-Level Planning: Lists exact files to create or modify with precise paths. - Dependency Ordering: Defines task execution order based on inter-task dependencies. - TDD-First Approach: Specifies tests to write before any implementation begins. - Complexity Estimation: Provides an effort estimate for the planned work. - Use Case: When adding a new risk-scoring dimension to the SENTINEL TEE nodes, invoke this Skill to get the full list of Solidity contracts, Python node code, and tests to touch, in the right order. ## Quick Start Ask the assistant to plan a new SENTINEL feature, for example: plan the addition of a new wallet risk dimension to the scoring workflow.

Frequently Asked Questions about sentinel-plan

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I plan a new feature for the SENTINEL protocol?

Invoke the sentinel-plan skill with a description of the feature you want to build. It returns a structured plan listing exact files to create or modify, task dependencies, tests to write first under TDD, and a complexity estimate.

What does the SENTINEL feature plan include?

The plan includes four sections: exact file paths to create or modify, dependency-ordered task execution, tests to write before implementation following TDD, and a complexity estimation for the overall work.

Does sentinel-plan write the implementation code?

No, sentinel-plan only produces the planning document. It analyzes your feature request and outputs the plan structure, leaving actual code implementation as a separate step you execute afterward.

Can I use sentinel-plan for non-SENTINEL projects?

The skill is designed and named for the SENTINEL decentralized AML protocol repository. While its planning structure is generic, its context and conventions target the SENTINEL codebase of Solidity contracts, Python nodes, and TypeScript frontend.

Why does the plan require writing tests before implementation?

The skill enforces a test-driven development workflow, requiring tests to be defined before implementation begins. This ensures each planned task has verifiable acceptance criteria and reduces regressions in the protocol codebase.