writing-plans — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited writing-plans (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.
Create implementation plans for an engineer with zero codebase context.
Each plan includes:
Principles: DRY, YAGNI, TDD, frequent commits.
Announce at start: "I'm using the writing-plans skill to create the implementation plan."
Context: Run in dedicated worktree. If none exists, use using-git-worktrees skill first.
Save plans to: docs/plans/YYYY-MM-DD-<feature-name>.md
view .)Each step is one action (2-5 minutes), independently verifiable:
Every plan MUST start with this header:
~~~markdown
Goal: [One sentence describing what this builds]
Architecture: [2-3 sentences about approach]
Tech Stack: [Key technologies/libraries]
~~~
~~~markdown
Files:
exact/path/to/file.pyexact/path/to/existing.py:123-145tests/exact/path/to/test.pyStep 1: Write the failing test
def test_specific_behavior():
result = function(input)
assert result == expectedStep 2: Run test to verify it fails
Run: pytest tests/path/test.py::test_name -v Expected: FAIL with "function not defined"
Step 3: Write minimal implementation
def function(input):
return expectedStep 4: Run test to verify it passes
Run: pytest tests/path/test.py::test_name -v Expected: PASS
Step 5: Commit
git add tests/path/test.py src/path/file.py
git commit -m "feat: add specific feature"~~~
Verify plan completeness:
After saving plan, present:
"Plan saved to `docs/plans/<filename>.md`. Choose execution mode:
Which approach?"
subagent-driven-developmentexecuting-plans~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.