@dxtmisha/scripts 0.11.3 → 0.11.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.11.5] - 2026-08-19
6
+
7
+ ### Changed
8
+ - **Library Package Template (`.gitignore`)**:
9
+ - Added `ai-mcp-resources.json` to the library template's `_.gitignore.txt` to automatically ignore generated MCP resource files in newly scaffolded libraries.
10
+
11
+ ## [0.11.4] - 2026-08-19
12
+
13
+ ### Changed
14
+ - **AI Types Save Workflow (`dxt-types-save`)**:
15
+ - Added MCP resources generation (`await this.mcp.make()`) into `DesignTypes.makeSave()` to automatically generate and synchronize MCP resource manifests (`ai-mcp-resources.json`) when running fast type saving.
16
+
5
17
  ## [0.11.3] - 2026-08-19
6
18
 
7
19
  ### Added
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dxtmisha/scripts",
3
3
  "private": false,
4
- "version": "0.11.3",
4
+ "version": "0.11.5",
5
5
  "type": "module",
6
6
  "description": "CLI tools, AI integration scripts, and automation utilities for DXT UI — automated component scaffolding, Figma layout generation, library packaging, documentation building, screenshot captures, and AI prompt processing.",
7
7
  "keywords": [
@@ -81,6 +81,7 @@ export class DesignTypes {
81
81
 
82
82
  this.makeTypes.makeSave()
83
83
  await this.description.make()
84
+ await this.mcp.make()
84
85
 
85
86
  console.log('DesignTypes: AI types saved.')
86
87
 
@@ -12,6 +12,8 @@ dist-ssr
12
12
  *.local
13
13
 
14
14
  ai-types.md
15
+ ai-description.md
16
+ ai-mcp-resources.json
15
17
 
16
18
  # Editor directories and files
17
19
  .vscode/*