agentic-presentation-prototype
This skill is a compatibility shim. It does not own prototype production workflow.
Trigger Conditions
Use this shim when older docs, users, or skills refer to presentation, deck, or slide-based prototype output.
For any artifact-producing operation, call agentic-prototype-trigger with profile: presentation plus original source spec, current manifest when present, selected elements when present, and user request or critique diagnostics when present.
Required Inputs
profile: presentation
- original source spec
- current manifest when present
selected_elements when present
- user request when present
- critique diagnostics when present
- Active
DESIGN.md for typography, layout, imagery, and accessibility rules
Outputs
- A routing handoff to
agentic-prototype-trigger
- Preserved
agentic-design presentation context for downstream request construction
- Blocked questions when source spec, narrative, slide intent, or critique context is incomplete
Forbidden Actions
- Do not invent business evidence, metrics, screenshots, or logos.
- Do not flatten required slide structure into a single page.
- Do not bypass
agentic-prototype-trigger for any artifact-producing operation.
- Do not package or doctor prototype artifacts from this shim.
- Do not commit, push, reset, rebase, stash, or delete user work as part
of this skill (
git_read_only tier in
skills/agentic-git-sync/rules/git-permission-boundaries.md); this does
not restrict other active skills' Git contracts.
Command Invocation
Call `agentic-prototype-trigger` with profile: presentation and the collected source spec / manifest / selected_elements / critique context.
Verification Commands
PYTHONPATH=python .venv/bin/pytest tests/agentic_core/test_design_skills.py -q
1---2name: agentic-presentation-prototype3description: Compatibility shim for presentation prototype requests; artifact-producing operations must route to agentic-prototype-trigger with profile: presentation.4---56# agentic-presentation-prototype78This skill is a compatibility shim. It does not own prototype production workflow.910## Trigger Conditions1112Use this shim when older docs, users, or skills refer to presentation, deck, or slide-based prototype output.1314For any artifact-producing operation, call `agentic-prototype-trigger` with `profile: presentation` plus original source spec, current manifest when present, selected elements when present, and user request or critique diagnostics when present.1516## Required Inputs1718- `profile: presentation`19- original source spec20- current manifest when present21- `selected_elements` when present22- user request when present23- critique diagnostics when present24- Active `DESIGN.md` for typography, layout, imagery, and accessibility rules2526## Outputs2728- A routing handoff to `agentic-prototype-trigger`29- Preserved `agentic-design` presentation context for downstream request construction30- Blocked questions when source spec, narrative, slide intent, or critique context is incomplete3132## Forbidden Actions3334- Do not invent business evidence, metrics, screenshots, or logos.35- Do not flatten required slide structure into a single page.36- Do not bypass `agentic-prototype-trigger` for any artifact-producing operation.37- Do not package or doctor prototype artifacts from this shim.38- Do not commit, push, reset, rebase, stash, or delete user work as part39 of this skill (`git_read_only` tier in40 `skills/agentic-git-sync/rules/git-permission-boundaries.md`); this does41 not restrict other active skills' Git contracts.4243## Command Invocation4445```bash46Call `agentic-prototype-trigger` with profile: presentation and the collected source spec / manifest / selected_elements / critique context.47```4849## Verification Commands5051```bash52PYTHONPATH=python .venv/bin/pytest tests/agentic_core/test_design_skills.py -q53```