一键导入
ideate
Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Detects AI-generated writing patterns in prose. Use when reviewing docs for slop, vague language, or identity leaks before publishing.
Audits Rust code for unsafe blocks, ownership issues, and Cargo dependency risks. Use when reviewing Rust code or before merging Rust changes.
Recommends context compression strategies for bloated or quota-heavy sessions. Use when context feels sluggish or quota burns faster than expected.
Guide minimal code via a decision ladder with full safety, edge, and negative-case coverage. Use when adding code, choosing a dependency, or auditing a diff.
Optimizes context window via MECW principles and memory tiering. Use when context exceeds 30% or before long multi-step tasks.
Generates or remediates documentation with human-quality writing. Use when creating new docs, rewriting AI-generated content, or applying style profiles.
| name | ideate |
| description | Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output. |
| category | research |
| tags | ["ideation","creativity","diversity","mode-collapse","problem-solving"] |
| estimated_tokens | 500 |
| model_hint | standard |
Diversity is a selection problem, not a volume problem.
Generating ten ideas from one mental frame yields ten variations of the same idea. The fix is to ideate from different categories of method, then rotate methods across passes so the next round does not repeat the last. This is the documented lever against LLM mode collapse, not a brainstorming ritual.
Structure the reasoning, not the output.
"The Price of Format" (arXiv 2505.18949) found that rigid output templates collapse output diversity, while reasoning scaffolds raise it. So each method hands you a reasoning prompt. Do not force the ideas into a fixed schema while generating; impose structure only when reporting the final set.
Seven methods that port to technical problem-solving, each tagged with an honest evidence grade (see Sources below):
| Method | Category | Evidence |
|---|---|---|
| SCAMPER | transformation | weak |
| SIT task unification | transformation | mixed |
| Morphological analysis | decomposition | mixed |
| SIT subtraction | decomposition | mixed |
| Cross-domain analogy (TRIZ) | analogical | mixed |
| Inversion (pre-mortem) | inversion | anecdotal |
| Constraint provocation | perturbation | anecdotal |
The grades are deliberately conservative. Individual-method evidence
is thin; the value is the diverse-selection-plus-rotation pattern, not
any single method. For the structured analogical form, use
Skill(tome:triz).
select_methods(n) from tome.channels.ideation returns methods
from different categories by construction.select_methods(n, exclude=used_ids) or
rotation_plan(passes, n_per_pass) so no method repeats until the
catalog is exhausted.score_idea (weighted criteria per
Skill(leyline:evaluation-framework)). Novelty claimed without
evidence is capped, so "novel" must be earned, not asserted.score_idea(scores, novelty_evidence=False) applies weighted criteria
(novelty 0.25, fit 0.20, feasibility 0.20, simplicity 0.15,
reversibility 0.10, impact 0.10) and an anti-inflation rule: a novelty
score of 8 or higher without supporting evidence is capped to 7. Pass
novelty_evidence=True only when you have checked for prior art and
found the idea genuinely new.
The diversity rationale and method evidence grades draw on:
>= 3 categories from list_categories()).exclude or rotation_plan so no
method repeated before the catalog was exhausted.score_idea, with
any uncapped novelty backed by an explicit prior-art check.