Skip to content

feat: add GateFlow local CLI

24ceadf
Select commit
Loading
Failed to load commit list.
Merged

Add GateFlow local CLI and agent creation #11

feat: add GateFlow local CLI
24ceadf
Select commit
Loading
Failed to load commit list.
MacroscopeApp / Macroscope - Correctness Check completed May 20, 2026 in 5m 18s

2 issues identified (50 code objects reviewed).

β€’ Merge Base: 17c75fb
β€’ Head: 24ceadf

Details

βœ… File Path Comments Posted
βœ… releases.md 0
βœ… README.md 0
❌ tools/gateflow_cli.py 2
βž– tests/test_gateflow_cli.py
βœ… docs/gateflow.index 0
βœ… plugins/gateflow/README.md 0
βœ… .claude-plugin/marketplace.json 0
βž– tests/test_gateflow_tui.py
βœ… tools/validate_gateflow.py 0
βž– tests/test_validate_gateflow.py
βœ… plugins/gateflow/.claude-plugin/plugin.json 0
βœ… plugins/gateflow/skills/gf-tui/SKILL.md 0
βœ… plugins/gateflow/commands/gf-tui.md 0
βœ… tools/gateflow_tui.py 0

Filtered Issues Details

tools/gateflow_cli.py
  • line 48: The NO_COLOR environment variable check using os.environ.get("NO_COLOR") is incorrect. Per the NO_COLOR spec, colors should be disabled when the variable is set to any value, including an empty string. However, os.environ.get("NO_COLOR") returns "" when set to empty, which is falsy in Python, so plain or "" evaluates to False and colors are still emitted. The check should be "NO_COLOR" in os.environ or os.environ.get("NO_COLOR") is not None. [ Failed validation ]