@cyanheads/mcp-ts-core 0.10.9 → 0.10.11
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/AGENTS.md +22 -10
- package/CLAUDE.md +22 -10
- package/README.md +1 -10
- package/biome.json +1 -1
- package/changelog/0.10.x/0.10.10.md +39 -0
- package/changelog/0.10.x/0.10.11.md +39 -0
- package/changelog/template.md +5 -3
- package/dist/core/app.js +3 -3
- package/dist/core/app.js.map +1 -1
- package/dist/logs/combined.log +8 -19
- package/dist/logs/error.log +4 -10
- package/dist/mcp-server/tools/utils/toolDefinition.d.ts +4 -3
- package/dist/mcp-server/tools/utils/toolDefinition.d.ts.map +1 -1
- package/dist/mcp-server/tools/utils/toolDefinition.js.map +1 -1
- package/dist/utils/parsing/yamlParser.d.ts +1 -1
- package/dist/utils/parsing/yamlParser.d.ts.map +1 -1
- package/dist/utils/parsing/yamlParser.js +5 -2
- package/dist/utils/parsing/yamlParser.js.map +1 -1
- package/package.json +24 -28
- package/scripts/build-changelog.ts +1 -1
- package/skills/api-utils/SKILL.md +1 -1
- package/skills/api-utils/references/parsing.md +1 -1
- package/skills/code-simplifier/SKILL.md +6 -6
- package/skills/design-mcp-server/SKILL.md +51 -15
- package/skills/git-wrapup/SKILL.md +12 -5
- package/skills/orchestrations/SKILL.md +2 -2
- package/skills/polish-docs-meta/SKILL.md +1 -1
- package/skills/polish-docs-meta/references/readme.md +0 -14
- package/skills/release-and-publish/SKILL.md +3 -1
- package/templates/AGENTS.md +27 -21
- package/templates/CLAUDE.md +27 -21
- package/templates/changelog/template.md +5 -3
- package/templates/package.json +2 -2
|
@@ -15,9 +15,11 @@ summary: ""
|
|
|
15
15
|
# usage. Flagged as `Breaking` in the rollup.
|
|
16
16
|
breaking: false
|
|
17
17
|
|
|
18
|
-
# Set `true`
|
|
19
|
-
#
|
|
20
|
-
#
|
|
18
|
+
# Set `true` ONLY for a security fix in THIS project's own source code — a
|
|
19
|
+
# vulnerability or hardening in code you ship. A dependency or transitive CVE
|
|
20
|
+
# bump is routine maintenance, NOT a security release: record it under
|
|
21
|
+
# `## Dependencies` (with the advisory ID) and leave this `false`. When true,
|
|
22
|
+
# pairs with the `## Security` section below and flags `Security` in the rollup.
|
|
21
23
|
security: false
|
|
22
24
|
|
|
23
25
|
# Optional free-form notes for maintenance agents processing this release.
|
package/templates/package.json
CHANGED