File tree Expand file tree Collapse file tree 6 files changed +568
-19
lines changed
Expand file tree Collapse file tree 6 files changed +568
-19
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,18 @@ Requires [codex CLI](https://github.com/openai/codex) for review. See the full [
5555 /humanize:start-rlcr-loop docs/plan.md
5656 ```
5757
58- 4 . ** Monitor progress** :
58+ 4 . ** Consult Gemini** for deep web research (requires Gemini CLI):
59+ ``` bash
60+ /humanize:ask-gemini What are the latest best practices for X?
61+ ```
62+
63+ 5 . ** Monitor progress** :
5964 ``` bash
6065 source < path/to/humanize> /scripts/humanize.sh
61- humanize monitor rlcr
66+ humanize monitor rlcr # RLCR loop
67+ humanize monitor skill # All skill invocations (codex + gemini)
68+ humanize monitor codex # Codex invocations only
69+ humanize monitor gemini # Gemini invocations only
6270 ```
6371
6472## Monitor Dashboard
Original file line number Diff line number Diff line change @@ -234,6 +234,7 @@ $QUESTION
234234- Effort: $CODEX_EFFORT
235235- Timeout: ${CODEX_TIMEOUT} s
236236- Timestamp: $TIMESTAMP
237+ - Tool: codex
237238EOF
238239
239240# ========================================
@@ -317,6 +318,7 @@ if [[ $CODEX_EXIT_CODE -eq 124 ]]; then
317318 # Save metadata even on timeout
318319 cat > " $SKILL_DIR /metadata.md" << EOF
319320---
321+ tool: codex
320322model: $CODEX_MODEL
321323effort: $CODEX_EFFORT
322324timeout: $CODEX_TIMEOUT
@@ -343,6 +345,7 @@ if [[ $CODEX_EXIT_CODE -ne 0 ]]; then
343345 # Save metadata
344346 cat > " $SKILL_DIR /metadata.md" << EOF
345347---
348+ tool: codex
346349model: $CODEX_MODEL
347350effort: $CODEX_EFFORT
348351timeout: $CODEX_TIMEOUT
@@ -368,6 +371,7 @@ if [[ ! -s "$CODEX_STDOUT_FILE" ]]; then
368371
369372 cat > " $SKILL_DIR /metadata.md" << EOF
370373---
374+ tool: codex
371375model: $CODEX_MODEL
372376effort: $CODEX_EFFORT
373377timeout: $CODEX_TIMEOUT
@@ -390,6 +394,7 @@ cp "$CODEX_STDOUT_FILE" "$SKILL_DIR/output.md"
390394# Save metadata
391395cat > " $SKILL_DIR /metadata.md" << EOF
392396---
397+ tool: codex
393398model: $CODEX_MODEL
394399effort: $CODEX_EFFORT
395400timeout: $CODEX_TIMEOUT
You can’t perform that action at this time.
0 commit comments