Academic Paper Strategist
Overview
This is the planning skill for Codex-based software engineering theses. Use it before drafting or finalizing a thesis from a real repository. Its job is to reduce hallucination risk, map project evidence to chapters, and define only the claims, figures, tables, and tests that can be justified by the actual codebase and supplied school format sample.
Companion flow:
academic-paper-strategist - planning, evidence mapping, rewrite scope
academic-paper-composer - content rewrite and final manuscript assembly
drawio - redraw engineering-style thesis figures when required
playwright - capture real runtime screenshots when the thesis needs running-system evidence
doc - produce and visually check the final DOCX
Do not skip the strategist step when the user asks for a submission-ready undergraduate thesis from an existing project and draft.
Core Rules
- Read project evidence before outlining. Prefer repository files, SQL, config, docs, controllers, services, entities, and the existing draft.
- Treat the existing draft as untrusted input. Keep only what can be supported by project evidence.
- If the user has already hand-edited part of a draft, treat that working draft as a protected artifact and plan around it instead of blindly replacing the whole manuscript.
- If the user provides plagiarism, similarity, or AIGC detection reports, treat them as rewrite-priority signals, not as sources of truth about the project. Load
references/detection-report-rewrite-playbook.md when this applies.
- If the user provides a school format sample, load
references/zjkj-undergrad-thesis-format.md first and treat it as the highest authority for structure and formatting.
- If the task is to produce a final thesis from an existing draft, also load:
references/project-grounding-rules.md
references/finalization-task-rules.md
- Load
references/draft-salvage-handoff-playbook.md when the user wants to continue a partially edited draft, keep original figures/tables, or add running-system screenshots.
- Never invent features, APIs, data tables, performance numbers, deployment scale, user scale, concurrency benchmarks, or test results.
- Reframe "innovation" conservatively as engineering highlights, implementation choices, integration value, or maintainability benefits.
- Only plan figures that are supported by code or project docs. Omit unsupported diagrams.
- Keep the thesis compatible with an automatic table of contents and school-required front matter.
Inputs To Gather
- Repository root
- Existing draft thesis (
.docx, .md, or both)
- School template or format sample (
.doc, .docx, or .pdf)
- Core evidence files such as:
- build file (
pom.xml, package.json, etc.)
- architecture docs
- business logic docs
- SQL schema / migration files
- entities / DTOs / controllers / services
- Detection reports when available (
.pdf, .docx, screenshots, extracted text)
- Required deliverable path(s)
Workflow
Step 1: Ingest Constraints
Record:
- target school and thesis type
- final deliverable format
- whether the task is planning only or full finalization
- whether the task must continue from a hand-edited working draft
- whether the user wants original figures/tables preserved
- whether real running screenshots are required
- required output paths
If the user gives explicit source and destination paths, treat them as binding.
Step 2: Load School Format Authority
When a school sample is present, read references/zjkj-undergrad-thesis-format.md and extract:
- required front-matter order
- heading hierarchy
- body typography and spacing
- figure and table caption rules
- reference formatting
- appendix and acknowledgement rules
- any page-numbering constraints visible in the sample
If the sample contains instructional text boxes or placeholder hints, mark them as "remove from final manuscript".
Step 3: Audit The Existing Draft
Classify each section into:
- keep with minor edits
- keep but downgrade claims
- rewrite from project evidence
- delete entirely
- preserve as a legacy asset and restore if lost later
Always flag for removal:
- process notes
- template prompts
- instructional text boxes
- unsupported novelty claims
- unsupported metrics or deployment claims
- colored headings or hyperlink-styled text
- diagrams that do not match engineering-paper style
Also mark:
- original E-R figures the user wants to keep
- original database per-table field-description blocks
- user manual edits that must not be overwritten
- sections where only a partial range should be replaced
Step 3A: Triage Detection Reports When Present
When the user asks to lower similarity or AIGC risk and provides reports, read references/detection-report-rewrite-playbook.md.
At this stage, the strategist should:
- extract the headline score and hotspot pages
- map hotspots back to thesis sections
- classify causes and rewrite intensity
- tell the composer where to perform heavy structural rewrites versus light cleanup
Step 4: Build An Evidence Map
For each chapter, map every major claim to repo evidence:
- Background / system positioning -> docs and project summary
- Architecture -> package structure, config, controllers, services
- Database design -> SQL schema and entities
- Business workflows -> controllers, services, docs
- Security / consistency mechanisms -> config, service logic, transactional code, locking, signatures, validation
- Testing chapter -> only real screenshots, test classes, manual verification records, or observable system behavior
If a claim cannot be mapped to an evidence source, it cannot appear in the final thesis.
Step 5: Produce The Thesis Plan
Output a handoff package for the composer containing:
- cleaned chapter outline
- per-chapter evidence sources
- claims allowed
- claims forbidden
- figures to redraw
- legacy figures/tables to retain or restore
- exact section ranges to replace if the user only wants partial rewriting
- risky items requiring manual verification
- runtime screenshot capture plan when screenshots are needed
- when detection reports exist: a page-to-section rewrite matrix and a rewrite-priority list
When the handoff will drive a live DOCX revision, make it explicit enough that the composer can execute without re-deciding replacement boundaries, preserve lists, or screenshot targets.
The outline should normally include:
- cover / declarations / abstracts / TOC
- chapter 1 introduction
- chapter 2 requirements analysis
- chapter 3 overall design
- chapter 4 detailed implementation
- chapter 5 testing
- chapter 6 conclusion
- references
- acknowledgements
- appendices if needed
Step 6: Produce A Figure And Screenshot Plan
Only the following figure types are allowed when the user asks for a software engineering undergraduate thesis:
- system architecture diagram
- functional module diagram
- business process diagram
- sequence diagram
- E-R diagram
- use case diagram
- real running-system screenshots tied to actual thesis sections
For every planned figure or screenshot, define:
- chapter placement
- source basis in code/docs/runtime
- labels that must appear
- labels or components that must not appear
- whether an old figure can be retained or must be redrawn
- whether the screenshot needs seeded demo data first
All redrawn figures must use engineering-paper visual style:
- white background
- black or gray lines
- no decorative icons
- no infographic styling
- no color-dependent meaning
Existing-Draft Rework Mode
When the user asks for a final thesis from an existing draft:
- do not start from a blank paper unless the draft is unusable
- identify what to preserve and what to rewrite
- create a section-by-section rewrite brief for
academic-paper-composer
- explicitly note any unsupported content that must be deleted rather than softened
- require the composer to operate on a copied draft or user-designated working draft, never the wrong file
When the user specifically asks to continue on a hand-edited draft:
- record the working draft path and the protected backup/original path separately
- plan replacement anchors by body heading style only
- forbid TOC-based anchor matching in the handoff
- identify which old figures/tables must survive the rewrite
When the user specifically asks to lower similarity or AIGC:
- identify the smallest set of sections that dominates the score
- prioritize Chinese narrative paragraphs over low-yield formal sections
- prefer a few high-impact structural rewrites over broad shallow edits
- use the rewrite modes defined in
references/detection-report-rewrite-playbook.md
References To Load As Needed
references/zjkj-undergrad-thesis-format.md - school format authority
references/project-grounding-rules.md - anti-fabrication and evidence rules
references/finalization-task-rules.md - mandatory workflow for final DOCX delivery
references/detection-report-rewrite-playbook.md - how to triage plagiarism / AIGC reports into a rewrite brief
references/draft-salvage-handoff-playbook.md - how to plan partial replacement, legacy-asset retention, and runtime screenshots
references/chinese-call-prompt-templates.md - copy-paste Chinese prompts for planning and handoff tasks
Example Prompts
根据当前仓库和学校模板,先给我做一个本科论文定稿规划,只保留代码里能证实的内容。
我已经手改初稿到正文 2.3 前了,帮我做 keep/rewrite/delete 矩阵,要求保留原数据库 E-R 图和每张表的字段说明。
这是查重报告和 AIGC 报告,先别直接改正文,先把热点页映射到章节并给出重写优先级。
继续在我现在的 working draft 上做规划,只替换 2.4 之后的正文内容,前面手改部分不要动。
帮我给论文补一个运行截图规划,说明每张截图对应哪个角色、哪个页面、哪个章节。
Output Expectations
Produce:
- a thesis outline with up to 3 heading levels
- a chapter-by-chapter evidence map
- a keep / rewrite / delete matrix for the current draft
- a figure/table/screenshot rebuild plan
- a list of unsupported claims to remove
- a handoff package for
academic-paper-composer
- when reports are supplied: a detection-report triage summary with hotspot pages, mapped sections, and recommended rewrite intensity
Do not claim that the paper is submission-ready at this stage. That decision belongs to the composer + drawio + playwright + doc flow.
Source: AAASS554/codex-academic-paper-skills — distributed by TomeVault.
1---2name: academic-paper-strategist3description: Use when the user needs to plan, de-risk, or ground a software engineering / computer science undergraduate thesis from a real codebase before final writing. Trigger for requests such as "根据项目写毕业论文", "先做论文大纲", "用真实项目材料规划论文", "检查论文是否脱离代码", "根据检测报告降查重", "根据AIGC报告改写定稿", "继续在手改初稿上改", or when an existing draft thesis must be reworked against a school format sample. Produces an evidence-backed outline, chapter rewrite plan, figure plan, and handoff package for academic-paper-composer.4---56# Academic Paper Strategist78## Overview910This is the planning skill for Codex-based software engineering theses. Use it before drafting or finalizing a thesis from a real repository. Its job is to reduce hallucination risk, map project evidence to chapters, and define only the claims, figures, tables, and tests that can be justified by the actual codebase and supplied school format sample.1112**Companion flow**:131. `academic-paper-strategist` - planning, evidence mapping, rewrite scope142. `academic-paper-composer` - content rewrite and final manuscript assembly153. `drawio` - redraw engineering-style thesis figures when required164. `playwright` - capture real runtime screenshots when the thesis needs running-system evidence175. `doc` - produce and visually check the final DOCX1819Do not skip the strategist step when the user asks for a submission-ready undergraduate thesis from an existing project and draft.2021## Core Rules2223- Read project evidence before outlining. Prefer repository files, SQL, config, docs, controllers, services, entities, and the existing draft.24- Treat the existing draft as untrusted input. Keep only what can be supported by project evidence.25- If the user has already hand-edited part of a draft, treat that working draft as a protected artifact and plan around it instead of blindly replacing the whole manuscript.26- If the user provides plagiarism, similarity, or AIGC detection reports, treat them as rewrite-priority signals, not as sources of truth about the project. Load `references/detection-report-rewrite-playbook.md` when this applies.27- If the user provides a school format sample, load `references/zjkj-undergrad-thesis-format.md` first and treat it as the highest authority for structure and formatting.28- If the task is to produce a final thesis from an existing draft, also load:29 - `references/project-grounding-rules.md`30 - `references/finalization-task-rules.md`31- Load `references/draft-salvage-handoff-playbook.md` when the user wants to continue a partially edited draft, keep original figures/tables, or add running-system screenshots.32- Never invent features, APIs, data tables, performance numbers, deployment scale, user scale, concurrency benchmarks, or test results.33- Reframe "innovation" conservatively as engineering highlights, implementation choices, integration value, or maintainability benefits.34- Only plan figures that are supported by code or project docs. Omit unsupported diagrams.35- Keep the thesis compatible with an automatic table of contents and school-required front matter.3637## Inputs To Gather3839- Repository root40- Existing draft thesis (`.docx`, `.md`, or both)41- School template or format sample (`.doc`, `.docx`, or `.pdf`)42- Core evidence files such as:43 - build file (`pom.xml`, `package.json`, etc.)44 - architecture docs45 - business logic docs46 - SQL schema / migration files47 - entities / DTOs / controllers / services48- Detection reports when available (`.pdf`, `.docx`, screenshots, extracted text)49- Required deliverable path(s)5051## Workflow5253### Step 1: Ingest Constraints5455Record:56- target school and thesis type57- final deliverable format58- whether the task is planning only or full finalization59- whether the task must continue from a hand-edited working draft60- whether the user wants original figures/tables preserved61- whether real running screenshots are required62- required output paths6364If the user gives explicit source and destination paths, treat them as binding.6566### Step 2: Load School Format Authority6768When a school sample is present, read `references/zjkj-undergrad-thesis-format.md` and extract:69- required front-matter order70- heading hierarchy71- body typography and spacing72- figure and table caption rules73- reference formatting74- appendix and acknowledgement rules75- any page-numbering constraints visible in the sample7677If the sample contains instructional text boxes or placeholder hints, mark them as "remove from final manuscript".7879### Step 3: Audit The Existing Draft8081Classify each section into:82- keep with minor edits83- keep but downgrade claims84- rewrite from project evidence85- delete entirely86- preserve as a legacy asset and restore if lost later8788Always flag for removal:89- process notes90- template prompts91- instructional text boxes92- unsupported novelty claims93- unsupported metrics or deployment claims94- colored headings or hyperlink-styled text95- diagrams that do not match engineering-paper style9697Also mark:98- original E-R figures the user wants to keep99- original database per-table field-description blocks100- user manual edits that must not be overwritten101- sections where only a partial range should be replaced102103### Step 3A: Triage Detection Reports When Present104105When the user asks to lower similarity or AIGC risk and provides reports, read `references/detection-report-rewrite-playbook.md`.106107At this stage, the strategist should:108- extract the headline score and hotspot pages109- map hotspots back to thesis sections110- classify causes and rewrite intensity111- tell the composer where to perform heavy structural rewrites versus light cleanup112113### Step 4: Build An Evidence Map114115For each chapter, map every major claim to repo evidence:116- **Background / system positioning** -> docs and project summary117- **Architecture** -> package structure, config, controllers, services118- **Database design** -> SQL schema and entities119- **Business workflows** -> controllers, services, docs120- **Security / consistency mechanisms** -> config, service logic, transactional code, locking, signatures, validation121- **Testing chapter** -> only real screenshots, test classes, manual verification records, or observable system behavior122123If a claim cannot be mapped to an evidence source, it cannot appear in the final thesis.124125### Step 5: Produce The Thesis Plan126127Output a handoff package for the composer containing:128- cleaned chapter outline129- per-chapter evidence sources130- claims allowed131- claims forbidden132- figures to redraw133- legacy figures/tables to retain or restore134- exact section ranges to replace if the user only wants partial rewriting135- risky items requiring manual verification136- runtime screenshot capture plan when screenshots are needed137- when detection reports exist: a page-to-section rewrite matrix and a rewrite-priority list138139When the handoff will drive a live DOCX revision, make it explicit enough that the composer can execute without re-deciding replacement boundaries, preserve lists, or screenshot targets.140141The outline should normally include:142- cover / declarations / abstracts / TOC143- chapter 1 introduction144- chapter 2 requirements analysis145- chapter 3 overall design146- chapter 4 detailed implementation147- chapter 5 testing148- chapter 6 conclusion149- references150- acknowledgements151- appendices if needed152153### Step 6: Produce A Figure And Screenshot Plan154155Only the following figure types are allowed when the user asks for a software engineering undergraduate thesis:156- system architecture diagram157- functional module diagram158- business process diagram159- sequence diagram160- E-R diagram161- use case diagram162- real running-system screenshots tied to actual thesis sections163164For every planned figure or screenshot, define:165- chapter placement166- source basis in code/docs/runtime167- labels that must appear168- labels or components that must not appear169- whether an old figure can be retained or must be redrawn170- whether the screenshot needs seeded demo data first171172All redrawn figures must use engineering-paper visual style:173- white background174- black or gray lines175- no decorative icons176- no infographic styling177- no color-dependent meaning178179## Existing-Draft Rework Mode180181When the user asks for a final thesis from an existing draft:182- do not start from a blank paper unless the draft is unusable183- identify what to preserve and what to rewrite184- create a section-by-section rewrite brief for `academic-paper-composer`185- explicitly note any unsupported content that must be deleted rather than softened186- require the composer to operate on a copied draft or user-designated working draft, never the wrong file187188When the user specifically asks to continue on a hand-edited draft:189- record the working draft path and the protected backup/original path separately190- plan replacement anchors by body heading style only191- forbid TOC-based anchor matching in the handoff192- identify which old figures/tables must survive the rewrite193194When the user specifically asks to lower similarity or AIGC:195- identify the smallest set of sections that dominates the score196- prioritize Chinese narrative paragraphs over low-yield formal sections197- prefer a few high-impact structural rewrites over broad shallow edits198- use the rewrite modes defined in `references/detection-report-rewrite-playbook.md`199200## References To Load As Needed201202- `references/zjkj-undergrad-thesis-format.md` - school format authority203- `references/project-grounding-rules.md` - anti-fabrication and evidence rules204- `references/finalization-task-rules.md` - mandatory workflow for final DOCX delivery205- `references/detection-report-rewrite-playbook.md` - how to triage plagiarism / AIGC reports into a rewrite brief206- `references/draft-salvage-handoff-playbook.md` - how to plan partial replacement, legacy-asset retention, and runtime screenshots207- `references/chinese-call-prompt-templates.md` - copy-paste Chinese prompts for planning and handoff tasks208209## Example Prompts210211- `根据当前仓库和学校模板,先给我做一个本科论文定稿规划,只保留代码里能证实的内容。`212- `我已经手改初稿到正文 2.3 前了,帮我做 keep/rewrite/delete 矩阵,要求保留原数据库 E-R 图和每张表的字段说明。`213- `这是查重报告和 AIGC 报告,先别直接改正文,先把热点页映射到章节并给出重写优先级。`214- `继续在我现在的 working draft 上做规划,只替换 2.4 之后的正文内容,前面手改部分不要动。`215- `帮我给论文补一个运行截图规划,说明每张截图对应哪个角色、哪个页面、哪个章节。`216217## Output Expectations218219Produce:220- a thesis outline with up to 3 heading levels221- a chapter-by-chapter evidence map222- a keep / rewrite / delete matrix for the current draft223- a figure/table/screenshot rebuild plan224- a list of unsupported claims to remove225- a handoff package for `academic-paper-composer`226- when reports are supplied: a detection-report triage summary with hotspot pages, mapped sections, and recommended rewrite intensity227228Do not claim that the paper is submission-ready at this stage. That decision belongs to the composer + drawio + playwright + doc flow.229230---231> Source: [AAASS554/codex-academic-paper-skills](https://github.com/AAASS554/codex-academic-paper-skills) — distributed by [TomeVault](https://tomevault.io).232<!-- tomevault:4.0:skill_md:2026-06-30 -->