feature-dev-1ece5f — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited feature-dev-1ece5f (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Execute a structured 7-phase feature development workflow. This workflow guides you through understanding, exploring, designing, implementing, and reviewing a feature.
Execute these phases in order:
Goal: Understand what the user wants to build.
$ARGUMENTS:Goal: Understand the relevant parts of the codebase.
Goal: Resolve any ambiguities before designing.
Prompt the user to get answers for critical unknowns. Only ask questions that would significantly impact the implementation.
If no clarifying questions are needed, inform the user and proceed.
Goal: Design the implementation approach.
Spawn 2-3 architecture design agents with different approaches:
Refer to the code-architect agent (from the core-tools package) for this role.
Each agent receives:
Prompt the user to select an approach or request modifications.
Create an Architecture Decision Record documenting:
ADR Template:
# ADR-NNNN: [Title]
**Date:** YYYY-MM-DD
**Status:** Accepted
**Feature:** [Feature name/description]
## Context
[Describe the situation: what problem, what constraints, what driving forces]
## Decision
[What approach, key architectural choices, technologies/patterns selected]
## Consequences
### Positive
- [Benefits]
### Negative
- [Tradeoffs]
### Risks
- [Risk and mitigation]
## Alternatives Considered
### Alternative 1: [Name]
[Brief description]
- **Pros:** [List]
- **Cons:** [List]
- **Why rejected:** [Reason]
## Implementation Notes
[Key files, patterns, integration points]internal/docs/adr/internal/docs/adr/NNNN-[feature-slug].md (create directory if needed)Goal: Build the feature.
Ask the user: "Ready to begin implementation of [feature] using [chosen approach]?" Wait for confirmation before proceeding.
Before making any changes, read the complete content of every file you'll modify.
Goal: Review the implementation for issues.
Spawn 3 code-reviewer agents with different focuses:
Each agent receives:
Show the user:
Prompt the user:
Goal: Document and celebrate accomplishments.
Present to the user:
Create an entry under the [Unreleased] section following Keep a Changelog guidelines:
Changelog Entry Template:
### Added
- Add [feature name] with [key capability]
### Changed
- Update [component] to [new behavior]
### Fixed
- Fix [issue description]Instructions:
[Unreleased] sectionRefer to the changelog-format skill for additional Keep a Changelog guidelines.
Categories Reference:
| Category | Use For |
|---|---|
| Added | New features |
| Changed | Changes to existing functionality |
| Deprecated | Features that will be removed in future |
| Removed | Features that were removed |
| Fixed | Bug fixes |
| Security | Security improvements |
Congratulate the user and offer next steps:
If any phase fails:
Exploration and synthesis agent coordination is handled by the deep-analysis skill in Phase 2, which manages parallel exploration agents and a synthesis agent. Deep-analysis performs reconnaissance, composes a team plan, assembles the team, and manages the exploration/synthesis lifecycle.
When launching other parallel agents (code-architect from core-tools, code-reviewer):
What this component does: Orchestrates a complete 7-phase feature development lifecycle: discovery, codebase exploration (via deep-analysis), clarifying questions, architecture design with multiple proposals, implementation, quality review, and summary with changelog update. Capabilities needed: Shell execution, file reading/writing/editing, pattern search, sub-agent spawning (code-architect from core-tools, code-reviewer, deep-analysis from core-tools), user interaction. Adaptation guidance: This skill depends heavily on sub-agent coordination. Phase 2 delegates to deep-analysis (core-tools). Phase 4 spawns architecture agents. Phase 6 spawns reviewer agents. Adapt agent spawning to your platform's sub-task mechanism. The ADR template and changelog entry template are inlined in this skill. Sub-agent capabilities: Code-architect agents (from core-tools) need read-only file access and search for producing architecture proposals. Code-reviewer agents need read-only file access and search for producing review reports with confidence-scored findings.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.