Add GateFlow local CLI and agent creation #11
Merged
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_COLORenvironment variable check usingos.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, soplain or ""evaluates toFalseand colors are still emitted. The check should be"NO_COLOR" in os.environoros.environ.get("NO_COLOR") is not None. [ Failed validation ]
Loading