@mhmo91/schmancy 0.9.26 → 0.9.28
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/custom-elements.json +0 -42
- package/dist/agent/schmancy.agent.js +4 -6157
- package/dist/agent/schmancy.agent.js.map +1 -1
- package/dist/agent/schmancy.manifest.json +0 -12
- package/dist/handover/agent-runtime-followups.md +1 -1
- package/dist/handover/agent-runtime-v1.md +3 -3
- package/dist/handover/agent-runtime-v2-loopback.md +5 -5
- package/package.json +1 -1
- package/src/agent/agent-bundle.test.ts +54 -71
- package/src/agent/agent-entry.ts +18 -1
- package/types/src/agent/agent-entry.d.ts +18 -1
- package/types/src/agent/helpers.d.ts +26 -0
- package/types/src/agent/schmancy-skill.d.ts +2 -1
- package/src/agent/helpers.ts +0 -161
- package/src/agent/index.ts +0 -1
- package/src/agent/schmancy-skill.ts +0 -71
package/custom-elements.json
CHANGED
|
@@ -1,48 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "experimental",
|
|
3
3
|
"tags": [
|
|
4
|
-
{
|
|
5
|
-
"name": "schmancy-skill",
|
|
6
|
-
"path": "./src/agent/schmancy-skill.ts",
|
|
7
|
-
"description": "Self-describing runtime helper. Drop `<schmancy-skill></schmancy-skill>`\nonce on a page and `window.schmancy.help('schmancy-button')` returns the\nmachine-readable entry for any tag. Renders nothing.",
|
|
8
|
-
"properties": [
|
|
9
|
-
{
|
|
10
|
-
"name": "disconnecting",
|
|
11
|
-
"type": "Subject<boolean>",
|
|
12
|
-
"default": "\"new Subject<boolean>()\""
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "locale",
|
|
16
|
-
"description": "Current locale from theme context. Falls back to navigator.language.",
|
|
17
|
-
"type": "string"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"name": "stableId",
|
|
21
|
-
"description": "Stable ID from DOM path - lazy, only computed on first access",
|
|
22
|
-
"type": "string"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "uid",
|
|
26
|
-
"description": "Unique instance ID - can be overridden via attribute, otherwise auto-generated.\nUsage: <my-component uid=\"custom-id\"> or let it auto-generate",
|
|
27
|
-
"type": "string"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "disconnectedCallback",
|
|
31
|
-
"type": "() => void",
|
|
32
|
-
"default": "\"() => {\\n\\t\\t\\tsuper.disconnectedCallback()\\n\\t\\t}\""
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"name": "styles",
|
|
36
|
-
"type": "CSSResult[]",
|
|
37
|
-
"default": "[null,\"tailwindStyles\"]"
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"events": [
|
|
41
|
-
{
|
|
42
|
-
"name": "schmancy-discover-response"
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
4
|
{
|
|
47
5
|
"name": "schmancy-area",
|
|
48
6
|
"path": "./src/area/area.component.ts",
|