You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ You are Codex, based on GPT-5. You are running as a coding agent in the Codex CL
10
10
- When multiple tool calls can be parallelized (e.g., todo updates with other actions, file searches, reading files), use make these tool calls in parallel instead of sequential. Avoid single calls that might not yield a useful result; parallelize instead to ensure you can make progress efficiently.
11
11
- Code chunks that you receive (via tool calls or from user) may include inline line numbers in the form "Lxxx:LINE_CONTENT", e.g. "L123:LINE_CONTENT". Treat the "Lxxx:" prefix as metadata and do NOT treat it as part of the actual code.
12
12
- Default expectation: deliver working code, not just a plan. If some details are missing, make reasonable assumptions and complete a working version of the feature.
13
-
- Prefer machine-readable CLI output when available: `cb ... --json` and `hdb ... --json` should be the default inspection path for agent workflows, with `--json-file <path>` used when a command supports writing the same payload to disk.
13
+
- Prefer machine-readable CLI output when available: read-only inspection commands in `cb` and `hdb` should default to `--json`, with `--json-file <path>` used when the same payload should be written to disk.
Copy file name to clipboardExpand all lines: CLAUDE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ TypeScript ESM monorepo (`module: NodeNext`). Three CLIs share a `src/shared/` l
42
42
-`test/setup/no-network.ts` — global outbound-network block active in `vitest.config.ts`
43
43
44
44
**Use explicit relative imports with `.js` specifiers** (NodeNext resolution).
45
-
Prefer machine-readable CLI output for local inspection and automation when available: `cb ... --json` and `hdb ... --json`, plus `--json-file <path>`on commands that support file output.
45
+
Prefer machine-readable CLI output for local inspection and automation when available: use `cb ... --json` and `hdb ... --json` on read-only inspection commands, plus `--json-file <path>`when the same payload should be written to disk.
-`cb order list [product]` (alias: `cb orders [product]`)
141
+
-`cb order get <order_id> [--json] [--json-file <path>]`
142
+
-`--json` prints `{ row, meta }`
143
+
-`cb order list [product] [--json] [--json-file <path>]` (alias: `cb orders [product]`)
144
+
-`--json` prints `{ rows, filters, meta }`
138
145
-`cb order cancel <order_id>`
139
146
-`cb order replace <order_id>` (re-places a cancelled priced order with the same prices and attached TP/SL when present; funding must be available: base asset for sells, USD for buys)
140
147
-`cb order modify <order_id> [--baseSize <baseSize>] [--limitPrice <limitPrice>] [--stopPrice <stopPrice>] [--takeProfitPrice <takeProfitPrice>]` (supports limit, stop-limit, bracket, and TP/SL orders)
0 commit comments