pluribus-context 0.3.32 → 0.3.33

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/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  All notable changes to Pluribus are documented here.
6
6
 
7
+ ## 0.3.33 - 2026-05-26
8
+
9
+ - Added Agent Skill metadata frontmatter and a `/usage` attribution smoke to the context receipts skill so directory reviewers can evaluate it as a standard SKILL.md and connect receipts to component-level usage breakdowns.
10
+
7
11
  ## 0.3.32 - 2026-05-26
8
12
 
9
13
  - Added an executable compaction transaction/rollback receipt fixture for failed `/compact` runs, proving summary failure, `swap_committed=false`, original-context preservation, restored deferred-tool registry/system-reminder queue, and no stale reminder replay without logging raw transcript/tool output.
@@ -1,6 +1,11 @@
1
+ ---
2
+ name: context-receipts
3
+ description: Emit privacy-safe receipts for context selection, deferral, hydration, compaction, pruning, delegation, usage attribution, and boundary handoffs.
4
+ ---
5
+
1
6
  # Context Receipts
2
7
 
3
- Use this skill when an agent workflow claims to save context by selecting, deferring, hydrating, summarizing, compacting, pruning, delegating, or isolating context.
8
+ Use this skill when an agent workflow claims to save context by selecting, deferring, hydrating, summarizing, compacting, pruning, delegating, attributing usage, or isolating context.
4
9
 
5
10
  The job is not to log the private content. The job is to emit a small receipt that lets a reviewer answer:
6
11
 
@@ -95,6 +100,25 @@ Minimal JSONL event names:
95
100
  {"event":"subagent.toolsearch.matrix.completed","tested_axis":"tools_frontmatter_shape","audit_gap":"proves ToolSearch exposure, not semantic tool relevance or runtime call success"}
96
101
  ```
97
102
 
103
+ ## Usage attribution smoke
104
+
105
+ For `/usage`, `/context`, `/doctor`, or other context-budget breakdowns, map each displayed category to evidence that can be reviewed without exposing private content:
106
+
107
+ - what measurement window was used;
108
+ - which categories were attributed, such as skills, subagents, plugins, MCP servers, rules, memory, or project files;
109
+ - which components were loaded, deferred, hydrated, suppressed, pruned, or rolled back;
110
+ - before/after or current token/cost buckets by category;
111
+ - whether raw skill bodies, prompts, MCP schemas, tool outputs, and file paths were excluded;
112
+ - the remaining audit gap, such as not proving semantic usefulness of a high-cost component.
113
+
114
+ Minimal JSONL event names:
115
+
116
+ ```jsonl
117
+ {"event":"context.usage.window.measured","window":"current_session","total_token_bucket":"100k_150k","raw_prompts_copied":false}
118
+ {"event":"context.usage.category.attributed","category":"mcp_server","component_hash":"sha256:...","loaded_token_bucket":"10k_25k","deferred_definition_count":42,"hydrated_definition_count":3,"raw_schema_copied":false}
119
+ {"event":"context.usage.breakdown.completed","categories":["skills","subagents","plugins","mcp_server"],"audit_gap":"proves attribution buckets, not whether each component was necessary"}
120
+ ```
121
+
98
122
  ## Pruning / compaction smoke
99
123
 
100
124
  For context-cleaning, pruning, compaction, or doctor/guard tools, answer:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pluribus-context",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "description": "AI context and rules sync CLI for Claude.md, Claude Code, Cursor, and Copilot instructions, with privacy-safe context receipts that prove what memory, tools, skills, compactions, and security findings crossed agent boundaries without logging raw content.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/caioribeiroclw-pixel/pluribus#readme",
@@ -1 +1 @@
1
- export const VERSION = '0.3.32'
1
+ export const VERSION = '0.3.33'