feat: add Mastery skills — project memory across sessions (/mastery-status, /mastery-init, /mastery-plan, /mastery-handoff)#112
Open
RajeshYukta wants to merge 2 commits intogarrytan:mainfrom
Conversation
… projects
Adds a new skill that reads Mastery framework docs (project-context,
project-roadmap, feature tasks, changelog) and outputs a structured
status report: active feature, task progress, last session note, and
next steps. Gives Claude project memory across sessions.
- mastery-status/SKILL.md.tmpl: skill template with {{PREAMBLE}}
- mastery-status/SKILL.md: generated output
- scripts/gen-skill-docs.ts: registered in findTemplates()
- README.md: added /mastery-status to skill table
Works on any project using Mastery (github.com/RAiWorks/MASTERY.md).
Read-only skill — no Write/Edit tools. Zero new dependencies.
Complete Mastery skill suite for gstack: - /mastery-init: bootstrap Mastery framework in any project - /mastery-plan: create feature planning docs (discuss, design, plan) - /mastery-handoff: write session handoff notes for context continuity All skills follow gstack conventions: YAML frontmatter, PREAMBLE, AskUserQuestion pattern, self-contained Markdown.
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
Four new skills that bring the Mastery development lifecycle framework to gstack:
/mastery-status/mastery-init/mastery-plan/mastery-handoffWhy
AI coding agents lose all context between sessions. Every new conversation starts cold — "what were we building? where did we stop?" Mastery solves this with structured docs that act as project memory.
These four skills give any gstack user a complete project lifecycle:
How it works
Each skill follows standard gstack conventions:
allowed-tools{{PREAMBLE}}template placeholder/mastery-statusis read-only (no Write/Edit tools). The other three use Write/Edit to create and update Mastery docs.Files changed
Testing
Tested
/mastery-statusagainst a live Mastery project (the Mastery framework itself — 15 features, 12 complete). Correctly detected project, loaded context, identified active features, and produced structured status report.All skills use only
{{PREAMBLE}}(no browse-specific placeholders), keeping template processing straightforward.