Install
$ agentstack add skill-indranildchandra-claude-local-starter-aidlc-tracking ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AIDLC Tracking
When to invoke this skill
- Before writing to any tracking file — load
formats.mdto get the exact template - Before running or suggesting
/compact— write a pre-compact snapshot first - When auto-compaction is detected — immediately write a pre-compact snapshot to
tasks/tracker.md - On
/init-repo— use formats to scaffold all tracking files; also runnpx gitnexus analyze
Tracking files and their purpose
| File | Purpose | Write rule | |------|---------|------------| | docs/plan.md | Architectural intent, before implementation | Append newest at TOP | | tasks/todo.md | Live execution tracking during a session | Rewrite as work evolves | | tasks/tracker.md | Append-only log of every task + session snapshot | Append newest at TOP | | audit/changelog.md | What changed in the codebase, after implementation | Append newest at TOP | | docs/design-review.md | Council review output from /design-review | Append newest at TOP | | tasks/lessons.md | Per-repo learning log, one entry per lesson learned | Append newest at TOP |
Core rules
- Never invent formats — always load
formats.mdfrom this skill before creating or appending to a tracking file - All files are per-repo — never write tracking files to a global location
- Create on first use — if a tracking file doesn't exist, create it with the header from
formats.md, then write the first entry below the header - Prepend, never append — for all append-only files (tracker, plan, changelog, lessons, design-review): insert each new entry immediately after the file header so the newest entry is always at the top. Never write to the end of the file. Only
todo.mdis rewritten wholesale. - Timestamps always use
YYYY-MM-DD HH:MM:SSformat
Pre-compact protocol
Before running /compact or when context auto-compaction is imminent:
- Invoke
/log-contextto write a pre-compact snapshot totasks/tracker.md - The snapshot must capture enough detail for a cold-start in the next session
- Then proceed with compaction
Gitnexus integration
- On
init-repo: runnpx gitnexus analyzeto build the initial code knowledge graph - After major refactoring sessions: re-run
npx gitnexus analyzeto refresh the graph - Use gitnexus context tools (
ctx_search, impact analysis) before editing files in unfamiliar modules - The gitnexus graph supplements but does not replace reading CLAUDE.md files
Formats reference
Load only the format file you need — do not load all formats at once:
| Writing to | Load this file | |------------|---------------| | tasks/tracker.md | aidlc-tracking/formats/tracker.md | | tasks/todo.md | aidlc-tracking/formats/todo.md | | tasks/lessons.md | aidlc-tracking/formats/lessons.md | | docs/plan.md | aidlc-tracking/formats/plan.md | | audit/changelog.md | aidlc-tracking/formats/changelog.md | | docs/design-review.md | aidlc-tracking/formats/design-review.md |
formats.md is kept as a combined reference for humans — use the individual files above in code.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: indranildchandra
- Source: indranildchandra/claude-local-starter
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.