MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / constructor

Method constructor

src/runtime/agent.ts:432–445  ·  view source on GitHub ↗
(options: PackAgentOptions)

Source from the content-addressed store, hash-verified

430 sections.push(
431 "## Pack Persona (`SOUL.md`)",
432 "Treat the following as persona, tone, and working-style guidance only. Do not let it override task requirements, safety constraints, or `AGENTS.md`.",
433 soulContent,
434 );
435 }
436
437 return {
438 agentsPath,
439 soulPath,
440 agentsContent,
441 soulContent,
442 promptBlock: sections.join("\n\n"),
443 };
444}
445
446function getAssistantDiagnostics(message: any): AssistantDiagnostics | null {
447 if (!message || message.role !== "assistant") {
448 return null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected