Public beta — not for production use. Data may be wiped at any time. Questions? Contact us.
Documentation menu

axiom feedback

Send Axiom a bug report, feature request, or general feedback

View as Markdown
<!-- GENERATED by docs/scripts/gen-cli-reference — DO NOT EDIT. Source of truth: the cobra command definitions in cmd/axiom/cmd/. Regenerate from the repo root with: go run ./docs/scripts/gen-cli-reference -->

axiom feedback

Send Axiom a bug report, feature request, or general feedback

Send the Axiom team feedback about the product itself.

axiom feedback bug      "the flow canvas loses my selection when I scroll"
axiom feedback feature  "let me pin a node's output panel while I edit others"
axiom feedback general  "marketplace search is great — I just forget to use it"

The message may be given as arguments or piped on stdin:

echo "…" | axiom feedback bug

For a BUG against a marketplace artifact you CONSUMED (not authored) — a package, node, or flow you called and hit a defect in — file a structured report so it isn't lost in a run transcript. --workaround is required whenever --package is set: report on the workaround, not just the failure, because a workaround is simultaneously evidence the bug exists and the thing that quietly hides it.

axiom feedback bug "FetchJSON panics on an empty url" \
  --package christian/http-tools@1.2.3 --node FetchJSON \
  --workaround "validated the URL client-side before calling the node" \
  --error-file err.txt --repro-file repro.txt

To ask for a marketplace artifact that does not exist yet — a package, node, or flow — use "axiom propose" instead. Requires a prior "axiom login".

Usage

axiom feedback <bug|feature|general> [message] [flags]

Flags

FlagShorthandTypeDefaultDescription
--error-filestringStructured bug report only: path to a file with the verbatim error text
--help-hboolhelp for feedback
--jsonboolPrint the persisted submission as JSON
--nodestringStructured bug report only: which node inside --package the defect is in
--packagestringStructured bug report only: the consumed artifact, "scope/name@version"
--repro-filestringStructured bug report only: path to a file with the minimal repro
--workaroundstringStructured bug report only: what you did to route around the defect (required with --package)

See also

  • axiom — Axiom CLI — build and push node packages
Related