ソース情報
- リポジトリ
- T-rav/hydraflow
- ソースの最終更新活動
- 2026年4月23日 23:58
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/T-rav/hydraflow --skill hf-adrコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | hf.adr |
| description | Create a draft ADR issue for HydraFlow processing |
Create an ADR draft issue that HydraFlow queues into the normal pipeline for triage, implementation, and review.
/hf.adr Adopt queue memory handoff between stages
/hf.adr Standardize visual validation gating policy
$ARGUMENTS is the ADR title suffix.
REPO: HYDRAFLOW_GITHUB_REPO fallback to git origin slugASSIGNEE: HYDRAFLOW_GITHUB_ASSIGNEE fallback to repo ownerLABEL: hydraflow-findIssue title must be [ADR] <title>.
Body must include:
## Context## Decision## ConsequencesOptional:
## Alternatives considered## RelatedKeep the decision concrete and implementation-actionable.
Create the issue directly with gh issue create and --body-file:
BODY_FILE=$(mktemp)
cat > "$BODY_FILE" <<'ADR_EOF'
## Context
...
## Decision
...
## Consequences
...
ADR_EOF
gh issue create --repo "$REPO" \
--assignee "$ASSIGNEE" \
--label "$LABEL" \
--title "[ADR] <title>" \
--body-file "$BODY_FILE"
rm -f "$BODY_FILE"
Use hydraflow-find so the ADR is queued into the pipeline.
Return: