feat: initialize standalone agent-workflow
This commit is contained in:
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env sh
|
||||
# Final commit-msg stage (manual_ai_mode: off in .ai-commit.yaml — no AI-NONE footer).
|
||||
set -e
|
||||
command -v ai-commit >/dev/null 2>&1 || exit 0
|
||||
exec ai-commit commit-msg "$1"
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env sh
|
||||
# Optional: preview AI message before commit (skipped in non-interactive / CI).
|
||||
set -e
|
||||
command -v ai-commit >/dev/null 2>&1 || exit 0
|
||||
exec ai-commit preview
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
# Fill commit message via ai-commit when using interactive git commit / placeholders.
|
||||
# Requires ai-commit on PATH and .ai-commit.yaml in repo root. Silent skip if missing.
|
||||
set -e
|
||||
command -v ai-commit >/dev/null 2>&1 || exit 0
|
||||
exec ai-commit hook "$1" "$2" "${3:-}"
|
||||
Reference in New Issue
Block a user