feat(engineering): add tc-tracker skill#498
Merged
alirezarezvani merged 1 commit intoalirezarezvani:devfrom Apr 8, 2026
Merged
feat(engineering): add tc-tracker skill#498alirezarezvani merged 1 commit intoalirezarezvani:devfrom
alirezarezvani merged 1 commit intoalirezarezvani:devfrom
Conversation
Self-contained skill for tracking technical changes with structured JSON records, an enforced state machine, and a session handoff format that lets a new AI session resume work cleanly when a previous one expires. Includes: - 5 stdlib-only Python scripts (init, create, update, status, validator) all supporting --help and --json - 3 reference docs (lifecycle state machine, JSON schema, handoff format) - /tc dispatcher in commands/tc.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Owner
|
@claude review the pr. Scan and approve it for the merge, when all criterias are met. |
|
I'll analyze this and get back to you. |
alirezarezvani
pushed a commit
that referenced
this pull request
Apr 8, 2026
Fork-based PRs (like PR #498) caused all CI checks to fail due to: - ci-quality-gate: checkout failed because fork branch names don't exist in the base repo. Now uses commit SHA for PR events. - skill-security-audit: comment posting failed with read-only GITHUB_TOKEN. Now continues on error and writes results to job summary as fallback. - claude-code-review: fallback comment step failed silently. Now continues on error and writes status to job summary. https://claude.ai/code/session_01X1RKFAkEwxgg6gQvJG1KCa
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.

Summary
Adds a self-contained tc-tracker skill under
engineering/tc-tracker/for structured technical change tracking with state machine enforcement and AI session handoff.This is a resubmission of the previously closed PR #487, fully reworked to match repo conventions. All scripts are now embedded (no external links), the SKILL.md frontmatter is stripped to
name+descriptiononly, and the slash command is registered incommands/tc.md.What it does
planned -> in_progress -> implemented -> tested -> deployed(withblockedas a side state)What's included
engineering/tc-tracker/SKILL.md(207 lines, well under 500)engineering/tc-tracker/README.md(overview)engineering/tc-tracker/scripts/(5 Python scripts, stdlib only, all support--helpand--json)tc_init.py— Initialize TC tracking in a projecttc_create.py— Create a new TC recordtc_update.py— Update status, files, tests, handoff datatc_status.py— Show TC status (single or all)tc_validator.py— Validate a TC record or registryengineering/tc-tracker/references/(3 reference docs)lifecycle.md— State machine and transitionstc-schema.md— JSON schema referencehandoff-format.md— Session handoff structurecommands/tc.md— Slash command dispatcher (/tc <subcommand> [args])Convention compliance
name+descriptionpython3 script.py --help--jsonfor machine-readable outputcommands/tc.mddevbranch (notmain)Test plan
python3 tc_init.py --root /tmp/test --project demo --json-> creates docs/TC structurepython3 tc_create.py --root /tmp/test --name feat --title "Test" --scope feature --priority high --summary "..." --motivation "..." --json-> creates valid TC recordpython3 tc_validator.py --registry /tmp/test/docs/TC/tc_registry.json-> VALID--help🤖 Generated with Claude Code