Skip to content

Commit 515f90a

Browse files
authored
Merge pull request #52 from humania-org/ask-gemini
Add ask-gemini skill with deep web research
2 parents 916fc50 + 883e3f5 commit 515f90a

File tree

6 files changed

+568
-19
lines changed

6 files changed

+568
-19
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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

scripts/ask-codex.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ $QUESTION
234234
- Effort: $CODEX_EFFORT
235235
- Timeout: ${CODEX_TIMEOUT}s
236236
- Timestamp: $TIMESTAMP
237+
- Tool: codex
237238
EOF
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
320322
model: $CODEX_MODEL
321323
effort: $CODEX_EFFORT
322324
timeout: $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
346349
model: $CODEX_MODEL
347350
effort: $CODEX_EFFORT
348351
timeout: $CODEX_TIMEOUT
@@ -368,6 +371,7 @@ if [[ ! -s "$CODEX_STDOUT_FILE" ]]; then
368371

369372
cat > "$SKILL_DIR/metadata.md" << EOF
370373
---
374+
tool: codex
371375
model: $CODEX_MODEL
372376
effort: $CODEX_EFFORT
373377
timeout: $CODEX_TIMEOUT
@@ -390,6 +394,7 @@ cp "$CODEX_STDOUT_FILE" "$SKILL_DIR/output.md"
390394
# Save metadata
391395
cat > "$SKILL_DIR/metadata.md" << EOF
392396
---
397+
tool: codex
393398
model: $CODEX_MODEL
394399
effort: $CODEX_EFFORT
395400
timeout: $CODEX_TIMEOUT

0 commit comments

Comments
 (0)