@cyanheads/mcp-ts-core 0.8.4 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +22 -10
- package/README.md +2 -2
- package/changelog/0.8.x/0.8.5.md +42 -0
- package/changelog/0.8.x/0.8.6.md +22 -0
- package/dist/core/context.d.ts +79 -8
- package/dist/core/context.d.ts.map +1 -1
- package/dist/core/context.js +46 -9
- package/dist/core/context.js.map +1 -1
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/logs/combined.log +4 -4
- package/dist/logs/error.log +4 -4
- package/dist/testing/index.d.ts.map +1 -1
- package/dist/testing/index.js +5 -1
- package/dist/testing/index.js.map +1 -1
- package/package.json +1 -3
- package/skills/add-app-tool/SKILL.md +2 -2
- package/skills/add-resource/SKILL.md +2 -2
- package/skills/add-service/SKILL.md +13 -2
- package/skills/add-tool/SKILL.md +43 -20
- package/skills/api-auth/SKILL.md +6 -5
- package/skills/api-context/SKILL.md +55 -6
- package/skills/api-errors/SKILL.md +62 -2
- package/skills/field-test/SKILL.md +2 -5
- package/skills/polish-docs-meta/references/readme.md +1 -8
- package/skills/report-issue-framework/SKILL.md +1 -1
- package/skills/report-issue-local/SKILL.md +1 -1
- package/templates/AGENTS.md +0 -2
- package/templates/CLAUDE.md +0 -2
- package/templates/package.json +0 -2
package/templates/AGENTS.md
CHANGED
|
@@ -288,8 +288,6 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
288
288
|
| `npm run tree` | Generate directory structure doc |
|
|
289
289
|
| `npm run format` | Auto-fix formatting |
|
|
290
290
|
| `npm test` | Run tests |
|
|
291
|
-
| `npm run dev:stdio` | Dev mode (stdio) |
|
|
292
|
-
| `npm run dev:http` | Dev mode (HTTP) |
|
|
293
291
|
| `npm run start:stdio` | Production mode (stdio) |
|
|
294
292
|
| `npm run start:http` | Production mode (HTTP) |
|
|
295
293
|
| `npm run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
|
package/templates/CLAUDE.md
CHANGED
|
@@ -288,8 +288,6 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
288
288
|
| `npm run tree` | Generate directory structure doc |
|
|
289
289
|
| `npm run format` | Auto-fix formatting |
|
|
290
290
|
| `npm test` | Run tests |
|
|
291
|
-
| `npm run dev:stdio` | Dev mode (stdio) |
|
|
292
|
-
| `npm run dev:http` | Dev mode (HTTP) |
|
|
293
291
|
| `npm run start:stdio` | Production mode (stdio) |
|
|
294
292
|
| `npm run start:http` | Production mode (HTTP) |
|
|
295
293
|
| `npm run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
|
package/templates/package.json
CHANGED
|
@@ -29,8 +29,6 @@
|
|
|
29
29
|
"changelog:build": "tsx scripts/build-changelog.ts",
|
|
30
30
|
"changelog:check": "tsx scripts/build-changelog.ts --check",
|
|
31
31
|
"test": "vitest run",
|
|
32
|
-
"dev:stdio": "MCP_TRANSPORT_TYPE=stdio tsx --watch src/index.ts",
|
|
33
|
-
"dev:http": "MCP_TRANSPORT_TYPE=http tsx --watch src/index.ts",
|
|
34
32
|
"start": "node dist/index.js",
|
|
35
33
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
|
|
36
34
|
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
|