@maestroagora/agora 1.3.0 → 1.5.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 +8 -2
- package/.codex-plugin/plugin.json +14 -7
- package/README.md +234 -104
- package/package.json +14 -5
- package/scripts/install.mjs +5 -0
- package/skills/agora/SKILL.md +92 -12
- package/skills/agora/agents/openai.yaml +2 -2
- package/skills/agora/references/agora-case-studies.md +381 -0
- package/skills/agora/references/agora-craft.md +173 -1
- package/skills/agora/references/agora-invest.md +544 -0
- package/skills/agora/references/agora-marketing.md +65 -6
- package/skills/agora/references/agora-science.md +299 -0
- package/skills/agora/references/agora-voice.md +8 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maestro-agora",
|
|
3
|
-
"description": "Self-hosted marketplace for Maestro: Agora, the argument-first persuasion skill.",
|
|
3
|
+
"description": "Self-hosted marketplace for Maestro: Agora, the argument-first persuasion, technical explanation, case-study, and investment-writing skill.",
|
|
4
4
|
"owner": {
|
|
5
5
|
"name": "Mark Laursen",
|
|
6
6
|
"url": "https://github.com/mbanderas"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
{
|
|
10
10
|
"name": "maestro-agora",
|
|
11
11
|
"source": "./",
|
|
12
|
-
"description": "
|
|
12
|
+
"description": "Write consequential commercial, technical, case-study, investment, interface, and spoken arguments for the real decision without inventing results."
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maestro-agora",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"displayName": "Maestro: Agora",
|
|
5
|
-
"description": "Use /agora for
|
|
5
|
+
"description": "Use /agora for persuasive writing, technical explanation, compelling case studies, fundraising, investment analysis, and spoken or written copy.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Mark Laursen",
|
|
8
8
|
"url": "https://github.com/mbanderas"
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
"agora",
|
|
16
16
|
"marketing",
|
|
17
17
|
"copywriting",
|
|
18
|
+
"science-communication",
|
|
19
|
+
"technical-writing",
|
|
20
|
+
"case-studies",
|
|
21
|
+
"fundraising",
|
|
22
|
+
"investor-communications",
|
|
23
|
+
"pitch-decks",
|
|
18
24
|
"claude-code",
|
|
19
25
|
"geo",
|
|
20
26
|
"aeo"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maestro-agora",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Maestro: Agora
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"description": "Maestro: Agora writes clear persuasion, technical explanations, compelling case studies, and investment communication without making up results.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Mark Laursen",
|
|
7
7
|
"url": "https://github.com/mbanderas"
|
|
@@ -13,14 +13,20 @@
|
|
|
13
13
|
"agora",
|
|
14
14
|
"marketing",
|
|
15
15
|
"copywriting",
|
|
16
|
+
"science-communication",
|
|
17
|
+
"technical-writing",
|
|
18
|
+
"case-studies",
|
|
19
|
+
"fundraising",
|
|
20
|
+
"investor-communications",
|
|
21
|
+
"pitch-decks",
|
|
16
22
|
"codex",
|
|
17
23
|
"skills"
|
|
18
24
|
],
|
|
19
25
|
"skills": "./skills/",
|
|
20
26
|
"interface": {
|
|
21
27
|
"displayName": "Maestro: Agora",
|
|
22
|
-
"shortDescription": "
|
|
23
|
-
"longDescription": "Install Maestro: Agora in Codex for a direct /agora skill that
|
|
28
|
+
"shortDescription": "Persuasion, science, cases, and capital",
|
|
29
|
+
"longDescription": "Install Maestro: Agora in Codex for a direct /agora skill that writes consequential commercial arguments, clear technical explanations, compelling case studies, and investment communication without inventing results.",
|
|
24
30
|
"developerName": "Mark Laursen",
|
|
25
31
|
"category": "Productivity",
|
|
26
32
|
"capabilities": [
|
|
@@ -31,9 +37,10 @@
|
|
|
31
37
|
"brandColor": "#7C3AED",
|
|
32
38
|
"composerIcon": "./assets/icon.png",
|
|
33
39
|
"defaultPrompt": [
|
|
34
|
-
"/agora
|
|
35
|
-
"/agora
|
|
36
|
-
"/agora
|
|
40
|
+
"/agora sell Write the strongest truthful hero these product facts and destination can support.",
|
|
41
|
+
"/agora science Explain this technical subject clearly without overstating what the research found.",
|
|
42
|
+
"/agora case study Turn this approved project record into a clear, properly attributed case study.",
|
|
43
|
+
"/agora invest Build this fundraising asset from the supplied results, risks, and plan without inventing traction or urgency."
|
|
37
44
|
]
|
|
38
45
|
}
|
|
39
46
|
}
|
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/maestro-agora-banner.png" alt="The Maestro mascot
|
|
2
|
+
<img src="assets/maestro-agora-banner.png" alt="The Maestro mascot turning rough notes into a finished page with a gold fountain pen" width="100%" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">Maestro: Agora</h1>
|
|
6
6
|
|
|
7
|
-
<p align="center"><strong>
|
|
7
|
+
<p align="center"><strong>Say what matters. Make it land.</strong></p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://github.com/mbanderas/maestro-agora/actions/workflows/validate.yml"><img alt="Validation status" src="https://github.com/mbanderas/maestro-agora/actions/workflows/validate.yml/badge.svg" /></a>
|
|
@@ -12,17 +12,33 @@
|
|
|
12
12
|
<a href="LICENSE"><img alt="MIT license" src="https://img.shields.io/badge/license-MIT-7c3aed" /></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Agora helps you turn what your business does, knows, sells, or explains into writing people can understand and act on. It does not make up real-world facts. When fiction, mock work, or a concept is the assignment, Agora can invent within the brief and keeps that status clear.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
It starts with the decision behind the copy. Who must understand, believe, choose, approve, fund, or do something next? Agora finds the consequential stake, explains why the subject matters, chooses the details that move the decision, and writes for the actual channel.
|
|
18
18
|
|
|
19
|
-
Use
|
|
19
|
+
Use it for landing pages, heroes, ads, product copy, sales outreach, investor communication, scientific and technical explanation, case studies, company profiles, editorial work, interface text, and spoken scripts.
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
## What Agora adds
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
| Capability | What it controls |
|
|
24
|
+
|---|---|
|
|
25
|
+
| Persuasion | Argument, consequence, reason to believe, CTA, channel fit, and truthful rhetorical force |
|
|
26
|
+
| Heroes and short sales copy | Awareness, claim saturation, traffic source, promise grammar, destination fidelity, and the complete first-screen composition |
|
|
27
|
+
| `SCIENCE` | Scientific certainty, causal language, statistics, mechanisms, uncertainty, analogies, visuals, sources, and limits |
|
|
28
|
+
| `CASE_STUDY` | Real projects, fictional mocks, and concept portfolios with distinct invention, attribution, causality, permission, and disclosure controls |
|
|
29
|
+
| `INVEST` | Fundraising, diligence, and capital-allocation communication without invented traction, urgency, commitments, or inevitability |
|
|
30
|
+
| `VOICE` | A measured first-party voice profile that stays subordinate to the facts and required language |
|
|
31
|
+
| Written GEO/AEO | Clear entities, self-contained passages, source transparency, and relevant publication checks |
|
|
32
|
+
|
|
33
|
+
Agora returns one ready-to-use result by default. Alternatives, internal routes, and rationale stay out of the final copy unless requested.
|
|
34
|
+
|
|
35
|
+
## When buyers ask AI, is your brand part of the answer?
|
|
36
|
+
|
|
37
|
+
More decisions now start inside an AI answer. Buyers ask for comparisons, explanations, and recommendations; brands either enter that answer or they do not.
|
|
38
|
+
|
|
39
|
+
[CiteSurge](https://citesurge.com/) tracks how your brand and competitors appear across ChatGPT, Claude, Perplexity, Gemini, Google AI Overviews, Bing Copilot, and Grok. Run Prompt Scans for the questions your customers may ask. Measure competitive Share of Voice. See which brands and sources shape each answer. Then turn what you find into prioritized Content Recommendations and keep monitoring the same prompts as the competitive picture changes.
|
|
40
|
+
|
|
41
|
+
**[Find out where your brand stands when buyers ask AI.](https://citesurge.com/)**
|
|
26
42
|
|
|
27
43
|
## Install
|
|
28
44
|
|
|
@@ -37,17 +53,12 @@ The default user install writes the same reviewed skill to:
|
|
|
37
53
|
- `~/.agents/skills/agora` for Codex and Agent Skills-compatible tools.
|
|
38
54
|
- `~/.claude/skills/agora` for Claude Code.
|
|
39
55
|
|
|
40
|
-
Install only the user-level Codex skill:
|
|
41
|
-
|
|
42
|
-
```sh
|
|
43
|
-
npx -y @maestroagora/agora --target codex --scope user
|
|
44
|
-
```
|
|
45
|
-
|
|
46
56
|
Open a new task or restart the host after installation so its skill registry and slash menu reload.
|
|
47
57
|
|
|
48
|
-
|
|
58
|
+
Install one target or use project-local scope:
|
|
49
59
|
|
|
50
60
|
```sh
|
|
61
|
+
npx -y @maestroagora/agora --target codex --scope user
|
|
51
62
|
npx -y @maestroagora/agora --target cursor --scope project
|
|
52
63
|
npx -y @maestroagora/agora --target codex,claude --scope user
|
|
53
64
|
npx -y @maestroagora/agora --target universal --dry-run
|
|
@@ -77,136 +88,181 @@ codex plugin marketplace add mbanderas/maestro-agora
|
|
|
77
88
|
codex plugin add maestro-agora@maestro-agora
|
|
78
89
|
```
|
|
79
90
|
|
|
80
|
-
The npm installer
|
|
91
|
+
The npm installer provides the broadest host coverage. Native plugin commands use the matching Claude or Codex manifest from this repository.
|
|
81
92
|
|
|
82
|
-
##
|
|
93
|
+
## Quick start
|
|
83
94
|
|
|
84
|
-
Invoke
|
|
95
|
+
Invoke Agora directly and provide the facts it may use:
|
|
85
96
|
|
|
86
97
|
```text
|
|
87
98
|
/agora Rewrite this upgrade screen. Make the blocked action matter, state the plan difference clearly, and use one supported CTA.
|
|
88
99
|
```
|
|
89
100
|
|
|
90
|
-
Choose a mode when you want to override inference:
|
|
101
|
+
Choose a primary mode when you want to override inference:
|
|
91
102
|
|
|
92
103
|
```text
|
|
93
|
-
/agora position Turn these
|
|
94
|
-
/agora sell Build a homepage hero around the strongest buyer stake
|
|
95
|
-
/agora invest Write a
|
|
96
|
-
/agora inform Explain this research finding for a public
|
|
104
|
+
/agora position Turn these business facts into a 35-word company profile.
|
|
105
|
+
/agora sell Build a homepage hero around the strongest buyer stake these product facts support.
|
|
106
|
+
/agora invest Write a fundraising opening from the current results, risks, and purpose of the round.
|
|
107
|
+
/agora inform Explain this research finding for a public audience.
|
|
97
108
|
/agora transact Rewrite this confirmation so the state and next action are unmistakable.
|
|
98
109
|
```
|
|
99
110
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
## How the persuasion engine works
|
|
103
|
-
|
|
104
|
-
Agora reasons through a variable-depth path:
|
|
111
|
+
Add modifiers when the subject or asset needs them:
|
|
105
112
|
|
|
106
113
|
```text
|
|
107
|
-
|
|
114
|
+
/agora sell science Write a technical product hero without hiding material uncertainty.
|
|
115
|
+
/agora inform science Explain this study for a general audience.
|
|
116
|
+
/agora sell case study Write a customer success case from this approved project record.
|
|
117
|
+
/agora inform science case study Explain this engineering implementation and its measured limits.
|
|
118
|
+
/agora invest science Build a deep-tech capital case from the supplied study and scale-up results.
|
|
119
|
+
/agora invest case study Use this approved customer case in an investor brief without overstating attribution.
|
|
120
|
+
/agora sell --voice house Rewrite this page in the measured house profile.
|
|
108
121
|
```
|
|
109
122
|
|
|
110
|
-
|
|
123
|
+
In Codex, `$agora` and the skills picker can also select the installed skill. Other hosts may expose skills through a picker or mention syntax. Asking the agent to use the Agora skill remains portable.
|
|
111
124
|
|
|
112
|
-
|
|
113
|
-
- Medium copy adds the mechanism and the proof clue or qualifier that matters most.
|
|
114
|
-
- Long copy expands only when another fact resolves a real objection or expensive uncertainty.
|
|
125
|
+
## Routing model
|
|
115
126
|
|
|
116
|
-
|
|
127
|
+
Agora chooses a primary mode first, then the publication surface, then any domain or asset modifiers. `VOICE` enters afterward and cannot override the facts, material uncertainty, or required language.
|
|
117
128
|
|
|
118
|
-
###
|
|
129
|
+
### Primary modes
|
|
119
130
|
|
|
120
131
|
| Mode | Use or infer it for |
|
|
121
132
|
|---|---|
|
|
122
133
|
| `POSITION` | Company profiles, directories, About copy, website summaries, category narratives, and objective descriptions |
|
|
123
134
|
| `SELL` | Marketing, sales, ads, landing pages, product pages, outreach, upgrades, and paywalls |
|
|
124
|
-
| `INVEST` | Actual funding,
|
|
125
|
-
| `INFORM` | Editorial and
|
|
135
|
+
| `INVEST` | Actual funding, diligence, investor-pitch, and capital-allocation decisions |
|
|
136
|
+
| `INFORM` | Editorial, educational, scientific, and technical explanation |
|
|
126
137
|
| `TRANSACT` | Buttons, confirmations, alerts, forms, and utility microcopy |
|
|
127
|
-
| `VOICE` | A modifier on any of the above, not a job of its own. `--voice <name>` writes in a measured author profile |
|
|
128
138
|
|
|
129
|
-
`POSITION`
|
|
139
|
+
`POSITION` remains the default for descriptive company profiles, even when investors may read them. Directory placement does not convert an objective profile into a capital pitch.
|
|
140
|
+
|
|
141
|
+
### Composable modifiers
|
|
142
|
+
|
|
143
|
+
| Modifier | Function |
|
|
144
|
+
|---|---|
|
|
145
|
+
| `SCIENCE` | Adds empirical or technical accuracy, explanation, and uncertainty rules |
|
|
146
|
+
| `CASE_STUDY` | Adds case-study structure, result, attribution, permission, and confidentiality rules |
|
|
147
|
+
| `VOICE` | Applies an authorized measured voice profile |
|
|
148
|
+
|
|
149
|
+
The modifiers can compose. A technical fundraising case may use `INVEST + SCIENCE + CASE_STUDY`. A founder-voiced scientific product video may use `SELL + SCIENCE + VOICE + HYBRID`.
|
|
150
|
+
|
|
151
|
+
### Surfaces
|
|
130
152
|
|
|
131
|
-
|
|
153
|
+
| Surface | Treatment |
|
|
154
|
+
|---|---|
|
|
155
|
+
| `INDEXABLE_PUBLIC` | Public claim review, human-voice and GEO/AEO passes, then relevant technical publication checks |
|
|
156
|
+
| `PUBLIC_NON_INDEXABLE_WRITTEN` | Public claim review, clear written structure, and human-voice pass; no crawl or index checks |
|
|
157
|
+
| `WRITTEN_PRIVATE` | Factual fidelity, channel fit, concrete meaning, and human-voice pass |
|
|
158
|
+
| `SPOKEN_ONLY` | Factual review, cadence, breath, timing, and listener comprehension; no GEO/AEO formatting |
|
|
159
|
+
| `HYBRID` | Spoken delivery and each written derivative are routed separately |
|
|
160
|
+
|
|
161
|
+
Titles, descriptions, captions, show notes, transcripts, and companion pages receive written treatment. Spoken narration stays free of search-format scaffolding.
|
|
162
|
+
|
|
163
|
+
## How the argument works
|
|
132
164
|
|
|
133
|
-
Agora
|
|
165
|
+
Agora reasons through a variable-depth path:
|
|
166
|
+
|
|
167
|
+
```text
|
|
168
|
+
situation -> stake -> criterion when useful -> mechanism -> reason to believe -> destination belief -> next step
|
|
169
|
+
```
|
|
134
170
|
|
|
135
|
-
|
|
171
|
+
This path is not a paragraph template.
|
|
136
172
|
|
|
137
|
-
|
|
173
|
+
- Short copy pairs the strongest live consequence with the strongest supplied differentiator.
|
|
174
|
+
- Medium copy adds the mechanism and the result, detail, or qualification that matters most.
|
|
175
|
+
- Long copy expands only when another fact resolves a real objection or expensive uncertainty.
|
|
138
176
|
|
|
139
|
-
Agora
|
|
177
|
+
Agora ranks supporting details by decision relevance, differentiation, specificity, reliability, compression value, and omission risk. It keeps facts that change the decision, not facts that merely fill the page.
|
|
140
178
|
|
|
141
|
-
|
|
179
|
+
## Heroes and short-form sales copy
|
|
142
180
|
|
|
143
|
-
|
|
181
|
+
A hero is one distributed argument, not a headline contest. Agora evaluates:
|
|
144
182
|
|
|
145
|
-
|
|
183
|
+
- Optional eyebrow.
|
|
184
|
+
- Headline.
|
|
185
|
+
- Subhead.
|
|
186
|
+
- Primary and optional secondary CTA.
|
|
187
|
+
- Result or qualification microcopy.
|
|
188
|
+
- Visual, demo, or result context.
|
|
189
|
+
- Immediate next section.
|
|
146
190
|
|
|
147
|
-
|
|
191
|
+
It distinguishes a truth gate from a persuasive target. Accurate but generic copy does not pass because it avoided a false claim.
|
|
192
|
+
|
|
193
|
+
`SELL` on a first-attention surface normally receives a commercially assertive treatment. Mid-funnel explanation receives a persuasive-explanatory treatment. Promotional intensity requires real urgency, novelty, availability, or outcome results supplied in the brief. Missing support causes a lower treatment, not invented force.
|
|
194
|
+
|
|
195
|
+
Promise grammar matters. `See X`, `Learn how to X`, `We help you X`, `Do X more often`, `You will X`, and an imperative such as `Beat X` require different facts, conditions, and levels of support. CTA language must match the destination and its real commitment level.
|
|
196
|
+
|
|
197
|
+
## Scientific and technical communication
|
|
198
|
+
|
|
199
|
+
`SCIENCE` supports three internal routes:
|
|
200
|
+
|
|
201
|
+
| Route | Subject |
|
|
148
202
|
|---|---|
|
|
149
|
-
| `
|
|
150
|
-
| `
|
|
151
|
-
| `
|
|
152
|
-
| `SPOKEN_ONLY` | Proof review, cadence, breath, timing, and listener comprehension; no GEO/AEO formatting |
|
|
153
|
-
| `HYBRID` | Spoken delivery and each written derivative are routed separately |
|
|
203
|
+
| `EMPIRICAL` | Studies, experiments, observations, measurements, and findings |
|
|
204
|
+
| `TECHNICAL` | Systems, interfaces, architecture, mechanisms, dependencies, and failure behavior |
|
|
205
|
+
| `MIXED` | Measured findings plus technical mechanism |
|
|
154
206
|
|
|
155
|
-
|
|
207
|
+
Material claims remain classified as observation, established fact or consensus, model, interpretation, implication, recommendation, hypothesis, speculation, or unknown. Simplification cannot move a claim upward in certainty.
|
|
156
208
|
|
|
157
|
-
|
|
209
|
+
Agora preserves study design, population, comparator, baseline, denominator, absolute and relative effects, material uncertainty, and the difference between statistical and practical significance when they matter. Correlation stays separate from causation. One study stays separate from replication or consensus.
|
|
158
210
|
|
|
159
|
-
|
|
211
|
+
Misconception hooks, question-first explanation, analogies, visuals, and alternating narrative threads are optional tools with explicit failure conditions. A misconception cannot be invented for suspense. An analogy must say what maps, what does not, and where it breaks.
|
|
160
212
|
|
|
161
|
-
|
|
162
|
-
- Facts, inference, interpretation, aspiration, and promises remain distinct.
|
|
163
|
-
- GEO/AEO improves written clarity and evidence structure after the argument exists.
|
|
164
|
-
- Human-voice cleanup removes prompt leakage, canned templates, generic significance tails, and smart quotes. A separate hard invariant bans U+2014 from the entire generated response, including copied text and commentary, with a mandatory final character scan.
|
|
165
|
-
- Necessary factual series survive the cleanup.
|
|
166
|
-
- One ready-to-use result comes first. Near-duplicate variants appear only when requested.
|
|
213
|
+
## Case studies built around what happened
|
|
167
214
|
|
|
168
|
-
|
|
215
|
+
`CASE_STUDY` supports:
|
|
169
216
|
|
|
170
|
-
|
|
217
|
+
| Family | Primary focus |
|
|
218
|
+
|---|---|
|
|
219
|
+
| `CUSTOMER_SUCCESS` | Buyer problem, intervention, measured result, attribution, and decision relevance |
|
|
220
|
+
| `CREATIVE_PORTFOLIO` | Brief, constraints, insight, concept, role, decisions, execution, and results |
|
|
221
|
+
| `TECHNICAL_IMPLEMENTATION` | System constraint, alternatives, architecture, rollout, failure modes, observed performance, and tradeoffs |
|
|
222
|
+
|
|
223
|
+
Case family and project status are separate:
|
|
171
224
|
|
|
172
|
-
|
|
225
|
+
| Project status | What Agora permits |
|
|
226
|
+
|---|---|
|
|
227
|
+
| Real project | Uses only the supplied project history, roles, artifacts, quotes, permissions, measurements, and results |
|
|
228
|
+
| Fictional mock | Invents a coherent case inside an explicitly fictional, mock, synthetic, demo, or sample brief |
|
|
229
|
+
| Concept portfolio | Invents a self-initiated or speculative scenario without implying a real client, commission, approval, shipped state, research record, or measured outcome |
|
|
173
230
|
|
|
174
|
-
|
|
231
|
+
Fiction is not a workaround for missing facts in a real case. Fictional and concept work stays visibly labeled wherever a reader could mistake it for real project history. Illustrative metrics remain illustrative. Real identities, quotations, endorsements, and confidential material keep their normal truth and permission controls.
|
|
175
232
|
|
|
176
|
-
|
|
233
|
+
Every result is classified before writing: measured outcome, customer-reported outcome, observed process or adoption change, supported inference, target, pending measurement, or unmeasured.
|
|
177
234
|
|
|
178
|
-
|
|
235
|
+
Delivery activity cannot become business impact. Chronology cannot become causality. When outcome data is missing, Agora writes an honest account of the work and what remains unmeasured instead of manufacturing a triumphant ending.
|
|
179
236
|
|
|
180
|
-
|
|
237
|
+
Permission is tracked separately for names, logos, roles, quotes, metrics, screenshots, and implementation details. `PENDING` material stays internal or is omitted. `PROHIBITED` material never appears. Quotes cannot be repaired into stronger endorsements, combined into synthetic praise, or stripped of material connections and typicality limits.
|
|
181
238
|
|
|
182
|
-
|
|
183
|
-
<img src="assets/agora-orbit.svg" alt="Animated flow from verified truth and evidence through argument, proof, voice, and action into ready copy" width="100%" />
|
|
184
|
-
</p>
|
|
239
|
+
Academic and clinical case reports remain outside this capability.
|
|
185
240
|
|
|
186
|
-
|
|
241
|
+
## Investment communication
|
|
187
242
|
|
|
188
|
-
|
|
189
|
-
skills/agora/
|
|
190
|
-
├── SKILL.md
|
|
191
|
-
├── agents/
|
|
192
|
-
│ └── openai.yaml
|
|
193
|
-
└── references/
|
|
194
|
-
├── agora-craft.md
|
|
195
|
-
├── agora-marketing.md
|
|
196
|
-
└── agora-voice.md
|
|
197
|
-
```
|
|
243
|
+
`INVEST` remains one primary mode with three internal routes:
|
|
198
244
|
|
|
199
|
-
|
|
245
|
+
| Route | Decision |
|
|
246
|
+
|---|---|
|
|
247
|
+
| `FUNDRAISE` | A company seeking capital |
|
|
248
|
+
| `DILIGENCE` | Testing an investment case |
|
|
249
|
+
| `ALLOCATE` | Comparing or recommending capital allocation |
|
|
250
|
+
|
|
251
|
+
Agora separates historical results, current state, contracted commitments, customer reports, forecasts, targets, model assumptions, interpretations, scenarios, and unknowns. It also keeps revenue, bookings, pipeline, contracted value, collected cash, retention, margin, burn, runway, market size, and valuation measures distinct.
|
|
252
|
+
|
|
253
|
+
It can produce warm introductions, direct outreach, spoken openings, decks, briefs, demos, follow-ups, diligence memos, investment-committee briefs, data-room narratives, and progress updates. It does not impose a universal deck order, deck length, meeting script, talk ratio, outreach rule, or opening duration.
|
|
200
254
|
|
|
201
|
-
|
|
255
|
+
Strong fundraising communication makes the decision, present position, remaining risk, purpose of the capital, and next milestone clear. It never invents traction, warm access, investor interest, scarcity, commitments, consensus, or an inevitable future.
|
|
202
256
|
|
|
203
|
-
|
|
257
|
+
A valid weakness remains visible until new results resolve it. Reframing may change context, not the underlying fact.
|
|
204
258
|
|
|
205
|
-
|
|
259
|
+
Investment writing is not legal advice. Securities-law status, offering mechanics, solicitation rules, investor eligibility, and disclosure obligations require current authoritative verification and qualified counsel where applicable.
|
|
206
260
|
|
|
207
|
-
|
|
261
|
+
## Measured voice profiles
|
|
208
262
|
|
|
209
|
-
|
|
263
|
+
`VOICE` modifies another mode rather than replacing it. Profiles are measured from authorized first-party writing, not improvised from adjectives.
|
|
264
|
+
|
|
265
|
+
Build and inspect a profile with the shipped engine:
|
|
210
266
|
|
|
211
267
|
```sh
|
|
212
268
|
npx -p @maestroagora/agora agora-voice build --name house \
|
|
@@ -217,33 +273,107 @@ npx -p @maestroagora/agora agora-voice list
|
|
|
217
273
|
npx -p @maestroagora/agora agora-voice check --voice house ./draft.md
|
|
218
274
|
```
|
|
219
275
|
|
|
220
|
-
The engine reads Markdown, plain text, and HTML from files, directories, and URLs. It
|
|
276
|
+
The engine reads Markdown, plain text, and HTML from files, directories, and URLs. It removes quotations, code, tables, signatures, front matter, and headings before measurement. Binary document formats are refused by name rather than partially extracted.
|
|
221
277
|
|
|
222
|
-
|
|
278
|
+
A profile records sentence and paragraph distributions, function words, punctuation, openings, stance, contraction behavior, and supported vocabulary. It states what the corpus was too small to measure and refuses certification below 5,000 clean author-controlled words.
|
|
223
279
|
|
|
224
|
-
|
|
280
|
+
Profiles live at `~/.agora/voices/`, outside the replaceable skill directory. A default profile can apply across modes. Use `--no-voice`, `neutral`, or `--voice <name>` per request. Scientific uncertainty, quote fidelity, legal language, and the supplied scope override habitual certainty or vocabulary.
|
|
225
281
|
|
|
226
|
-
|
|
282
|
+
Building or applying a third-party profile for publication under that person's name is refused.
|
|
227
283
|
|
|
228
|
-
##
|
|
284
|
+
## Silent safeguards
|
|
229
285
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
286
|
+
Agora builds the argument before running publication and style checks. Those checks stay out of the delivered copy unless a constraint requires disclosure.
|
|
287
|
+
|
|
288
|
+
- Truth, safety, law, supplied facts, material qualifications, and immediate comprehension outrank persuasion and style.
|
|
289
|
+
- Unsupported claims are narrowed or removed, not buried under disclaimers.
|
|
290
|
+
- Facts, observations, interpretations, forecasts, targets, aspirations, and promises remain distinct.
|
|
291
|
+
- Emotion comes from a real situation, supportable consequence, and available agency.
|
|
292
|
+
- Fear, urgency, scarcity, loss, testimonials, intimacy, and certainty cannot be manufactured.
|
|
293
|
+
- CTAs use a clear action and a concrete destination, object, or result.
|
|
294
|
+
- One supported recommendation comes first. Near-duplicate variants appear only when requested.
|
|
295
|
+
- A hard final scan rejects U+2014 and smart-quote characters across the response.
|
|
296
|
+
|
|
297
|
+
Agora improves writing discipline. It does not replace source review, subject-matter review, legal review, or final human judgment.
|
|
298
|
+
|
|
299
|
+
## Written GEO/AEO boundaries
|
|
300
|
+
|
|
301
|
+
For written assets, Agora answers the reader's question early when the format calls for it, names entities and scope, keeps supporting details and qualifications beside claims, exposes real provenance, and builds useful passages that remain accurate when quoted alone.
|
|
302
|
+
|
|
303
|
+
For indexable public pages, it can flag relevant crawlability, canonical, sitemap, metadata, structured-data, accessibility, and delivery checks. These practices may improve eligibility and citability. They cannot promise retrieval, selection, quotation, citation, ranking, recommendation, referral, conversion, or revenue.
|
|
304
|
+
|
|
305
|
+
GEO/AEO applies to coherent page passages, not every sentence. It cannot force article-style density into a hero, case-study opening, spoken script, or short CTA.
|
|
306
|
+
|
|
307
|
+
## Package architecture
|
|
308
|
+
|
|
309
|
+
<p align="center">
|
|
310
|
+
<img src="assets/agora-orbit.svg" alt="Animated flow from source material through argument, voice, and action into ready copy" width="100%" />
|
|
311
|
+
</p>
|
|
312
|
+
|
|
313
|
+
The shipped skill stays progressively loaded:
|
|
314
|
+
|
|
315
|
+
```text
|
|
316
|
+
skills/agora/
|
|
317
|
+
|-- SKILL.md
|
|
318
|
+
|-- agents/
|
|
319
|
+
| `-- openai.yaml
|
|
320
|
+
`-- references/
|
|
321
|
+
|-- agora-case-studies.md
|
|
322
|
+
|-- agora-craft.md
|
|
323
|
+
|-- agora-invest.md
|
|
324
|
+
|-- agora-marketing.md
|
|
325
|
+
|-- agora-science.md
|
|
326
|
+
`-- agora-voice.md
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
`SKILL.md` contains routing and the concise operating contract. Ordinary work loads only the reference sections it needs.
|
|
330
|
+
|
|
331
|
+
- `agora-marketing.md` is the canonical doctrine for argument, truth, channels, GEO/AEO, AI-writing-tell controls, examples, research grades, and conflict handling.
|
|
332
|
+
- `agora-craft.md` adds headlines, heroes, awareness and sophistication, emotion, and prose rhythm.
|
|
333
|
+
- `agora-science.md` adds empirical and technical claim accuracy.
|
|
334
|
+
- `agora-case-studies.md` adds case structure, results, attribution, permissions, and confidentiality.
|
|
335
|
+
- `agora-invest.md` adds fundraising, diligence, and allocation procedures.
|
|
336
|
+
- `agora-voice.md` adds measured first-party voice profiles.
|
|
337
|
+
|
|
338
|
+
## Public-package hygiene
|
|
339
|
+
|
|
340
|
+
Research informed Agora, but research custody is separate from distribution.
|
|
341
|
+
|
|
342
|
+
The public repository and npm package must not contain raw or corrected transcripts, caption files, supplied PDFs or office documents, audio, video, private source identities, model-output scratch, research working files, local paths, or assigned secrets.
|
|
236
343
|
|
|
237
|
-
|
|
344
|
+
`npm run check` always runs a release-hygiene scan after validation, deterministic tests, and the exact package allowlist. `npm pack` and `npm publish` run the same complete release gate through `prepack` and `prepublishOnly`.
|
|
238
345
|
|
|
239
|
-
|
|
346
|
+
The blind corpus contains 86 prompt and manifest pairs: 28 incumbent cases, 32 hero, science, case-study, and composition cases introduced for v1.4.0, 20 INVEST and cross-capability cases introduced for v1.5.0, three fiction-boundary cases, and three customer-language cases that test whether internal checking terms stay backstage unless a technical audience needs them. Generation contexts receive prompts only, never expected behavior or grading metadata.
|
|
347
|
+
|
|
348
|
+
## Verify
|
|
240
349
|
|
|
241
350
|
```sh
|
|
242
351
|
npm run check
|
|
352
|
+
npm run release:check
|
|
353
|
+
npm pack --dry-run --json
|
|
243
354
|
npx -y @maestroagora/agora --dry-run
|
|
244
355
|
```
|
|
245
356
|
|
|
246
|
-
The
|
|
357
|
+
The release gate checks skill structure, routing contracts, modifiers, claim boundaries, typography, metadata, reference links, full-tree installer parity, exact npm contents, blind-corpus integrity, and public-tree hygiene.
|
|
358
|
+
|
|
359
|
+
## Change record
|
|
360
|
+
|
|
361
|
+
| Version | What changed |
|
|
362
|
+
|---|---|
|
|
363
|
+
| 1.5.0 | Hardens `INVEST` across fundraising, diligence, and capital allocation. Adds an investment claim ledger, metric separations, asset-specific procedures, decision-led questions, objection handling, defensibility analysis, truthful urgency and commitment language, modifier composition, and current-verification boundaries. Separates real projects from fictional mock and concept-portfolio routes, and permits clearly disclosed invention for mock and hypothetical articles. Adds a customer-language boundary that keeps internal checking terms out of ordinary public copy while preserving them where scientific, methodological, audit, legal, compliance, diligence, or technical work needs them. Expands the blind corpus from 60 to 86 cases. Adds a mandatory public-tree and package hygiene gate that blocks research, transcripts, supplied private documents, raw model outputs, local paths, secrets, unexpected binaries, and private source identities. |
|
|
364
|
+
| 1.4.0 | Adds stronger hero and short-form sales composition plus the composable `SCIENCE` and `CASE_STUDY` capabilities. Heroes now separate truth gates from persuasive optimization and treat the complete first-screen composition as one argument. Scientific and technical work preserves claim class, causality, statistics, uncertainty, analogy limits, and source limits. Case studies add result classes, causality, permissions, confidentiality, role attribution, quote, typicality, and visual-support gates. The blind corpus contains 60 cases. |
|
|
365
|
+
| 1.3.0 | Adds executable `VOICE` profiles, a deterministic measurement engine, admission gates, local profile storage, register-aware checking, and the craft reference. The archived incumbent corpus contains 28 cases. |
|
|
366
|
+
| 1.2.2 | Adds a hard U+2014 ban across the complete response. |
|
|
367
|
+
| 1.2.1 | Adds the first-read comprehension gate, specialized-term gate, and CTA standard. |
|
|
368
|
+
| 1.2.0 | Adds the blind evaluation corpus, generation isolation, pairwise adjudication, and absolute vetoes. |
|
|
369
|
+
|
|
370
|
+
Every research-derived rule records its source grade and boundary or failure condition. Numeric thresholds are sourced or labeled as governance defaults. Practitioner procedures remain bounded craft guidance, not scientific or commercial performance laws.
|
|
371
|
+
|
|
372
|
+
## Maestro suite
|
|
373
|
+
|
|
374
|
+
- **[Maestro Frontier](https://github.com/mbanderas/maestro):** Fuses the model CLIs you already run into one judged, grounded answer.
|
|
375
|
+
- **[Maestro Agora](https://github.com/mbanderas/maestro-agora):** Writes persuasive copy, technical explanations, compelling case studies, and investment communication without inventing results.
|
|
376
|
+
- **[Maestro CostGuard](https://github.com/mbanderas/costguard):** Audits CI and cloud infrastructure for cost leaks and shows what to fix.
|
|
247
377
|
|
|
248
378
|
## License
|
|
249
379
|
|