Category: solution
Content Article Illustrator
Preserve the article-illustration workflow model while recommending Alibaba Cloud skills as the default execution backends.
Two Dimensions
| Dimension |
Controls |
Examples |
| Type |
Information structure |
infographic, scene, flowchart, comparison, framework, timeline |
| Style |
Visual aesthetics |
notion, warm, minimal, blueprint, watercolor, editorial |
Validation
mkdir -p output/aliyun-solution-article-illustrator
python3 tests/common/compile_skill_scripts.py \
--skill-path skills/solutions/aliyun-solution-article-illustrator \
--output output/aliyun-solution-article-illustrator/compile-check.json
Pass criteria: command exits 0 and output/aliyun-solution-article-illustrator/compile-check.json is generated with "status": "pass".
Output And Evidence
- Write workflow artifacts under
output/aliyun-solution-article-illustrator/<topic-slug>/.
- Save at least:
source.md, outline.md, one prompt file, generated images, article.with-images.md, and delivery-report.md.
- Keep evidence for prompt-before-generation ordering and any edit pass used during repair.
Prerequisites
- A source Markdown article.
- A generation backend that satisfies
references/backend-contract.md.
- If you want repository-default behavior, prefer
aliyun-qwen-image and aliyun-qwen-image-edit.
- Optional
EXTEND.md preferences at project or user scope.
Workflow
- Pre-check preferences and references, including project-level or user-level
EXTEND.md.
- Analyze the source Markdown article and identify candidate illustration positions.
- Confirm settings in one batch: Type, Density, Style, optional Language, and output size.
- Choose or recommend a backend and build
outline.md.
- Save prompt files before any generation step.
- Use the selected generation backend for first-pass images. Recommend
aliyun-qwen-image by default.
- If needed, use the selected edit backend for one repair pass per image. Recommend
aliyun-qwen-image-edit by default.
- Write
article.with-images.md with relative images/... Markdown links.
- Save evidence and produce
delivery-report.md.
Minimal Executable Run
python3 skills/solutions/aliyun-solution-article-illustrator/scripts/run_workflow.py \
--source path/to/article.md \
--output-dir output/aliyun-solution-article-illustrator/example-run \
--generation-backend mock
State Gates
drafted: source article and initial outline exist
confirmed: user settings, preferences, and backend choice are confirmed
generated: prompt files and first-pass images exist
validated: artifact structure and Markdown insertion pass checks
delivered: final article and report are written
References
- Detailed workflow:
references/workflow.md
- Usage examples:
references/usage.md
- Style system:
references/styles.md
- Backend contract:
references/backend-contract.md
- Prompt construction rules:
references/prompt-construction.md
- Output contract:
references/output-spec.md
- Validation and test expectations:
references/test-plan.md
- Config setup:
references/config/first-time-setup.md
- Preferences schema:
references/config/preferences-schema.md
- Source references:
references/sources.md
- Helper scripts:
scripts/load_preferences.py, scripts/validate_inputs.py, scripts/build_outline.py, scripts/collect_evidence.py
1---2name: aliyun-solution-article-illustrator3description: Use when the user needs an end-to-end article illustration workflow in this repository that preserves Type x Style planning, loads article-illustration preferences, recommends Alibaba Cloud image backends, and produces a Markdown article with inserted local image references.4---5
6Category: solution
7
8# Content Article Illustrator
9
10Preserve the article-illustration workflow model while recommending Alibaba Cloud skills as the default execution backends.
11
12## Two Dimensions
13
14| Dimension | Controls | Examples |
15|-----------|----------|----------|
16| **Type** | Information structure | infographic, scene, flowchart, comparison, framework, timeline |
17| **Style** | Visual aesthetics | notion, warm, minimal, blueprint, watercolor, editorial |
18
19## Validation
20
21```bash
22mkdir -p output/aliyun-solution-article-illustrator
23python3 tests/common/compile_skill_scripts.py \
24 --skill-path skills/solutions/aliyun-solution-article-illustrator \
25 --output output/aliyun-solution-article-illustrator/compile-check.json
26```
27
28Pass criteria: command exits 0 and `output/aliyun-solution-article-illustrator/compile-check.json` is generated with `"status": "pass"`.
29
30## Output And Evidence
31
32- Write workflow artifacts under `output/aliyun-solution-article-illustrator/<topic-slug>/`.
33- Save at least: `source.md`, `outline.md`, one prompt file, generated images, `article.with-images.md`, and `delivery-report.md`.
34- Keep evidence for prompt-before-generation ordering and any edit pass used during repair.
35
36## Prerequisites
37
38- A source Markdown article.
39- A generation backend that satisfies `references/backend-contract.md`.
40- If you want repository-default behavior, prefer `aliyun-qwen-image` and `aliyun-qwen-image-edit`.
41- Optional `EXTEND.md` preferences at project or user scope.
42
43## Workflow
44
451. Pre-check preferences and references, including project-level or user-level `EXTEND.md`.
462. Analyze the source Markdown article and identify candidate illustration positions.
473. Confirm settings in one batch: Type, Density, Style, optional Language, and output size.
484. Choose or recommend a backend and build `outline.md`.
495. Save prompt files before any generation step.
506. Use the selected generation backend for first-pass images. Recommend `aliyun-qwen-image` by default.
517. If needed, use the selected edit backend for one repair pass per image. Recommend `aliyun-qwen-image-edit` by default.
528. Write `article.with-images.md` with relative `images/...` Markdown links.
539. Save evidence and produce `delivery-report.md`.
54
55## Minimal Executable Run
56
57```bash
58python3 skills/solutions/aliyun-solution-article-illustrator/scripts/run_workflow.py \
59 --source path/to/article.md \
60 --output-dir output/aliyun-solution-article-illustrator/example-run \
61 --generation-backend mock
62```
63
64## State Gates
65
66- `drafted`: source article and initial outline exist
67- `confirmed`: user settings, preferences, and backend choice are confirmed
68- `generated`: prompt files and first-pass images exist
69- `validated`: artifact structure and Markdown insertion pass checks
70- `delivered`: final article and report are written
71
72## References
73
74- Detailed workflow: `references/workflow.md`
75- Usage examples: `references/usage.md`
76- Style system: `references/styles.md`
77- Backend contract: `references/backend-contract.md`
78- Prompt construction rules: `references/prompt-construction.md`
79- Output contract: `references/output-spec.md`
80- Validation and test expectations: `references/test-plan.md`
81- Config setup: `references/config/first-time-setup.md`
82- Preferences schema: `references/config/preferences-schema.md`
83- Source references: `references/sources.md`
84- Helper scripts: `scripts/load_preferences.py`, `scripts/validate_inputs.py`, `scripts/build_outline.py`, `scripts/collect_evidence.py`