aimeat 1.13.2 → 1.13.4
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/dist/public/llms-template.txt +11 -0
- package/dist/src/services/skill-bundle/generic-adapter.d.ts +10 -1
- package/dist/src/services/skill-bundle/generic-adapter.d.ts.map +1 -1
- package/dist/src/services/skill-bundle/generic-adapter.js +42 -2
- package/dist/src/services/skill-bundle/generic-adapter.js.map +1 -1
- package/dist/src/services/skill-bundle/hermes-adapter.d.ts.map +1 -1
- package/dist/src/services/skill-bundle/hermes-adapter.js +12 -3
- package/dist/src/services/skill-bundle/hermes-adapter.js.map +1 -1
- package/package.json +1 -1
|
@@ -103,6 +103,7 @@ entry: index.html
|
|
|
103
103
|
| AimeatRealtime | `loadScript('/lib/realtime.js')` | P2P rooms, multiplayer, chat |
|
|
104
104
|
| aimeat-social | `loadScript('/v1/libs/aimeat-social.js')` | Discussion boards |
|
|
105
105
|
| aimeat-wallet | `loadScript('/v1/libs/aimeat-wallet.js')` | Morsel balance display |
|
|
106
|
+
| aimeat-ai | `loadScript('/v1/libs/aimeat-ai.js')` | `AIMEAT.ai.complete/completeJson/isAvailable` — runs LLM completions using the user's own OpenRouter key (zero cost to AIMEAT, user-owned spend budget) |
|
|
106
107
|
|
|
107
108
|
### Key rules
|
|
108
109
|
|
|
@@ -276,6 +277,7 @@ The node serves browser-ready JavaScript libraries. Load them via `<script src="
|
|
|
276
277
|
| AimeatRealtime | `/lib/realtime.js` | WebSocket P2P rooms, WebRTC data channels, Yjs CRDT |
|
|
277
278
|
| aimeat-audio | `/v1/libs/aimeat-audio.js` | Audio: 6 instruments, custom synth, soundboard, sample loader |
|
|
278
279
|
| aimeat-speech | `/v1/libs/aimeat-speech.js` | Speech: TTS, STT, voice commands, pluggable providers |
|
|
280
|
+
| aimeat-ai | `/v1/libs/aimeat-ai.js` | LLM completions through the user's own OpenRouter key (`AIMEAT.ai.complete`, `completeJson`, `isAvailable`, `models`, `usage`). Server enforces daily USD budget + per-app quota; rejects with descriptive `err.code` (NO_API_KEY / QUOTA_EXHAUSTED / APP_QUOTA_EXHAUSTED / APP_NOT_ALLOWED / etc.). Pattern: **detect** with `isAvailable()`, **compose** the prompt yourself from app data, **call** with `app_id` so spend is attributable, **render** the result into an editable field so the human stays in the loop. Never bundle your own API key — use the user's. |
|
|
279
281
|
|
|
280
282
|
### Standard App Template
|
|
281
283
|
|
|
@@ -540,6 +542,15 @@ the response to a Blob, and use `URL.createObjectURL(blob)` as the src.
|
|
|
540
542
|
### SDK Library API Quick Reference
|
|
541
543
|
|
|
542
544
|
When building apps, prefer the SDK libraries over raw `session.fetch()` calls.
|
|
545
|
+
|
|
546
|
+
For AI-assisted features in your app (suggest tags, polish summaries, translate,
|
|
547
|
+
quality checks, etc.) read the full guide before wiring anything up:
|
|
548
|
+
|
|
549
|
+
- **App Developer AI Guide:** `docs/app-developer-ai-guide.md` — patterns, prompt
|
|
550
|
+
composition, error codes, spend safety, cookbook examples. The capability uses
|
|
551
|
+
the user's own OpenRouter key (configured once in their AIMEAT profile) so apps
|
|
552
|
+
never bundle their own; spend is bounded by a per-user daily USD budget and
|
|
553
|
+
optional per-app quota.
|
|
543
554
|
Load each library via `<script src="..."></script>`. All require `aimeat-auth.js` first.
|
|
544
555
|
|
|
545
556
|
**AIMEAT.auth** (`/v1/libs/aimeat-auth.js`):
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* @file generic-adapter.ts
|
|
3
3
|
* @description Generic fallback runtime adapter for skill bundle generation.
|
|
4
4
|
* Produces aimeat-agent bundle with minimal SKILL.md + references only.
|
|
5
|
-
* Used for runtimes without a dedicated adapter.
|
|
5
|
+
* Used for runtimes without a dedicated adapter (e.g. crewai, langgraph,
|
|
6
|
+
* autogen, hand-rolled MCP-capable agents).
|
|
6
7
|
* @version-history
|
|
7
8
|
* v1.0.0 -- 2026-05-23 -- Initial creation for Agent Integration Phase A
|
|
8
9
|
* v1.1.0 -- 2026-05-28 -- Clarify connected agent identity and Hello Integration MCP flow
|
|
@@ -10,6 +11,14 @@
|
|
|
10
11
|
* v1.1.2 -- 2026-05-28 -- State that Hello Integration is required first-run onboarding
|
|
11
12
|
* v1.1.3 -- 2026-05-28 -- Clarify post-onboarding setup publishes actual commands, config, and knowledge artifacts
|
|
12
13
|
* v1.1.4 -- 2026-05-28 -- Add shared owner-memory tag guidance
|
|
14
|
+
* v1.2.0 -- 2026-05-29 -- Add Anthropic Agent-Skill style YAML frontmatter
|
|
15
|
+
* (name/description/trigger) so frameworks that natively load SKILL.md as a
|
|
16
|
+
* skill (CrewAI >= 1.14 via discover_skills(), Claude Agent Skills, future
|
|
17
|
+
* LangGraph/AutoGen adapters) can register the bundle as a first-class
|
|
18
|
+
* skill rather than reading it as free-form text. Bundle content below the
|
|
19
|
+
* frontmatter is unchanged; existing LLM-driven flows that parse the body
|
|
20
|
+
* are unaffected. The hermes-adapter has shipped with frontmatter since
|
|
21
|
+
* v1.0.0 and proved the format is non-breaking for downstream consumers.
|
|
13
22
|
*/
|
|
14
23
|
import type { RuntimeAdapter, BundleContext, BundleFile, BundleContent } from './types.js';
|
|
15
24
|
export declare class GenericAdapter implements RuntimeAdapter {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generic-adapter.d.ts","sourceRoot":"","sources":["../../../../src/services/skill-bundle/generic-adapter.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"generic-adapter.d.ts","sourceRoot":"","sources":["../../../../src/services/skill-bundle/generic-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3F,qBAAa,cAAe,YAAW,cAAc;IACnD,QAAQ,CAAC,OAAO,aAAa;IAC7B,QAAQ,CAAC,UAAU,kBAAkB;IAErC,QAAQ,CAAC,GAAG,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,GAAG,aAAa;IAsBrE,OAAO,CAAC,aAAa;CA8GtB"}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* @file generic-adapter.ts
|
|
3
3
|
* @description Generic fallback runtime adapter for skill bundle generation.
|
|
4
4
|
* Produces aimeat-agent bundle with minimal SKILL.md + references only.
|
|
5
|
-
* Used for runtimes without a dedicated adapter.
|
|
5
|
+
* Used for runtimes without a dedicated adapter (e.g. crewai, langgraph,
|
|
6
|
+
* autogen, hand-rolled MCP-capable agents).
|
|
6
7
|
* @version-history
|
|
7
8
|
* v1.0.0 -- 2026-05-23 -- Initial creation for Agent Integration Phase A
|
|
8
9
|
* v1.1.0 -- 2026-05-28 -- Clarify connected agent identity and Hello Integration MCP flow
|
|
@@ -10,6 +11,14 @@
|
|
|
10
11
|
* v1.1.2 -- 2026-05-28 -- State that Hello Integration is required first-run onboarding
|
|
11
12
|
* v1.1.3 -- 2026-05-28 -- Clarify post-onboarding setup publishes actual commands, config, and knowledge artifacts
|
|
12
13
|
* v1.1.4 -- 2026-05-28 -- Add shared owner-memory tag guidance
|
|
14
|
+
* v1.2.0 -- 2026-05-29 -- Add Anthropic Agent-Skill style YAML frontmatter
|
|
15
|
+
* (name/description/trigger) so frameworks that natively load SKILL.md as a
|
|
16
|
+
* skill (CrewAI >= 1.14 via discover_skills(), Claude Agent Skills, future
|
|
17
|
+
* LangGraph/AutoGen adapters) can register the bundle as a first-class
|
|
18
|
+
* skill rather than reading it as free-form text. Bundle content below the
|
|
19
|
+
* frontmatter is unchanged; existing LLM-driven flows that parse the body
|
|
20
|
+
* are unaffected. The hermes-adapter has shipped with frontmatter since
|
|
21
|
+
* v1.0.0 and proved the format is non-breaking for downstream consumers.
|
|
13
22
|
*/
|
|
14
23
|
import { computeBundleVersion } from './generator.js';
|
|
15
24
|
export class GenericAdapter {
|
|
@@ -38,7 +47,38 @@ export class GenericAdapter {
|
|
|
38
47
|
const rulesBlock = ctx.directives.rules.length > 0
|
|
39
48
|
? ctx.directives.rules.map((r, i) => `${i + 1}. ${r.description}`).join('\n')
|
|
40
49
|
: 'No specific rules configured.';
|
|
41
|
-
|
|
50
|
+
// Frontmatter is required for frameworks that auto-discover skills (CrewAI's
|
|
51
|
+
// discover_skills(), Anthropic Agent Skills). CrewAI's strict validation:
|
|
52
|
+
// - REQUIRED: name (str), description (str)
|
|
53
|
+
// - OPTIONAL: license, compatibility, metadata (dict), allowed_tools (list)
|
|
54
|
+
// - DIRECTORY name MUST equal frontmatter `name` -- CrewAI rejects with
|
|
55
|
+
// "Directory name X does not match skill name Y"
|
|
56
|
+
//
|
|
57
|
+
// Because the bundle is downloaded into ~/.aimeat/agents/<agent_name>/, we
|
|
58
|
+
// set `name` to <agent_name> so the directory-vs-name check passes. Each
|
|
59
|
+
// agent's bundle is therefore its OWN distinct Skill in CrewAI -- e.g. a
|
|
60
|
+
// demo-crew Skill, a company-crew Skill, etc. This is actually useful:
|
|
61
|
+
// crews with multiple AIMEAT identities (rare but legal) get distinct skill
|
|
62
|
+
// namespaces.
|
|
63
|
+
//
|
|
64
|
+
// `trigger` and `tags` are AIMEAT/Anthropic conventions that CrewAI does
|
|
65
|
+
// NOT understand as top-level keys (it just ignores them harmlessly).
|
|
66
|
+
// Stuffed into `metadata: {...}` they survive into the loaded Skill object
|
|
67
|
+
// as inspectable data, AND they remain present as YAML so an LLM reading
|
|
68
|
+
// the raw SKILL.md still sees them.
|
|
69
|
+
return `---
|
|
70
|
+
name: ${ctx.agentName}
|
|
71
|
+
description: AIMEAT node integration for agent ${ctx.agentName} on ${ctx.nodeUrl} -- identity, shared memory, task lifecycle, capabilities catalog, federation. Activate when the agent needs to call any AIMEAT tool, check onboarding status, write to memory, contribute knowledge, complete tasks, or coordinate with other agents.
|
|
72
|
+
metadata:
|
|
73
|
+
trigger: when the agent needs to call any AIMEAT tool, check onboarding status, write to memory, contribute knowledge, complete tasks, or coordinate with other agents on the AIMEAT node
|
|
74
|
+
tags: [aimeat, agent-orchestration, mcp]
|
|
75
|
+
aimeat_node_id: ${ctx.nodeId}
|
|
76
|
+
aimeat_node_url: ${ctx.nodeUrl}
|
|
77
|
+
aimeat_agent_gaii: ${ctx.agentGaii}
|
|
78
|
+
aimeat_runtime: generic
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
# AIMEAT Agent Integration
|
|
42
82
|
|
|
43
83
|
## Identity
|
|
44
84
|
- Agent: ${ctx.agentName}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generic-adapter.js","sourceRoot":"","sources":["../../../../src/services/skill-bundle/generic-adapter.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"generic-adapter.js","sourceRoot":"","sources":["../../../../src/services/skill-bundle/generic-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,OAAO,cAAc;IAChB,OAAO,GAAG,SAAS,CAAC;IACpB,UAAU,GAAG,cAAc,CAAC;IAErC,QAAQ,CAAC,GAAkB,EAAE,UAAwB;QACnD,MAAM,KAAK,GAAiB;YAC1B,EAAE,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,EAAE;YACtD,GAAG,UAAU;SACd,CAAC;QAEF,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,OAAO,EAAE,EAAE;YACX,SAAS,EAAE,GAAG,CAAC,SAAS;YACxB,SAAS,EAAE,GAAG,CAAC,SAAS;YACxB,MAAM,EAAE,GAAG,CAAC,MAAM;YAClB,OAAO,EAAE,GAAG,CAAC,OAAO;YACpB,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;SACtC,CAAC;QAEF,MAAM,MAAM,GAAkB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;QAClD,MAAM,CAAC,QAAQ,CAAC,OAAO,GAAG,oBAAoB,CAAC,MAAM,CAAC,CAAC;QACvD,OAAO,MAAM,CAAC;IAChB,CAAC;IAEO,aAAa,CAAC,GAAkB;QACtC,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;YAChD,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;YAC7E,CAAC,CAAC,+BAA+B,CAAC;QAEpC,6EAA6E;QAC7E,0EAA0E;QAC1E,8CAA8C;QAC9C,8EAA8E;QAC9E,0EAA0E;QAC1E,qDAAqD;QACrD,EAAE;QACF,2EAA2E;QAC3E,yEAAyE;QACzE,yEAAyE;QACzE,uEAAuE;QACvE,4EAA4E;QAC5E,cAAc;QACd,EAAE;QACF,yEAAyE;QACzE,sEAAsE;QACtE,2EAA2E;QAC3E,yEAAyE;QACzE,oCAAoC;QACpC,OAAO;QACH,GAAG,CAAC,SAAS;iDAC4B,GAAG,CAAC,SAAS,OAAO,GAAG,CAAC,OAAO;;;;oBAI5D,GAAG,CAAC,MAAM;qBACT,GAAG,CAAC,OAAO;uBACT,GAAG,CAAC,SAAS;;;;;;;WAOzB,GAAG,CAAC,SAAS;UACd,GAAG,CAAC,SAAS;UACb,GAAG,CAAC,OAAO,KAAK,GAAG,CAAC,MAAM;;wDAEoB,GAAG,CAAC,SAAS;;;;;;;;;;;;;gGAa2B,GAAG,CAAC,OAAO,cAAc,GAAG,CAAC,SAAS;;;EAGpI,UAAU;;;;;kCAKsB,GAAG,CAAC,SAAS;uCACR,GAAG,CAAC,SAAS;;;;;;;;;;;OAW7C,GAAG,CAAC,OAAO;mBACC,GAAG,CAAC,SAAS;;;;;;;;;;OAUzB,GAAG,CAAC,OAAO;;;;;;;;;;;;;;;;;;;;;CAqBjB,CAAC;IACA,CAAC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hermes-adapter.d.ts","sourceRoot":"","sources":["../../../../src/services/skill-bundle/hermes-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3F,qBAAa,aAAc,YAAW,cAAc;IAClD,QAAQ,CAAC,OAAO,YAAY;IAC5B,QAAQ,CAAC,UAAU,mBAAmB;IAEtC,QAAQ,CAAC,GAAG,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,GAAG,aAAa;IA2BrE,OAAO,CAAC,aAAa;
|
|
1
|
+
{"version":3,"file":"hermes-adapter.d.ts","sourceRoot":"","sources":["../../../../src/services/skill-bundle/hermes-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3F,qBAAa,aAAc,YAAW,cAAc;IAClD,QAAQ,CAAC,OAAO,YAAY;IAC5B,QAAQ,CAAC,UAAU,mBAAmB;IAEtC,QAAQ,CAAC,GAAG,EAAE,aAAa,EAAE,UAAU,EAAE,UAAU,EAAE,GAAG,aAAa;IA2BrE,OAAO,CAAC,aAAa;IAwGrB,OAAO,CAAC,eAAe;IAkEvB,OAAO,CAAC,mBAAmB;IAmC3B,OAAO,CAAC,oBAAoB;IA2C5B,OAAO,CAAC,kBAAkB;IAyB1B,OAAO,CAAC,eAAe;CAaxB"}
|
|
@@ -47,10 +47,19 @@ export class HermesAdapter {
|
|
|
47
47
|
const rulesBlock = ctx.directives.rules.length > 0
|
|
48
48
|
? ctx.directives.rules.map((r, i) => `${i + 1}. ${r.description}`).join('\n')
|
|
49
49
|
: 'No specific rules configured.';
|
|
50
|
+
// See generic-adapter.ts for the rationale on CrewAI-strict frontmatter.
|
|
51
|
+
// Same shape: name=<agent_name> so directory-vs-name validation passes,
|
|
52
|
+
// trigger/tags stuffed into metadata.
|
|
50
53
|
return `---
|
|
51
|
-
name:
|
|
52
|
-
description: AIMEAT node integration for ${ctx.
|
|
53
|
-
|
|
54
|
+
name: ${ctx.agentName}
|
|
55
|
+
description: AIMEAT node integration for Hermes-runtime agent ${ctx.agentName} on ${ctx.nodeUrl} -- on-wake protocol, watchdog cron job, MCP tool catalogue, Hello Integration handshake. Activate when the agent needs to call any AIMEAT tool, check onboarding status, write to memory, contribute knowledge, complete tasks, or coordinate with other agents.
|
|
56
|
+
metadata:
|
|
57
|
+
trigger: when the agent needs to call any AIMEAT tool, check onboarding status, write to memory, contribute knowledge, complete tasks, or coordinate with other agents on the AIMEAT node
|
|
58
|
+
tags: [aimeat, agent-orchestration, mcp, hermes]
|
|
59
|
+
aimeat_node_id: ${ctx.nodeId}
|
|
60
|
+
aimeat_node_url: ${ctx.nodeUrl}
|
|
61
|
+
aimeat_agent_gaii: ${ctx.agentGaii}
|
|
62
|
+
aimeat_runtime: hermes
|
|
54
63
|
---
|
|
55
64
|
|
|
56
65
|
## Identity
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hermes-adapter.js","sourceRoot":"","sources":["../../../../src/services/skill-bundle/hermes-adapter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,OAAO,aAAa;IACf,OAAO,GAAG,QAAQ,CAAC;IACnB,UAAU,GAAG,eAAe,CAAC;IAEtC,QAAQ,CAAC,GAAkB,EAAE,UAAwB;QACnD,MAAM,KAAK,GAAiB;YAC1B,EAAE,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,EAAE;YACtD,GAAG,UAAU;YACb,EAAE,IAAI,EAAE,uBAAuB,EAAE,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;YACrE,EAAE,IAAI,EAAE,2BAA2B,EAAE,OAAO,EAAE,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,EAAE;YAC7E,EAAE,IAAI,EAAE,4BAA4B,EAAE,OAAO,EAAE,IAAI,CAAC,oBAAoB,CAAC,GAAG,CAAC,EAAE;YAC/E,EAAE,IAAI,EAAE,2BAA2B,EAAE,OAAO,EAAE,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,EAAE;YAC5E,EAAE,IAAI,EAAE,mBAAmB,EAAE,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;SAClE,CAAC;QAEF,MAAM,QAAQ,GAAG;YACf,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,OAAO,EAAE,EAAE;YACX,SAAS,EAAE,GAAG,CAAC,SAAS;YACxB,SAAS,EAAE,GAAG,CAAC,SAAS;YACxB,MAAM,EAAE,GAAG,CAAC,MAAM;YAClB,OAAO,EAAE,GAAG,CAAC,OAAO;YACpB,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;SACtC,CAAC;QAEF,MAAM,MAAM,GAAkB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;QAClD,MAAM,CAAC,QAAQ,CAAC,OAAO,GAAG,oBAAoB,CAAC,MAAM,CAAC,CAAC;QACvD,OAAO,MAAM,CAAC;IAChB,CAAC;IAEO,aAAa,CAAC,GAAkB;QACtC,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;YAChD,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;YAC7E,CAAC,CAAC,+BAA+B,CAAC;QAEpC,OAAO
|
|
1
|
+
{"version":3,"file":"hermes-adapter.js","sourceRoot":"","sources":["../../../../src/services/skill-bundle/hermes-adapter.ts"],"names":[],"mappings":"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"}
|