@danypops/pi-papyrus 0.57.7 → 0.57.8

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.
@@ -930,6 +930,7 @@ export default async function (pi: ExtensionAPI) {
930
930
  project_root: ctx.cwd,
931
931
  applicable: true,
932
932
  activated: true,
933
+ full: true,
933
934
  activation_context: activationContext,
934
935
  session_id: sessionId,
935
936
  limit: PLAYBOOK_BRIDGE_MAX_PLAYBOOKS,
@@ -37,6 +37,7 @@ function slugify(title: string): string {
37
37
  async function activePlaybooks(projectRoot?: string, capabilities: readonly string[] = []): Promise<Artifact[]> {
38
38
  return callService<Record<string, unknown>, Artifact[]>("playbooks.list", {
39
39
  status: "active",
40
+ full: true,
40
41
  limit: PLAYBOOK_BRIDGE_MAX_PLAYBOOKS,
41
42
  ...(projectRoot === undefined
42
43
  ? {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danypops/pi-papyrus",
3
- "version": "0.57.7",
3
+ "version": "0.57.8",
4
4
  "description": "Pi host extension for Papyrus: native tools, TUI panels, and context injection over the daemon-backed graph store",
5
5
  "type": "module",
6
6
  "keywords": ["pi-package"],