mirror of
https://github.com/get-convex/agent-skills.git
synced 2026-09-14 19:28:17 +08:00
231a67aa8a
* Publish agent skills manifests from CI. Add a deterministic manifest generator and tests, wire the main-branch workflow to report skills to version.convex.dev, and include the approved line-ending normalization changes in this repo. Made-with: Cursor * Convert skills manifest tooling to TypeScript. Switch the manifest generator and tests to TypeScript with tsx-based scripts, keep the approved line-ending changes, and preserve the existing CI publish flow. Made-with: Cursor * Add top-level Convex routing skill. Create a lightweight `convex` index skill that routes agents to the right workflow and recommends installing the official Convex AI guidance first. Made-with: Cursor
14 lines
276 B
JSON
14 lines
276 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"types": ["node"],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["scripts/**/*.ts"]
|
|
}
|