Turn AI analysis into editorial HTML reports.
Iris turns AI analysis, research notes, codebase readings, product judgments, and technical explanations into self-contained HTML reports.
Each report leads with a thesis, organizes findings around evidence, and closes with assumptions, open decisions, and next actions.
Browse the GitHub Pages entry page from docs/index.html, or open the
finished reports directly:
docs/examples/editorial-method.htmldocs/examples/editorial-method-zh.html
- Codebase analysis reports
- Article summaries and interpretation
- Research notes and source synthesis
- Product or strategy judgments
- Technical explanations
- Requirements critique
- Thinking notes that need a clear conclusion
- Read the source material.
- Extract the thesis, findings, evidence, assumptions, open decisions, and next actions.
- Compose a self-contained HTML report with the Iris template as the visual and structural reference.
- Inspect the HTML at desktop and mobile widths.
Markdown can be useful as a private scratchpad while thinking. It is not the final deliverable. Iris delivers HTML.
| File | Purpose |
|---|---|
skills/iris/SKILL.md |
Main agent instructions |
skills/iris/references/content-method.md |
Content extraction and writing method |
skills/iris/references/design-system.md |
Visual system and report quality rules |
skills/iris/templates/report.html |
Canonical template reference |
docs/index.html |
GitHub Pages introduction page |
docs/examples/editorial-method.html |
Finished HTML example |
docs/examples/editorial-method-zh.html |
Finished Chinese HTML example |
skills.sh.json |
Optional grouping metadata for the skills.sh repo page |
Install Iris globally with the skills CLI:
npx -y skills add iCyris/Iris --skill iris -a '*' -g -yThis installs the iris skill from the public iCyris/Iris repository for all
supported agents on your machine.
Iris does not need an npm package for this install path. The skills CLI reads
the GitHub repository and installs the skills/iris folder directly.
Update Iris later with:
npx -y skills update iris -g -yRemove Iris later with:
npx -y skills remove --global iris -yThe skills remove command removes installed skills by name. --global targets
the global install scope used above, and -y skips the confirmation prompt.
If you prefer to point directly at the skill folder, use the GitHub tree URL:
npx -y skills add https://github.com/iCyris/Iris/tree/main/skills/iris -a '*' -g -yFlags:
-a '*'installs for every supported agent.-ginstalls globally instead of only in the current project.-yaccepts the install prompts.
The skill lives here:
skills/iris
Iris/
├── .codex-plugin/
├── assets/logo/generated/
├── assets/readme/
├── docs/
│ ├── assets/
│ ├── examples/
│ └── index.html
├── skills/iris/
│ ├── SKILL.md
│ ├── agents/
│ ├── assets/
│ ├── references/
│ └── templates/report.html
├── AGENTS.md
├── BRAND.md
├── CLAUDE.md
├── asset-manifest.json
└── skills.sh.json
MIT License. See LICENSE.