Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5fe0a95
Add fizzy signup command with interactive wizard and agent subcommands
robzolkos Mar 5, 2026
f55c1c3
Guard interactive signup wizard against machine output mode
robzolkos Mar 5, 2026
4d75a84
Fix signup to save token to credstore and show dev magic link code
robzolkos Mar 5, 2026
e99de52
Fix lint issues in signup command
robzolkos Mar 5, 2026
2c665aa
Fix CodeQL alerts in skill command
robzolkos Mar 5, 2026
677e61e
Fix remaining err shadow in signup complete command
robzolkos Mar 5, 2026
faf15f8
Fix another err shadow in signup complete command
robzolkos Mar 5, 2026
bbfd5b1
Use temp file for session token in agent signup flow
robzolkos Mar 5, 2026
36d1e54
Fix CodeQL path injection and log injection in skill command
robzolkos Mar 5, 2026
f28972a
Sanitize selectedPath in skill command output sinks
jeremy Mar 5, 2026
e438a97
Replace os.Exit(0) with return nil in signup wizard
jeremy Mar 5, 2026
16acb5d
Normalize trailing slash on interactive self-hosted URL input
jeremy Mar 5, 2026
2fe1ba1
Distinguish invalid-code errors from operational failures in verify loop
jeremy Mar 5, 2026
a5bf82c
Clear stale self-hosted APIURL on hosted signup
jeremy Mar 5, 2026
783da63
Remove redundant pending_authentication_token from verify POST body
jeremy Mar 5, 2026
a267591
Prevent SSRF via URL validation on signup HTTP requests
jeremy Mar 5, 2026
bcf57fd
Harden signup HTTP helpers
jeremy Mar 5, 2026
d9a64a3
Tighten normalizeAccountSlugs signature from any to []any
jeremy Mar 5, 2026
33ecfd5
Write credstore warning to stderr to preserve structured output
jeremy Mar 5, 2026
aee9397
Address PR review feedback
jeremy Mar 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions SURFACE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ CMD fizzy reaction help
CMD fizzy reaction list
CMD fizzy search
CMD fizzy setup
CMD fizzy signup
CMD fizzy signup complete
CMD fizzy signup help
CMD fizzy signup start
CMD fizzy signup verify
CMD fizzy skill
CMD fizzy step
CMD fizzy step create
Expand Down Expand Up @@ -1282,6 +1287,75 @@ FLAG fizzy setup --quiet type=bool
FLAG fizzy setup --styled type=bool
FLAG fizzy setup --token type=string
FLAG fizzy setup --verbose type=bool
FLAG fizzy signup --account type=string
FLAG fizzy signup --agent type=bool
FLAG fizzy signup --api-url type=string
FLAG fizzy signup --count type=bool
FLAG fizzy signup --help type=bool
FLAG fizzy signup --ids-only type=bool
FLAG fizzy signup --json type=bool
FLAG fizzy signup --limit type=int
FLAG fizzy signup --markdown type=bool
FLAG fizzy signup --quiet type=bool
FLAG fizzy signup --styled type=bool
FLAG fizzy signup --token type=string
FLAG fizzy signup --verbose type=bool
FLAG fizzy signup complete --account type=string
FLAG fizzy signup complete --agent type=bool
FLAG fizzy signup complete --api-url type=string
FLAG fizzy signup complete --count type=bool
FLAG fizzy signup complete --help type=bool
FLAG fizzy signup complete --ids-only type=bool
FLAG fizzy signup complete --json type=bool
FLAG fizzy signup complete --limit type=int
FLAG fizzy signup complete --markdown type=bool
FLAG fizzy signup complete --name type=string
FLAG fizzy signup complete --quiet type=bool
FLAG fizzy signup complete --styled type=bool
FLAG fizzy signup complete --token type=string
FLAG fizzy signup complete --verbose type=bool
FLAG fizzy signup help --account type=string
FLAG fizzy signup help --agent type=bool
FLAG fizzy signup help --api-url type=string
FLAG fizzy signup help --count type=bool
FLAG fizzy signup help --help type=bool
FLAG fizzy signup help --ids-only type=bool
FLAG fizzy signup help --json type=bool
FLAG fizzy signup help --limit type=int
FLAG fizzy signup help --markdown type=bool
FLAG fizzy signup help --quiet type=bool
FLAG fizzy signup help --styled type=bool
FLAG fizzy signup help --token type=string
FLAG fizzy signup help --verbose type=bool
FLAG fizzy signup start --account type=string
FLAG fizzy signup start --agent type=bool
FLAG fizzy signup start --api-url type=string
FLAG fizzy signup start --count type=bool
FLAG fizzy signup start --email type=string
FLAG fizzy signup start --help type=bool
FLAG fizzy signup start --ids-only type=bool
FLAG fizzy signup start --json type=bool
FLAG fizzy signup start --limit type=int
FLAG fizzy signup start --markdown type=bool
FLAG fizzy signup start --quiet type=bool
FLAG fizzy signup start --styled type=bool
FLAG fizzy signup start --token type=string
FLAG fizzy signup start --verbose type=bool
FLAG fizzy signup verify --account type=string
FLAG fizzy signup verify --agent type=bool
FLAG fizzy signup verify --api-url type=string
FLAG fizzy signup verify --code type=string
FLAG fizzy signup verify --count type=bool
FLAG fizzy signup verify --help type=bool
FLAG fizzy signup verify --ids-only type=bool
FLAG fizzy signup verify --json type=bool
FLAG fizzy signup verify --limit type=int
FLAG fizzy signup verify --markdown type=bool
FLAG fizzy signup verify --pending-token type=string
FLAG fizzy signup verify --quiet type=bool
FLAG fizzy signup verify --styled type=bool
FLAG fizzy signup verify --token type=string
FLAG fizzy signup verify --verbose type=bool
FLAG fizzy skill --account type=string
FLAG fizzy skill --agent type=bool
FLAG fizzy skill --api-url type=string
Expand Down Expand Up @@ -1640,6 +1714,11 @@ SUB fizzy reaction help
SUB fizzy reaction list
SUB fizzy search
SUB fizzy setup
SUB fizzy signup
SUB fizzy signup complete
SUB fizzy signup help
SUB fizzy signup start
SUB fizzy signup verify
SUB fizzy skill
SUB fizzy step
SUB fizzy step create
Expand Down
Loading