You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/codex-quickstart.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ The important part is that `SKILL.md` stays at the root of the installed skill.
47
47
- custom style preset extraction from `.docx` templates
48
48
- Mermaid planning contracts
49
49
- optional subagent rigorous-writing mode
50
-
- optional AIGC risk checking and conservative reduction workflow
50
+
- optional AIGC risk checking and dual-profile reduction workflow
51
51
52
52
## 4. Use The Skill In Codex
53
53
@@ -63,6 +63,7 @@ Typical prompts:
63
63
-`Use $software-thesis-docx to read my Word template, extract a style preset, and build the thesis in that format.`
64
64
-`Use $software-thesis-docx to generate Mermaid flowchart and sequenceDiagram code for my thesis based on the repo architecture.`
65
65
-`Use $software-thesis-docx to run an AIGC risk review on my thesis DOCX and only rewrite the flagged single-run paragraphs after showing me the report.`
66
+
-`Use $software-thesis-docx to lower AIGC for my thesis, keep academic_safe by default, and only switch to explicit_low_aigc if I explicitly ask for it.`
@@ -63,6 +63,7 @@ Use $software-thesis-docx to build my thesis DOCX workflow from my software repo
63
63
-`Use $software-thesis-docx to read my Word template, extract a style preset, and build the thesis in that format.`
64
64
-`Use $software-thesis-docx to generate Mermaid flowchart and sequenceDiagram code for my thesis based on the repo architecture.`
65
65
-`Use $software-thesis-docx to run an AIGC risk review on my thesis DOCX and only rewrite the flagged single-run paragraphs after showing me the report.`
66
+
-`Use $software-thesis-docx to lower AIGC for my thesis, keep academic_safe by default, and only switch to explicit_low_aigc if I explicitly ask for it.`
`v0.4.0` upgrades the AIGC capability from a basic heuristic checker into a sample-driven low-AIGC workflow.
6
+
7
+
This release adds a reusable low-AIGC playbook, a stronger checker aligned to real before/after thesis samples, and a new rewrite script that can auto-apply authorized paragraph rewrites for single-run paragraphs.
8
+
9
+
## Highlights
10
+
11
+
- Sample-driven AIGC methodology in `references/low-aigc-playbook.md`
12
+
- Stronger `check_aigc_risk.py` output:
13
+
-`rewrite_recipe`
14
+
-`typography_flags`
15
+
- denser academic-template detectors
16
+
- New rewrite script:
17
+
-`rewrite_low_aigc_docx.py`
18
+
- Shared AIGC utilities:
19
+
-`aigc_utils.py`
20
+
- Dual rewrite profiles:
21
+
-`academic_safe`
22
+
-`explicit_low_aigc`
23
+
- Updated workflow options:
24
+
-`aigc.rewrite_profile`
25
+
-`aigc.normalize_typography`
26
+
27
+
## Scope Notes
28
+
29
+
-`academic_safe` remains the default.
30
+
-`explicit_low_aigc` is only intended for cases where the user explicitly asks to lower AIGC.
31
+
- The checker remains local and heuristic. It is not presented as a guarantee of any third-party detector percentage.
Rewrite authorized paragraphs for lower AIGC risk:
169
+
170
+
```bash
171
+
python3 scripts/rewrite_low_aigc_docx.py \
172
+
--input thesis.docx \
173
+
--report /tmp/aigc-risk-report.json \
174
+
--output thesis-low-aigc.docx \
175
+
--pending-output /tmp/aigc-pending-review.json \
176
+
--profile academic_safe \
177
+
--normalize-typography
178
+
```
179
+
162
180
## 7. Mermaid Rules
163
181
164
182
Mermaid generation is an orchestration capability, not a required rendering pipeline.
@@ -204,11 +222,13 @@ Safe behavior:
204
222
205
223
- scan first
206
224
- rewrite only authorized paragraphs
225
+
- keep `academic_safe` as the default rewrite profile
226
+
- use `explicit_low_aigc` only when the user explicitly asks to lower AIGC
207
227
- prefer more concrete, evidence-linked language
208
-
-reuse `rewrite_paragraphs.py`only for single-run exact-match paragraphs
209
-
- stop for manual confirmation on multi-run or mixed-format paragraphs
228
+
-use `rewrite_low_aigc_docx.py` for authorized single-run paragraphs
229
+
- stop for manual confirmation on multi-run or mixed-format paragraphs and inspect the pending JSON output
210
230
211
-
Read [references/aigc.md](references/aigc.md) when the user asks for detection or auto-reduction.
231
+
Read [references/aigc.md](references/aigc.md)and [references/low-aigc-playbook.md](references/low-aigc-playbook.md)when the user asks for detection or low-AIGC rewriting.
default_prompt: "Use $software-thesis-docx to build or refine a software thesis DOCX workflow from my project repository, with optional style preset extraction, Mermaid diagrams, subagent writing review, and AIGC risk checks."
default_prompt: "Use $software-thesis-docx to build or refine a software thesis DOCX workflow from my project repository, with optional style preset extraction, Mermaid diagrams, subagent writing review, and sample-driven AIGC risk checks or low-AIGC rewriting."
0 commit comments