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
1 change: 1 addition & 0 deletions .caplets/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*
!.gitignore
!config.json
4 changes: 4 additions & 0 deletions .caplets/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://caplets.dev/config.schema.json",
"mcpServers": {}
}
8 changes: 8 additions & 0 deletions .changeset/hip-tigers-sing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@caplets/core": minor
"@caplets/opencode": patch
"caplets": patch
"@caplets/pi": patch
---

Bump dependencies
6 changes: 6 additions & 0 deletions .changeset/published-schema-urls.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@caplets/core": patch
"caplets": patch
---

Publish the generated config and Caplet frontmatter schemas from caplets.dev and use those URLs in generated starter files.
5 changes: 5 additions & 0 deletions .changeset/versioned-attach-api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@caplets/core": minor
---

Replace unversioned self-hosted HTTP routes with the `/v1` service surface and add the Caplets attach manifest/invoke API for native and attach clients.
11 changes: 10 additions & 1 deletion .codex/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
#:schema https://raw.githubusercontent.com/openai/codex/refs/heads/main/codex-rs/core/config.schema.json

[mcp_servers.caplets-remote]
command = "node"
args = ["./packages/cli/dist/index.js", "attach", "--remote-url", "http://localhost:5387"]

[mcp_servers.caplets-remote.env]
CAPLETS_MODE = "remote"

[mcp_servers.caplets-local]
command = "node"
args = ["./packages/cli/dist/index.js", "serve", "--transport", "stdio"]
env_vars = ["GH_TOKEN"]

[mcp_servers.caplets-local.env]
CAPLETS_MODE = "local"
CAPLETS_CONFIG = "./.caplets/config.json"
6 changes: 3 additions & 3 deletions apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"dependencies": {
"@astrojs/check": "^0.9.9",
"@hugeicons/core-free-icons": "4.2.0",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.3",
"tailwindcss": "^4.3.0",
"@tailwindcss/vite": "^4.3.1",
"astro": "^6.4.6",
"tailwindcss": "^4.3.1",
"three": "^0.184.0",
"typescript": "^6.0.3"
},
Expand Down
Loading