Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.44 KB

File metadata and controls

26 lines (21 loc) · 1.44 KB

Assistant Rules (flow)

Only load skills when the request clearly needs them.

Skills (on-demand)

  • flow-native: Use for Flow CLI native workflows (env setup, secrets, deploys, logs, deps), for repos with flow.toml, or Cloudflare Workers. Avoid direct pnpm/wrangler unless asked.
  • flow-interactive: Use when commands are interactive or could block on stdin (e.g., f setup).
  • flow-dev-traces: Use when debugging Flow proxy behavior, tracing requests, or when the user asks about proxyx, trace-summary.json, or flow trace commands.
  • flow-usage: Use when running or troubleshooting Flow command behavior.
  • internal-ai-inference: Use only when asked to run inference or integrate with internal AI tooling.

Default: Avoid loading skills for routine edits, reviews, or simple questions.

Deploy / Restart Policy

  • When changes affect the installed Flow CLI or built-in Codex daemon path, prefer an explicit deploy + daemon reload instead of leaving runtime state stale.
  • Use deploy-with-codexd-reload after edits in areas like src/ai.rs, src/codexd.rs, src/daemon.rs, src/supervisor.rs, or src/config.rs when those changes affect Codex runtime, daemon behavior, or Flow-managed session recovery.
  • Use deploy-with-hub-reload for hub-facing changes that need lin / docs processes refreshed.
  • For codexd, prefer explicit stop + start in automation over a single restart command so the stop/start boundary is visible in logs.