Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,6 @@ coverage/
*.seed
*.pid.lock

# Worktrees
.worktrees/

11 changes: 11 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ cli/
│ │ │ │ ├── resource.ts
│ │ │ │ ├── api.ts
│ │ │ │ └── index.ts
│ │ │ ├── connector/
│ │ │ │ ├── schema.ts
│ │ │ │ ├── config.ts
│ │ │ │ ├── resource.ts
│ │ │ │ ├── api.ts
│ │ │ │ ├── push.ts
│ │ │ │ ├── oauth.ts
│ │ │ │ └── index.ts
│ │ │ └── index.ts
│ │ ├── site/ # Site deployment (NOT a Resource)
│ │ │ ├── schema.ts # DeployResponse Zod schema
Expand Down Expand Up @@ -120,6 +128,9 @@ cli/
│ │ │ ├── index.ts # getAgentsCommand(context) - parent command
│ │ │ ├── pull.ts
│ │ │ └── push.ts
│ │ ├── connectors/
│ │ │ ├── index.ts # getConnectorsCommand(context) - parent command
│ │ │ └── push.ts
│ │ ├── functions/
│ │ │ └── deploy.ts
│ │ ├── site/
Expand Down
Loading