@h4shed/skill-theme-factory 1.0.0 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -25,3 +25,19 @@ Generate design system themes with colors, typography, and spacing.
25
25
  - ✅ Tool definitions
26
26
  - 📝 Theme templates
27
27
  - ⏳ Full implementation (WIP)
28
+
29
+ ## Usage
30
+
31
+ This package exports an MCP skill definition that can be loaded by `@fused-gaming/mcp-core` via the workspace skill registry.
32
+
33
+ ## Development
34
+
35
+ ```bash
36
+ # from repository root
37
+ npm run build --workspace=packages/skills/theme-factory
38
+ npm run test --workspace=packages/skills/theme-factory
39
+ ```
40
+
41
+ ## License
42
+
43
+ Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h4shed/skill-theme-factory",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "Design system and theme generation for consistent UI/UX across applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -13,7 +13,7 @@
13
13
  "test": "echo \"No tests yet\""
14
14
  },
15
15
  "dependencies": {
16
- "@h4shed/mcp-core": "*"
16
+ "@h4shed/mcp-core": "1.0.3"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^20.12.0",