@maestroagora/agora 1.7.0 → 1.9.0
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +2 -2
- package/.codex-plugin/plugin.json +6 -5
- package/DISCLAIMER.md +3 -1
- package/PRIVACY.md +12 -2
- package/README.md +37 -2
- package/package.json +7 -3
- package/scripts/install.mjs +3 -0
- package/skills/agora/SKILL.md +29 -40
- package/skills/agora/agents/openai.yaml +2 -2
- package/skills/agora/references/agora-marketing.md +36 -8
- package/skills/agora/references/agora-publication.md +137 -0
- package/skills/agora/references/agora-science.md +13 -2
- package/skills/agora/scripts/publication-audit.mjs +1225 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Agora publication privacy and provenance
|
|
2
|
+
|
|
3
|
+
Use this reference only for an explicit request to inspect a local artifact before publication or external sharing. Agora remains a writing system during ordinary drafting.
|
|
4
|
+
|
|
5
|
+
## Contents
|
|
6
|
+
|
|
7
|
+
- [Purpose and boundary](#purpose-and-boundary)
|
|
8
|
+
- [Model-level text watermark boundary](#model-level-text-watermark-boundary)
|
|
9
|
+
- [Trigger and non-trigger rules](#trigger-and-non-trigger-rules)
|
|
10
|
+
- [Run the audit](#run-the-audit)
|
|
11
|
+
- [Interpret the report](#interpret-the-report)
|
|
12
|
+
- [Format coverage](#format-coverage)
|
|
13
|
+
- [Unicode review](#unicode-review)
|
|
14
|
+
- [Metadata and privacy review](#metadata-and-privacy-review)
|
|
15
|
+
- [Provenance review](#provenance-review)
|
|
16
|
+
- [Publication decision](#publication-decision)
|
|
17
|
+
- [Sources](#sources)
|
|
18
|
+
|
|
19
|
+
## Purpose and boundary
|
|
20
|
+
|
|
21
|
+
Inspect the artifact that will leave the user's control. Report hidden text controls, document metadata, review material, and provenance carriers without changing source bytes.
|
|
22
|
+
|
|
23
|
+
Never describe this audit as a watermark remover, AI detector, authorship detector, humanizer, anonymizer, metadata cleaner, or proof that a file is safe or clean. Do not promise detector evasion. A missing finding means only that the named check did not find its configured signal.
|
|
24
|
+
|
|
25
|
+
Claude's documented text marking is model-level. Do not imply that a Unicode scan can detect or remove it. Unicode review and file metadata review solve narrower publication-hygiene problems.
|
|
26
|
+
|
|
27
|
+
## Model-level text watermark boundary
|
|
28
|
+
|
|
29
|
+
A token-distribution watermark is introduced during generation by changing token-selection probabilities. It is not a hidden Unicode string or an ordinary file property. Detection can depend on the matching tokenizer, keyed hash or partition rule, normalization procedure, statistical threshold, and enough eligible text. Without the provider's verifier or equivalent configuration, the result remains `UNKNOWN`.
|
|
30
|
+
|
|
31
|
+
The Kirchenbauer et al. green-list method is one research example, not evidence that Claude uses that exact scheme. It shows why short or low-entropy text can provide weaker statistical evidence, why editing may dilute rather than deterministically remove a mark, and why a detector can normalize whitespace, homoglyph, or zero-width changes before testing. Unusual Unicode is therefore neither evidence of a model-level watermark nor reliable evidence that one was removed.
|
|
32
|
+
|
|
33
|
+
Do not estimate model-level watermark status from prose style, generic AI-detector scores, ad hoc word frequencies, or the absence of metadata findings.
|
|
34
|
+
|
|
35
|
+
## Trigger and non-trigger rules
|
|
36
|
+
|
|
37
|
+
Load this reference when the user explicitly asks Agora to:
|
|
38
|
+
|
|
39
|
+
- inspect one or more local files before publication, submission, delivery, or external sharing;
|
|
40
|
+
- find hidden Unicode, metadata, comments, notes, tracked changes, personal information, or provenance records;
|
|
41
|
+
- perform a publication privacy or provenance audit;
|
|
42
|
+
- review an artifact produced by another document, presentation, PDF, site, design, or image tool before release.
|
|
43
|
+
|
|
44
|
+
Do not load or run the audit merely because writing is public, indexable, generated with AI, or being optimized for GEO/AEO. Do not run it against ordinary chat text unless the user supplies or identifies a local file. Do not create SVG, PNG, JPEG, PDF, DOCX, or PPTX files solely to make this workflow applicable.
|
|
45
|
+
|
|
46
|
+
## Run the audit
|
|
47
|
+
|
|
48
|
+
Use the shipped read-only script:
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
node <skill-root>/scripts/publication-audit.mjs <path...>
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Use JSON when another tool or agent will consume the report:
|
|
55
|
+
|
|
56
|
+
```sh
|
|
57
|
+
node <skill-root>/scripts/publication-audit.mjs <path...> --json
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Keep sensitive metadata values redacted by default. Use `--show-values` only when the user explicitly needs exact values. Use `--include-paths` only when full local paths are necessary. Use `--verify-c2pa` only when local C2PA verification is requested; the script supplies settings that disable remote-manifest fetching.
|
|
61
|
+
|
|
62
|
+
The script may write an audit report only through an explicit `--output <path>`. It refuses to overwrite an existing report. It never writes to a source file.
|
|
63
|
+
|
|
64
|
+
## Interpret the report
|
|
65
|
+
|
|
66
|
+
Use the exact states:
|
|
67
|
+
|
|
68
|
+
| State | Meaning |
|
|
69
|
+
|---|---|
|
|
70
|
+
| `FOUND` | The named check observed its configured signal. |
|
|
71
|
+
| `NOT_FOUND_BY_THIS_CHECK` | The named check ran and did not observe that signal. |
|
|
72
|
+
| `UNKNOWN` | Coverage was unavailable, unsupported, skipped, partial, or not requested. |
|
|
73
|
+
| `ERROR` | The named check could not complete. |
|
|
74
|
+
|
|
75
|
+
Use finding severities as routing aids, not verdicts:
|
|
76
|
+
|
|
77
|
+
| Severity | Treatment |
|
|
78
|
+
|---|---|
|
|
79
|
+
| `info` | Normal technical detail that may still matter to publication. |
|
|
80
|
+
| `review` | Inspect purpose and intended audience before publishing. |
|
|
81
|
+
| `sensitive` | Likely personal, organizational, editorial, or hidden review material. |
|
|
82
|
+
| `provenance` | Origin or processing information. Presence is not automatically harmful. |
|
|
83
|
+
|
|
84
|
+
Never collapse `UNKNOWN` into success. Never translate `NOT_FOUND_BY_THIS_CHECK` into `clean`, `AI-free`, `human-written`, `anonymous`, or `safe`.
|
|
85
|
+
|
|
86
|
+
## Format coverage
|
|
87
|
+
|
|
88
|
+
| Format | Built-in inspection |
|
|
89
|
+
|---|---|
|
|
90
|
+
| TXT, Markdown | UTF-8 decoding and configured invisible or control characters. |
|
|
91
|
+
| HTML | Text controls, selected metadata fields, and published comments. |
|
|
92
|
+
| SVG | Text controls, metadata blocks, comments, and selected editor fields. |
|
|
93
|
+
| DOCX | Core, application, and custom properties; comments; tracked changes; custom XML. |
|
|
94
|
+
| PPTX | Core, application, and custom properties; comments; authors; notes; hidden slides; custom XML. |
|
|
95
|
+
| PDF | Selected document-information fields, XMP presence, and C2PA carrier hints. |
|
|
96
|
+
| PNG | Text chunks, EXIF-container presence, and C2PA carrier hints. |
|
|
97
|
+
| JPEG | EXIF, XMP, IPTC, comment-container presence, and C2PA carrier hints. |
|
|
98
|
+
|
|
99
|
+
ExifTool, when already installed, adds broader read-only metadata inspection for PDF, PNG, and JPEG. The script does not install it. Embedded Office media is reported as uninspected instead of being silently treated as clean.
|
|
100
|
+
|
|
101
|
+
## Unicode review
|
|
102
|
+
|
|
103
|
+
Review code point, count, and location. Do not delete characters by category.
|
|
104
|
+
|
|
105
|
+
Zero-width joiners, zero-width non-joiners, variation selectors, and direction controls can be legitimate in emoji, Persian, Arabic, Hebrew, and other writing systems. Treat them as context-dependent. Treat directional overrides, internal byte-order marks, soft hyphens, and unexplained invisible separators as review findings, not proof of malicious or AI-generated text.
|
|
106
|
+
|
|
107
|
+
## Metadata and privacy review
|
|
108
|
+
|
|
109
|
+
Prioritize GPS coordinates, device or owner serials, email addresses, author and company names, local paths, comments, speaker notes, hidden slides, tracked changes, custom properties, custom XML, and edit history.
|
|
110
|
+
|
|
111
|
+
Report field names and counts without values by default. Avoid pasting a full audit report into a hosted model when the report contains values the user has not approved for disclosure.
|
|
112
|
+
|
|
113
|
+
## Provenance review
|
|
114
|
+
|
|
115
|
+
Treat creator software, timestamps, XMP, EXIF, IPTC, and C2PA as provenance signals. Do not assume they are private, harmful, accurate, complete, or forged.
|
|
116
|
+
|
|
117
|
+
C2PA can bind assertions and ingredients to an asset. A carrier hint is not cryptographic validation. `c2patool` validation may distinguish absent, reported, or problematic manifest information, but it cannot establish the full real-world truth of every assertion.
|
|
118
|
+
|
|
119
|
+
Do not remove or invalidate provenance because it reveals AI involvement. Preserve, disclose, or remove metadata only through a separate user-directed editing workflow with exact fields and consequences identified. This audit provides no cleaning operation.
|
|
120
|
+
|
|
121
|
+
## Publication decision
|
|
122
|
+
|
|
123
|
+
Return findings first, then coverage gaps, then source-integrity status. Separate three decisions:
|
|
124
|
+
|
|
125
|
+
1. Privacy: whether identified values or hidden review material should be disclosed.
|
|
126
|
+
2. Provenance: whether origin and processing records should be preserved or disclosed.
|
|
127
|
+
3. Integrity: whether the inspected source stayed byte-identical.
|
|
128
|
+
|
|
129
|
+
When remediation is requested later, name exact fields and create a separate copy. Never modify the only source artifact. Re-audit the derived copy and report any provenance invalidation or coverage gap caused by the edit.
|
|
130
|
+
|
|
131
|
+
## Sources
|
|
132
|
+
|
|
133
|
+
- Anthropic, [How Claude marks AI-generated content](https://support.claude.com/en/articles/16266773-how-claude-marks-ai-generated-content)
|
|
134
|
+
- Kirchenbauer et al., [A Watermark for Large Language Models](https://arxiv.org/abs/2301.10226) (research mechanism example, not a Claude implementation specification)
|
|
135
|
+
- Coalition for Content Provenance and Authenticity, [C2PA technical specification](https://spec.c2pa.org/specifications/specifications/2.4/specs/ContentCredentials.html)
|
|
136
|
+
- Content Authenticity Initiative, [Using C2PA Tool](https://github.com/contentauth/c2pa-rs/blob/main/cli/docs/usage.md)
|
|
137
|
+
- Phil Harvey, [ExifTool application documentation](https://exiftool.org/exiftool_pod2.html)
|
|
@@ -190,6 +190,8 @@ For a technical system, show:
|
|
|
190
190
|
|
|
191
191
|
Use the minimum sequence the audience needs. Name the actor, action, object, and result. Preserve exact interfaces, units, and state transitions when they carry the explanation.
|
|
192
192
|
|
|
193
|
+
For general and adjacent-expert readers, run `The literal clarity rewrite` from [agora-marketing.md](agora-marketing.md) after the evidence or technical pass. Name the product, component, source, or person when a generic label could point to several things. State the observable event before its internal classification. The system sequences above remain backstage and must not appear as unexplained editorial labels.
|
|
194
|
+
|
|
193
195
|
Separate these questions:
|
|
194
196
|
|
|
195
197
|
1. What happened?
|
|
@@ -199,7 +201,7 @@ Separate these questions:
|
|
|
199
201
|
5. What does it imply for this audience?
|
|
200
202
|
6. What remains unknown?
|
|
201
203
|
|
|
202
|
-
Rule [HOUSE]: a technical explanation fails when it lists components without showing their relation,
|
|
204
|
+
Rule [HOUSE]: a technical explanation fails when it lists components without showing their relation, gives a metaphor without returning to the real mechanism, or names a property without stating what a person could observe.
|
|
203
205
|
|
|
204
206
|
## Use analogies and visuals as bounded models
|
|
205
207
|
|
|
@@ -221,6 +223,10 @@ For charts and diagrams:
|
|
|
221
223
|
- Do not crop away a conflicting result or material range.
|
|
222
224
|
- Mark simulated, illustrative, and observed data distinctly.
|
|
223
225
|
- Match the caption's certainty to the visual evidence.
|
|
226
|
+
- Keep labels off lines, shapes, and mixed backgrounds unless an opaque backing treatment preserves clear space.
|
|
227
|
+
- Align text to the actual geometry of its box or mark rather than an approximate baseline.
|
|
228
|
+
|
|
229
|
+
A color change does not fix overlap. Relocate, back, or remove a label when the visual already carries its meaning. When Agora supplies diagram copy or a visual brief, state the clearance requirement. When the task includes an actual rendered asset, require render-based visual inspection before claiming that the label is legible.
|
|
224
230
|
|
|
225
231
|
## Write scientific and technical video
|
|
226
232
|
|
|
@@ -275,6 +281,12 @@ Outside review mode, do not refuse, narrow, qualify, or relabel the user's scien
|
|
|
275
281
|
|
|
276
282
|
## Evaluation contract
|
|
277
283
|
|
|
284
|
+
Always-on quality gates:
|
|
285
|
+
|
|
286
|
+
- First-read comprehension survives technical precision.
|
|
287
|
+
- General and adjacent-expert explanations expose concrete actors and observable results.
|
|
288
|
+
- Rendered diagrams receive visual label-clearance inspection before a legibility claim.
|
|
289
|
+
|
|
278
290
|
Hard gates in explicit scientific review mode:
|
|
279
291
|
|
|
280
292
|
- Claim classes remain distinct.
|
|
@@ -284,7 +296,6 @@ Hard gates in explicit scientific review mode:
|
|
|
284
296
|
- No invented misconception, consensus, or mechanism.
|
|
285
297
|
- Analogy boundary is explicit when analogy carries the explanation.
|
|
286
298
|
- Title, visual, opening, and body promises agree.
|
|
287
|
-
- First-read comprehension survives technical precision.
|
|
288
299
|
|
|
289
300
|
Blind-quality dimensions:
|
|
290
301
|
|