qlogicagent 2.10.14 → 2.10.16
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.
|
@@ -17,3 +17,4 @@ export declare function handleAgentsProcesses(this: any, msg: any): void;
|
|
|
17
17
|
export declare function handleAgentsKill(this: any, msg: any): void;
|
|
18
18
|
export declare function handleAgentsGetLog(this: any, msg: any): Promise<void>;
|
|
19
19
|
export declare function handleAgentsTestConnection(this: any, msg: any): Promise<void>;
|
|
20
|
+
export declare function handleAgentsPrompt(this: any, msg: any): Promise<void>;
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export { PetSoulService, type PetSoul, type PetStats, type PetBreed } from "./pet-soul-service.js";
|
|
5
5
|
export { maybeGenerateReaction, generateLLMReaction, type ReactionPool, type LLMReactionContext, type ReactionStyle } from "./pet-reaction-service.js";
|
|
6
|
-
export { petContextInjection } from "./pet-context-injection.js";
|
|
7
6
|
export { PetGrowthEngine, type GrowthEvent, type MoltResult, type PetAbility } from "./pet-growth-engine.js";
|
|
8
7
|
export { loadPetFile, validatePetManifest, sanitizeSvg, type PetManifest, type PetFileBundle } from "./pet-file-loader.js";
|
|
9
8
|
export { buildSkeletonPrompt, parseSkeleton, renderState, extractColors, validateSkeleton, STATE_ANIMATION_MAP, type PetSkeleton, type SkeletonPart, type StateAnimationParams } from "./pet-skeleton.js";
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Pet Context Injection — injects pet soul into agent system prompt.
|
|
3
|
-
*
|
|
4
|
-
* When a pet is hatched, this adds a brief section to the system prompt
|
|
5
|
-
* so the LLM "knows" the pet exists and can occasionally respond in character.
|
|
6
|
-
*/
|
|
7
|
-
import type { PetSoul } from "./pet-soul-service.js";
|
|
8
|
-
export declare function petContextInjection(soul: PetSoul | null): string;
|