Ticker Dossier
Prompt-first skill. This is a renderer, not an analyser — never fabricate numbers.
Run the sibling skills first, then compose their Thinking Cards into one report.
scripts/dossier.py is OPTIONAL and produces the canonical Markdown deterministically.
Role & objective
You consolidate the supplied analysis cards into one PDF-ready Markdown dossier: an
at-a-glance verdict table, themed sections, and a provenance footer noting what was missing.
When to use
"Full report / one-pager / investment memo on GP", "everything on this stock", "a single
printable analysis". Run last, after the component skills have produced their cards.
Inputs you need
ticker, as_of.
cards — a map of the sibling outputs keyed by: technical, momentum, pattern,
fundamental, value, smart_money, sentiment, macro, synthesizer, risk.
Only the cards present are rendered; absent ones are listed as missing. Empty cards → a
labelled skeleton report (never invented content).
Method (follow in order)
- At-a-glance table — one row per present card: rating (or grade/status), score (or
composite), confidence.
- Themed sections — Investment view (fundamental, value); Momentum view (technical,
momentum, pattern); Risk & levels (risk); Smart-money & sentiment; Macro context;
Synthesised signal. Each renders rating/score/confidence + up to ~8 reasoning bullets + flags.
- Provenance footer — list included vs missing cards; note verdicts are only as fresh as
the supplied cards.
Scoring rubric
None — the dossier does not score. It faithfully transcribes each card's existing
rating/score/confidence; if a field is absent it shows "-". Verdicts are inherited, never recomputed.
Output
{ "skill": "ticker-dossier", "ticker": "..", "as_of": "..",
"markdown": "# Ticker Dossier — .. (full report)",
"included_cards": ["fundamental", ".."], "missing_cards": ["pattern", ".."],
"disclaimer": "Educational analysis only. Not financial advice." }
DSE pitfalls
- Never invent a verdict for a missing analysis — show it as missing in the footer.
- The dossier is only as current as the cards passed in — re-run the component skills to refresh.
- Keep the educational-only framing at the top; this is not individualised advice.
Optional precision helper
python3 scripts/dossier.py --input dossier_input.json --pretty
Input: {"ticker":"..","as_of":"..","cards":{"technical":{...},"fundamental":{...}}}.
Returns the assembled Markdown plus included/missing card lists.
Worked example
Cards for fundamental (buy) + technical (bullish) + risk (reduced) supplied; pattern/sentiment
missing → table shows 3 rows, sections render those three, footer lists 7 missing cards.
References
Dossier layout: references/DOSSIER.md.
Output is educational analysis only, never financial advice.
1---2name: ticker-dossier3description: Consolidates the Thinking Cards from sibling Stock Buddy skills into one PDF-ready Markdown dossier for a DSE ticker. Use when the user asks for a full report, one-pager, "everything on this stock", a consolidated/printable analysis, an investment memo, or a single document combining technical, momentum, fundamental, value, smart-money, sentiment, macro, synthesizer, and risk views for a Dhaka Stock Exchange ticker.4license: Apache-2.05---67# Ticker Dossier89> **Prompt-first skill.** This is a **renderer, not an analyser** — never fabricate numbers.10> Run the sibling skills first, then compose their Thinking Cards into one report.11> `scripts/dossier.py` is OPTIONAL and produces the canonical Markdown deterministically.1213## Role & objective14You consolidate the supplied analysis cards into one PDF-ready Markdown dossier: an15at-a-glance verdict table, themed sections, and a provenance footer noting what was missing.1617## When to use18"Full report / one-pager / investment memo on GP", "everything on this stock", "a single19printable analysis". Run **last**, after the component skills have produced their cards.2021## Inputs you need22- **`ticker`**, **`as_of`**.23- **`cards`** — a map of the sibling outputs keyed by: `technical`, `momentum`, `pattern`,24 `fundamental`, `value`, `smart_money`, `sentiment`, `macro`, `synthesizer`, `risk`.25 Only the cards present are rendered; absent ones are listed as missing. Empty `cards` → a26 labelled skeleton report (never invented content).2728## Method (follow in order)291. **At-a-glance table** — one row per present card: rating (or grade/status), score (or30 composite), confidence.312. **Themed sections** — Investment view (fundamental, value); Momentum view (technical,32 momentum, pattern); Risk & levels (risk); Smart-money & sentiment; Macro context;33 Synthesised signal. Each renders rating/score/confidence + up to ~8 reasoning bullets + flags.343. **Provenance footer** — list included vs missing cards; note verdicts are only as fresh as35 the supplied cards.3637## Scoring rubric38None — the dossier does not score. It faithfully transcribes each card's existing39rating/score/confidence; if a field is absent it shows "-". Verdicts are inherited, never recomputed.4041## Output42```json43{ "skill": "ticker-dossier", "ticker": "..", "as_of": "..",44 "markdown": "# Ticker Dossier — .. (full report)",45 "included_cards": ["fundamental", ".."], "missing_cards": ["pattern", ".."],46 "disclaimer": "Educational analysis only. Not financial advice." }47```4849## DSE pitfalls50- **Never invent** a verdict for a missing analysis — show it as missing in the footer.51- The dossier is only as current as the cards passed in — re-run the component skills to refresh.52- Keep the educational-only framing at the top; this is not individualised advice.5354## Optional precision helper55```bash56python3 scripts/dossier.py --input dossier_input.json --pretty57```58Input: `{"ticker":"..","as_of":"..","cards":{"technical":{...},"fundamental":{...}}}`.59Returns the assembled Markdown plus included/missing card lists.6061## Worked example62Cards for fundamental (buy) + technical (bullish) + risk (reduced) supplied; pattern/sentiment63missing → table shows 3 rows, sections render those three, footer lists 7 missing cards.6465## References66Dossier layout: [references/DOSSIER.md](references/DOSSIER.md).67Output is educational analysis only, never financial advice.