@uicontract/skill 0.1.0 → 0.2.0

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/SKILL.md +4 -2
  2. package/package.json +6 -3
package/SKILL.md CHANGED
@@ -95,8 +95,10 @@ npx uicontract name manifest.json -o manifest.json
95
95
  | Flag | Description |
96
96
  |------|-------------|
97
97
  | `-o, --output <path>` | Output file path |
98
- | `--ai` | Use AI-assisted naming for ambiguous elements |
99
- | `--ai-timeout <ms>` | Timeout for AI naming requests |
98
+ | `--ai` | Use AI-assisted naming for ambiguous elements (experimental) |
99
+ | `--ai-provider <name>` | AI provider: `openai`, `anthropic`, or `google` (auto-detected from env) |
100
+ | `--ai-model <model>` | Override the default model for the AI provider |
101
+ | `--ai-timeout <ms>` | Timeout for AI naming requests (default: 10000) |
100
102
 
101
103
  **annotate** -- Insert `data-agent-id` attributes into source files.
102
104
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uicontract/skill",
3
- "version": "0.1.0",
4
- "description": "Agent skill files for UIC - makes web app UIs machine-readable for AI coding agents",
3
+ "version": "0.2.0",
4
+ "description": "Agent skill files for UI Contracts - makes web app UIs machine-readable for AI coding agents",
5
5
  "license": "MIT",
6
6
  "author": "UIC Contributors",
7
7
  "homepage": "https://github.com/sherifkozman/uicontract",
@@ -14,8 +14,8 @@
14
14
  "url": "https://github.com/sherifkozman/uicontract/issues"
15
15
  },
16
16
  "keywords": [
17
- "uic",
18
17
  "ui-contracts",
18
+ "uicontract",
19
19
  "agent",
20
20
  "skill",
21
21
  "ai-agent",
@@ -26,6 +26,9 @@
26
26
  "cursor",
27
27
  "copilot"
28
28
  ],
29
+ "engines": {
30
+ "node": ">=20"
31
+ },
29
32
  "publishConfig": {
30
33
  "access": "public"
31
34
  },