Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ All source code lives under `rust/`.
- **Format**: `cargo fmt` (from `rust/`)
- **Check**: `cargo check` (from `rust/`)
- **Regenerate API catalog**: `cargo run -p generate-api-catalog` (from `rust/`)
- **Regenerate Node.js Hosting spec**: `./rust/scripts/regenerate-hosting-spec.sh`

## Architecture

Expand All @@ -37,6 +38,11 @@ rust/src/
api_explorer/mod.rs — api list/describe/search/call commands
actions_catalog/mod.rs — embedded action schema catalog
extension/mod.rs — esbuild bundler + security scanner (SEC101–SEC115)
hosting/
nodejs/
mod.rs — hosting nodejs command group
client.rs — Node.js Hosting REST client
scopes.rs — OAuth scope constants
webhook/mod.rs — webhook commands
config/mod.rs — godaddy.toml read/write
auth.rs — auth module registration
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fancy-regex = "0.14"
open = "5"
phonenumber = "0.3"
regex = { version = "1", features = ["std"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
sha2 = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
Loading