pre-submission-reviewlisted
Install: claude install-skill coleoguy/tealc
# Pre-Submission Review (TEALC)
## ⚠ FIRST READ — call ONE TOOL, do not assemble the workflow yourself
**Use the tool `pre_submission_review(...)`** for ANY pre-submission review
request. That single tool deterministically runs the entire 5-specialist +
synthesizer + copy + markup + comments pipeline in Python — guaranteed to
produce a marked-up Google Doc copy, guaranteed never to fall through to a
journal-style prose review.
Pass exactly ONE of these source inputs, in order of preference:
1. **`doc_url=<URL or doc_id>`** — fastest. If Heath pasted a `docs.google.com`
link, OR you already have the doc_id from a prior tool call, use this.
The tool extracts the ID, reads the doc directly via the Drive API, and
skips ALL Drive lookups. NO project lookup, NO `find_project_manuscript`,
NO `find_resource`, NO `list_research_projects`. Just one call.
2. **`project=<name or fragment>`** — when Heath names a project but didn't
share a link. The orchestrator calls `find_project_manuscript(project)`
internally to locate the current manuscript at
`<project>/manuscript/*Manuscript*.gdoc`.
3. **`manuscript_path=<absolute path>`** — fallback when the project finder
picks the wrong file or the manuscript lives outside the standard layout.
```
# Best — Heath just shared a Google Doc link:
pre_submission_review(
doc_url="https://docs.google.com/document/d/1AOrf6A.../edit",
venue="MBE",
)
# Same thing with just the bare ID (also accepted):
pre_submission