원클릭으로
release
Release a new version of Coach across all three distribution channels — Claude Code marketplace, npm, and GitHub.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Release a new version of Coach across all three distribution channels — Claude Code marketplace, npm, and GitHub.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Evaluate SLT quality across 5 dimensions with rewrite suggestions.
Interview the user to classify each SLT by lesson type and build up lesson type heuristics.
Draft Student Learning Targets for a new course or module.
Assess your readiness to coach a learner through each SLT.
Capture and apply knowledge from course development to improve future runs.
Orchestrate course development workflow, track progress, and capture learnings.
| name | release |
| description | Release a new version of Coach across all three distribution channels — Claude Code marketplace, npm, and GitHub. |
| license | MIT |
| metadata | {"author":"Andamio","version":"1.0.0"} |
Publish a new version of Coach to all distribution channels.
Before starting, verify the release is ready:
main branch: git branch --show-currentgit statusAsk the user which version bump to apply:
What type of release is this?
1. Patch (x.x.1) — Wording improvements, typo fixes, minor knowledge corrections
2. Minor (x.1.0) — New skills, significant instruction rewrites, new knowledge seed patterns
3. Major (1.0.0) — Knowledge schema changes that break compound data, or skill removals
Read the current version from package.json (the version field) and compute the new version.
Review what changed since the last release:
git log $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~10)..HEAD --oneline
If no tags exist yet, review all recent commits.
Draft a changelog entry in Keep a Changelog format. Group changes under the appropriate headings:
Present the draft to the user for approval before writing.
After the user approves the changelog, update versions in all locations:
4a. package.json
Run npm version <patch|minor|major> --no-git-tag-version to bump the version without creating a git tag (we tag manually later).
4b. .claude-plugin/plugin.json
Update the "version" field to match the new version.
4c. SKILL.md frontmatter
For each skill that changed in this release, update metadata.version in its SKILL.md frontmatter to the new version. Skills that did not change keep their existing version.
4d. CHANGELOG.md
Insert the approved changelog entry at the top of the file (below the header, above the previous release). Add the release link at the bottom:
[X.Y.Z]: https://github.com/Andamio-Platform/coach/releases/tag/vX.Y.Z
git add .
git commit -m "chore: release vX.Y.Z"
git tag vX.Y.Z
Do not push yet — confirm with the user first.
Present the release summary and ask for confirmation:
Ready to publish vX.Y.Z to all channels:
1. GitHub — push main + tag
2. Claude Code marketplace — update andamio-marketplace version
3. npm — npm publish --access public (requires OTP)
Proceed?
On confirmation, execute in order:
6a. GitHub
git push origin main
git push origin vX.Y.Z
6b. Claude Code Marketplace
Read ~/projects/01-projects/andamio-marketplace/.claude-plugin/marketplace.json. Update the coach plugin's "version" field to the new version. Commit and push:
cd ~/projects/01-projects/andamio-marketplace
git add .
git commit -m "chore: bump coach to vX.Y.Z"
git push origin main
6c. npm
cd ~/projects/01-projects/coach
npm publish --access public
The user will need to authenticate with an OTP. Wait for confirmation that it succeeded.
Ask the user if they want a GitHub release:
gh release create vX.Y.Z --title "vX.Y.Z" --notes-file - <<< "CHANGELOG_ENTRY_HERE"
Report what was published:
## Release Complete: vX.Y.Z
| Channel | Status | How users get it |
|---------|--------|------------------|
| GitHub | Pushed + tagged | git pull |
| Claude Code | Marketplace updated | /plugin marketplace update |
| npm | Published | npm update @andamio/coach |
| Community (SkillsMP, SkillHub) | Automatic | Crawlers re-index on their schedule |