Files
Mike Cann 231a67aa8a Publish agent skills manifests from CI (#6)
* 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
2026-04-17 11:53:25 +08:00

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"]
}