- Home
- Skills
- Shotaiuchi
- Dotclaude
- Wf0 Promote
wf0-promote_skill
- Shell
0
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill shotaiuchi/dotclaude --skill wf0-promote- SKILL.md1.9 KB
Overview
This skill promotes a local workflow into an external tracking ticket on GitHub Issues or Jira. It extracts core kickoff data, creates the external issue or ticket, updates local metadata and docs, and optionally renames the work-id and git branch to reflect the new external reference. The goal is a safe, auditable promotion that preserves original kickoff content and records promotion history.
How this skill works
The skill validates that the workflow is local and that 01_KICKOFF.md exists, then extracts the Title, Goal, and Success Criteria. For GitHub it uses the gh CLI to create an issue, applying a label based on work type; for Jira it uses jira-cli or guides a manual creation. After creation it updates state.json, patches the kickoff header with the external link, and offers to rename the work-id and branch before committing the changes.
When to use it
- You have a completed local workflow that should be tracked externally as an issue or ticket.
- You want kickoff contents (Goal, Success Criteria) carried into an external issue body automatically.
- You need to record promotion metadata and keep local docs synced with the external reference.
- You prefer automated label mapping (FEAT/FIX/RFC → enhancement/bug/rfc) when creating GitHub issues.
- You want an option to rename the local work-id and git branch to include the external id.
Best practices
- Ensure state.json.source.type is set to "local" before promoting.
- Keep a complete 01_KICKOFF.md with Goal and Success Criteria sections to populate the issue body cleanly.
- Authenticate gh CLI for GitHub and configure jira-cli or set JIRA_PROJECT/JIRA_DOMAIN for Jira beforehand.
- Review the suggested issue title and body before creation, and confirm any manual Jira steps if jira-cli is unavailable.
- Run the promotion from the repo root so path expectations and state.json updates apply correctly.
Example use cases
- Promote a completed feature workflow to a GitHub Issue so product and stakeholders can track implementation.
- Convert a local bug workflow into a GitHub issue with the bug label and an issue URL recorded in state.json.
- Create a Jira ticket from a local RFC workflow when the project uses Jira for formal reviews and approvals.
- Keep local documentation linked to the external ticket by updating 01_KICKOFF.md and committing the change.
- Rename a work folder and branch to include the new issue number for clearer cross-references in PRs.
FAQ
The skill stops with an error; promotion only supports workflows whose source.type is "local."
Can I promote without gh or jira-cli installed?
GitHub requires an authenticated gh CLI to create issues automatically; Jira can use jira-cli or fall back to manual creation with prompts to record the ticket ID and URL.
Will the kickoff content be changed during promotion?
Kickoff content is preserved; only the kickoff header is updated to add the external issue/ticket reference.