Skip to content

Commit ad53d47

Browse files
author
zenus
committed
feat: expose refine-plan in Claude command list
1 parent 5e3db00 commit ad53d47

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "humanize",
99
"source": "./",
1010
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
11-
"version": "1.15.0"
11+
"version": "1.15.1"
1212
}
1313
]
1414
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "humanize",
33
"description": "Humanize - An iterative development plugin that uses Codex to review Claude's work. Creates a feedback loop where Claude implements plans and Codex independently reviews progress, ensuring quality through continuous refinement.",
4-
"version": "1.15.0",
4+
"version": "1.15.1",
55
"author": {
66
"name": "humania-org"
77
},

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Humanize
22

3-
**Current Version: 1.15.0**
3+
**Current Version: 1.15.1**
44

55
> Derived from the [GAAC (GitHub-as-a-Context)](https://github.com/SihaoLiu/gaac) project.
66

commands/refine-plan.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ allowed-tools:
99
- "Write"
1010
- "Edit"
1111
- "AskUserQuestion"
12-
hide-from-slash-command-tool: "true"
1312
---
1413

1514
# Refine Annotated Plan

tests/test-refine-plan.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,11 @@ if [[ -f "$REFINE_PLAN_CMD" ]]; then
669669
assert_file_contains "$REFINE_PLAN_CMD" 'argument-hint: "--input <path/to/annotated-plan.md> [--output <path/to/refined-plan.md>] [--qa-dir <path/to/qa-dir>] [--alt-language <language-or-code>] [--discussion|--direct]"' "refine-plan.md exposes expected argument hint"
670670
assert_file_contains "$REFINE_PLAN_CMD" '"Bash(${CLAUDE_PLUGIN_ROOT}/scripts/validate-refine-plan-io.sh:*)"' "refine-plan.md allowlist includes validate-refine-plan-io.sh"
671671
assert_file_contains "$REFINE_PLAN_CMD" '"AskUserQuestion"' "refine-plan.md allows AskUserQuestion for discussion mode"
672-
assert_file_contains "$REFINE_PLAN_CMD" 'hide-from-slash-command-tool: "true"' "refine-plan.md is hidden from slash command tool"
672+
if ! grep -qF 'hide-from-slash-command-tool:' "$REFINE_PLAN_CMD"; then
673+
pass "refine-plan.md is visible in slash command tool"
674+
else
675+
fail "refine-plan.md is visible in slash command tool" "no hide-from-slash-command-tool frontmatter" "hide-from-slash-command-tool still present"
676+
fi
673677
assert_file_contains "$REFINE_PLAN_CMD" "Read and execute below with ultrathink." "refine-plan.md requires ultrathink execution mode"
674678
fi
675679

0 commit comments

Comments
 (0)