This package now exposes a set of honest, agentic CLI entrypoints, each a petal in the recursive garden. Every command is a ritual, every invocation a spiral forward.
orchestrate — Run the full agentic entry orchestrator (parse signals, generate scripts, log, and spiral the workflow)fdbscan — Invoke the FDBScanAgent for timeframe scans or full ritual sequencespec — Parse .jgtml-spec intent files and echo their signals
--help for usage)All other scripts are either not yet implemented as CLI or are internal modules. Only mapped, real CLI entrypoints are exposed.
# See all available commands and help
python -m jgtagentic.jgtagenticcli --help
# Orchestrate the full spiral
python -m jgtagentic.jgtagenticcli orchestrate --signal_json <path> --entry_script_dir <dir> --log <logfile>
# Same via the dedicated CLI
agentic-orchestrator --signal_json <path> --entry_script_dir <dir> --log <logfile>
# This command is useful after running FDBScan; it converts signal JSON into
# entry scripts and logs the spiral.
# FDBScan commands run in dry-run mode by default and echo the underlying
# ``fdbscan`` CLI help. Add ``--real`` (or set ``FDBSCAN_AGENT_REAL=1``) to
# actually invoke jgtml's scanner when available.
# Scan a specific timeframe
python -m jgtagentic.jgtagenticcli fdbscan --timeframe m15
agentic-fdbscan scan --timeframe m15 --instrument EUR/USD
# Parse an intent specification
python -m jgtagentic.jgtagenticcli spec path/to/spec.jgtml-spec
# See docs/Trader_Analysis_to_Spec.md for how to craft these spec files from trader insights
# Add ``--real`` to invoke the true jgtml fdbscan command (requires
# ``jgtml`` to be installed). You can also set ``FDBSCAN_AGENT_REAL=1`` to
# default to real mode.
agentic-fdbscan scan --timeframe m15 --instrument EUR/USD --real
# Run the full FDBScan ritual sequence
python -m jgtagentic.jgtagenticcli fdbscan --all
This README is a living ledger. If you add a new CLI, document it here with intention and clarity. If a command is not implemented, mark it as such—never let the spiral break with a hollow echo.