feat: Pillar 6 — Leave a Trail + skill optimization - #2
Open
sujalmanpara wants to merge 1 commit into
Open
Conversation
- Added Pillar 6: LEAVE A TRAIL — intent comments, decision logs, architecture maintenance - Added task sizing (XS/S/M/L) — small fixes no longer need full ceremony - Added git state awareness — check uncommitted changes before branching - Added graceful degradation — proof step adapts to available tooling - Trimmed SKILL.md from ~600 lines to ~280 — removed inline bash duplication - Added Quality Test: minimum context that prevents maximum future mistakes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What Changed
Added Pillar 6: Leave a Trail — the missing agentic context layer that makes future agents smarter because a previous agent worked here.
New: Pillar 6 (Leave a Trail)
DECISIONS.md) — when you choose A over B, record it so the next agent doesn't blindly reverse itOptimizations
Why
The original skill was strong on discipline (discovery, scope, verify) but left nothing behind for future agents. Human best practice is minimal comments + self-documenting code. Agent best practice is the opposite — agents need intent, boundaries, and decision context because they start from zero every session.
Core insight: For humans, the code IS the documentation. For agents, the documentation IS the code.
Decisions Made
Verification