Reference-driven AI-native design docs for better homepages.
English | ํ๊ตญ์ด | ๆฅๆฌ่ช | ็ฎไฝไธญๆ | ็น้ซไธญๆ๏ผๅฐ็ฃ๏ผ
Artic is a Claude/Codex-compatible agent design-direction protocol: a contract-bound LLM design director for homepage work before implementation.
It keeps the public workflow small:
@artic init # collect intent and references
@artic start # author strategy artifacts, then compile DESIGN.md docs
The agent handles the design-direction work: interview the user, normalize the brief into search facets, search professional/open-source design references, author .artic/strategy.json, compile it into DESIGN.md and supporting docs, then validate the output. Scripts are validator/compiler helpers; they do not replace the agent's design judgment or strategy authorship.
Artic does not clone reference sites. It extracts reusable principles from professional and OSS design systems, then binds implementation to project-specific strategy and AI-native docs.
Install the marketplace package:
/plugin marketplace add baskduf/artic
/plugin install claude-artic@artic
Run the bundled skill:
/claude-artic:artic init
/claude-artic:artic start
Or ask naturally:
Use Artic to create AI-native design docs before building this homepage.
Add the marketplace from the current default branch:
codex plugin marketplace add baskduf/articPin a released version when you want a stable install:
codex plugin marketplace add baskduf/artic@v0.5.0Install codex-artic from the plugin browser:
/plugins
Or install the plugin directly:
codex plugin add codex-artic@articThen ask Codex:
@artic init
@artic start
skills/artic # Claude/Hermes-style skill folder
plugins/claude-artic # Claude Code plugin package
plugins/codex-artic # Codex plugin package
python3 skills/artic/scripts/search_reference_catalog.py --query "ai product developer saas" --limit 3
python3 skills/artic/scripts/synthesize_reference_notes.py --query "ai product developer saas" --limit 3 --output /tmp/artic-smoke/docs/reference-synthesis.md
python3 skills/artic/scripts/synthesize_reference_notes.py --query "ai product developer saas" --limit 3 --live-fetch --cache-dir /tmp/artic-cache --fixtures-dir /tmp/no-fixtures --output /tmp/artic-smoke/docs/live-reference-synthesis.md
python3 skills/artic/scripts/scaffold_artic_files.py --root /tmp/artic-smoke
python3 skills/artic/scripts/validate_artic_outputs.py --root /tmp/artic-smoke
python3 skills/artic/scripts/artic_version.py --root .
python3 skills/artic/scripts/artic_update.py --root .Helper scripts are deterministic helpers: validate_artic_outputs.py validates contracts, and artic_start.py compiles agent-authored strategy into docs. They are not the source of design judgment; the public @artic start agent workflow supplies that judgment in .artic/strategy.json.
When invoked, Artic asks the agent to:
- Pause before implementation when a homepage/design request is vague.
- Run
@artic initto collect product, audience, goal, vibe, constraints, and references. - Search multiple professional/OSS design resources instead of relying on one style.
- Extract reusable rules: color roles, type hierarchy, spacing rhythm, components, motion, accessibility.
- Resolve conflicts between references based on the user's project goal.
- Run
@artic startso the public agent workflow authors.artic/strategy.json, writesdocs/artic-strategy.md, then runs the compiler forDESIGN.mdand supporting docs.
Use it for:
- Homepages, landing pages, product pages, and website redesigns.
- Projects with weak or missing design docs.
- AI-native design documentation before coding.
- Reference-driven design direction without exact brand copying.
Skip it for:
- Exact cloning of a website or brand.
- Logo, trademark, illustration, or copyrighted asset copying.
- One-off graphic design with no website/doc output.
| Goal | Command |
|---|---|
| Start the design interview | @artic init |
| Run the fast interview | @artic init quick |
| Author strategy and compile docs | @artic start |
| Check installed/latest version | @artic version |
| Print safe update commands | @artic update |
@artic init follows the user's language. For example, ํ๊ตญ์ด๋ก Artic init ์งํํด์ค. AI ํ์๋ก ์๋น์ค ๋๋ฉ์ ๋ง๋ค๊ณ ์ถ์ด. starts a Korean interview, stores ko-KR in .artic/init-session.json.language, asks for missing fields, and does not generate design artifacts until @artic start.
@artic init only saves draft interview state. Even when the required fields are complete, document generation starts only after the user explicitly runs @artic start.
@artic start has two layers. The public agent workflow is the design-director layer: it uses the completed intake and references to author .artic/strategy.json and docs/artic-strategy.md, then invokes the deterministic compiler. The raw artic_start.py fallback is compiler-only: if strategy is missing, it writes .artic/strategy-prompt.md with the questions the agent must answer and exits non-zero instead of inventing design direction.
Artic writes durable files instead of dumping long design prose into chat:
.artic/init-session.json # draft interview state from @artic init
.artic/brief.json # finalized by @artic start
.artic/references.json # finalized by @artic start
.artic/strategy.json # agent-authored design-direction contract for @artic start
.artic/strategy-prompt.md # raw compiler fallback prompt when strategy is missing
.artic/state.json
docs/artic-brief.md
docs/artic-strategy.md # human-readable strategy contract
DESIGN.md
docs/design-rules.md
docs/design-qa-checklist.md
docs/homepage-design-prompt.md
.claude-plugin/marketplace.json # Claude Code marketplace manifest
.agents/plugins/marketplace.json # Codex marketplace manifest
skills/artic/ # Claude/Hermes-style skill folder
plugins/claude-artic/ # Claude Code plugin package
plugins/codex-artic/ # Codex plugin package
examples/prompts.md # Example prompts and commands
tests/ # Manifest, sync, README, and script checks
python3 -m pip install pytest pyyaml
python3 -m pytest -qCI validates Python scripts, JSON manifests, README translation structure, skill-copy sync, smoke scaffolding, warning-free DESIGN.md lint, and marketplace plugin layout.
Distribution note: the wheel is metadata-only; marketplace packages, release tarballs, and sdists carry the skill/plugin payload.
- Read
CONTRIBUTING.mdbefore opening a pull request. - Report sensitive issues using
SECURITY.md; do not post secrets or private design assets in public issues. - Follow
CODE_OF_CONDUCT.mdin issues and pull requests.
MIT