소스 정보
- 저장소
- SSWConsulting/TimePro.Tools
- 최근 소스 활동
- 2026년 6월 30일 11:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/SSWConsulting/TimePro.Tools --skill timepro-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | timepro-release |
| description | Prepare and run SSW TimePro CLI releases with matching release notes |
| allowed-tools | Bash(git *), Bash(gh *), Bash(dotnet *), Bash(scripts/security/nuget-audit.sh), Bash(scripts/install.sh), Bash(tp *) |
Use this skill when preparing a new tp CLI release.
This is a production release workflow. Do not treat publishing as a follow-up chore after a local experiment.
Before creating release notes or dispatching a release, verify all of the following:
main. A release-notes-only commit does not count.git status --short is clean except for intentional release-note edits while
preparing the release.git log --oneline <previous-release-tag>..origin/main shows the actual
fix/change commit(s), not just release metadata.HEAD, push the exact intended commit to main
and verify:git fetch origin
test "$(git rev-parse HEAD)" = "$(git rev-parse origin/main)"
If any gate fails, do not dispatch the release workflow. Fix the source control state first and tell the user what was blocked.
src/SSW.TimePro.Cli/SSW.TimePro.Cli.csproj and get <VersionPrefix>.gh release list --limit 100 --json tagName --jq '.[].tagName'
v<VersionPrefix>.<patch>.release-notes/<version>.md before dispatching the release workflow.release-notes/latest.md to that versioned file:ln -sfn <version>.md release-notes/latest.md
release-notes/0.2.7.md.Patch-zero versions such as 0.2.0 are developer builds. Do not create a release
note for patch zero.
Release notes are read by tp users via tp --whats-new, not by maintainers. Most
won't care about internals. Match the existing notes (see release-notes/0.2.2.md):
# <version> heading, then a short bullet list — usually 1–4 bullets.Good:
# 0.2.3
- `tp skills create --global` now installs skills where your agent looks for them
(e.g. `~/.claude`, `~/.codex`).
Avoid: "Refactored CreateCommand to extract ResolveBaseDir and updated unit tests."
Run these before dispatching the non-dry-run release:
dotnet test SSW.TimePro.Timesheets.Cli.slnx
scripts/security/nuget-audit.sh
Dispatch .github/workflows/release.yml with dry_run=false. The workflow will:
release-notes/<version>.md is missing,release-notes/latest.md is not a symlink to <version>.md,release-notes/latest.md as the release body.After the release, install and smoke test the released package:
scripts/install.sh
tp info
tp --whats-new