Skip to content

Commit 26e6dfd

Browse files
authored
Harden attachment feature probe (#20)
1 parent 634fe9d commit 26e6dfd

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

plugins/cuey/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cuey",
3-
"version": "0.4.15",
3+
"version": "0.4.16",
44
"description": "Cuey is an agentic financial intelligence system that analyzes prompts and Excel workbooks, improves decision accuracy through cross-checking and fact-checking, and delivers evidence-backed recommendations.",
55
"author": {
66
"name": "TensorBlock",

plugins/cuey/skills/cuey/SKILL.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ For each current-message attachment that exposes a readable sandbox path, collec
9090
- SHA-256 of the exact bytes when Claude can read the file;
9191
- magic/type detection from `file` or first-byte inspection;
9292
- type-specific metadata when cheap: image dimensions for PNG/JPEG, PDF page estimate, ZIP/OOXML entry count, `.xlsx` sheet names if readable from `xl/workbook.xml`, CSV/text line count and encoding guess;
93-
- transport feasibility flags: `raw_bytes_readable_by_claude`, `inline_base64_possible_estimate`, `local_mcp_path_readable_estimate` (`false` for `/root/.claude/uploads/...` sandbox paths).
93+
- transport feasibility flags: `raw_bytes_readable_by_claude`, `sandbox_path_visible_to_claude`, `local_mcp_path_readable_estimate` (`false` for `/root/.claude/uploads/...` sandbox paths).
9494

95-
Use this payload shape. `upload` must be `false` or omitted:
95+
Use this payload shape. Do not include `upload`, `base64`, `dataBase64`, `contentBase64`, `bytes`, `content`, or file contents anywhere in the payload:
9696

9797
```json
9898
{
@@ -120,7 +120,7 @@ Use this payload shape. `upload` must be `false` or omitted:
120120
},
121121
"transport": {
122122
"rawBytesReadableByClaude": true,
123-
"inlineBase64PossibleEstimate": true,
123+
"sandboxPathVisibleToClaude": true,
124124
"localMcpPathReadableEstimate": false
125125
}
126126
}
@@ -133,8 +133,7 @@ Use this payload shape. `upload` must be `false` or omitted:
133133
}
134134
],
135135
"files": [],
136-
"context": "",
137-
"upload": false
136+
"context": ""
138137
}
139138
```
140139

0 commit comments

Comments
 (0)