docs(claude-design): bring README up to the open/ repo standard
Run the repo-standard gate (plugin class) and fix every ERROR: - README opening line now matches the forge description verbatim, so description == catalog == README is machine-checkable - H1 `# claude-design` matches the repo name (was a title-cased drift) - `## Installation` -> `## Install`, moved onto the first screen, with the single-argument `claude plugin marketplace add <https-url>` form used by every other plugin in the org (the two-argument form pointed the gate at the marketplace name instead of its URL) - `## What this plugin is NOT` -> `## Non-goals` - `## Recent versions` -> `## Changelog`, deduplicated the release-history link - AI-disclosure link pointed at `../../README.md`, dead since the polyrepo split, and at an anchor the catalog README no longer carries -> GOVERNANCE.md - Stale monorepo path `plugins/claude-design/verify.sh` -> `verify.sh` in README and .coverage.md Gate: 13/13 pass, 0 ERROR, 0 WARN, 0 SKIP. verify.sh unchanged at 39 pass / 1 pre-existing fail (validate-plugin.sh flags the gitignored STATE.md). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01B4DrFX1ubxrmswAH3rwSeN
This commit is contained in:
parent
5c75bd5de7
commit
b54cb19b8f
2 changed files with 44 additions and 38 deletions
|
|
@ -67,7 +67,7 @@ This manifest refreshes when any of these events occurs:
|
|||
- **Anthropic support article URL slugs change while keeping numeric IDs stable** — re-pin URLs in column 4 (Anthropic anchor URL); the numeric IDs in `support.claude.com/en/articles/<numeric-id>-<slug>` are the stable anchor
|
||||
- **Labs → GA URL rename for `claude.ai/design`** — re-pin the launch-post URL once the `-anthropic-labs` slug is dropped (note: the launch URL `https://anthropic.com/news/claude-design-anthropic-labs` may or may not 301-redirect after the rename)
|
||||
|
||||
When any trigger fires, run `bash plugins/claude-design/verify.sh --strict` after the manifest update to confirm SC2 and SC3 still pass.
|
||||
When any trigger fires, run `bash verify.sh --strict` after the manifest update to confirm SC2 and SC3 still pass.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
80
README.md
80
README.md
|
|
@ -1,10 +1,44 @@
|
|||
# Claude Design Facilitator
|
||||
# claude-design
|
||||
|
||||
> End-to-end facilitator for prompting Claude Design (`claude.ai/design`). Walks the operator from raw idea through intent-preset selection, audience and destination clarification, DESIGN.md anchor, five-layer prompt drafting, copy-paste delivery, iteration coaching, and ship-readiness handoff. Cites Anthropic primary sources inline. Recommends Anthropic's official `knowledge-work-plugins/design` as the downstream post-design tool.
|
||||
End-to-end facilitator for prompting Claude Design (claude.ai/design) — idea to copy-paste-ready prompt with iteration coaching, citing Anthropic primary sources.
|
||||
|
||||
A Claude Code plugin that ships one skill (`claude-design-facilitator`) plus a reference tree for prompting Anthropic's `claude.ai/design` workspace. The skill auto-fires on natural-language triggers, walks the operator through an eight-phase facilitation flow, and produces a prompt grounded in Anthropic's verbatim Goal / Layout / Content / Audience framework and the published per-preset prompt patterns. For anyone who keeps getting the convergent default aesthetic back from Claude Design. Output is the prompt — the artifact gets built in Claude Design.
|
||||
|
||||
## Install
|
||||
|
||||
Add the marketplace once, then install the plugin:
|
||||
|
||||
```bash
|
||||
claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git
|
||||
```
|
||||
|
||||
In Claude Code:
|
||||
|
||||
```
|
||||
/plugin install claude-design@ktg-plugin-marketplace
|
||||
```
|
||||
|
||||
Or enable directly in `~/.claude/settings.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"enabledPlugins": {
|
||||
"claude-design@ktg-plugin-marketplace": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The skill auto-discovers; no further configuration needed.
|
||||
|
||||
## Requirements
|
||||
|
||||
Claude Code with plugin support, and access to `claude.ai/design`. No npm packages, no Python, no external tools — see [Compatibility](#compatibility) for the full matrix.
|
||||
|
||||
---
|
||||
|
||||
> **Solo-maintained, fork-and-own.** This plugin is a starting point, not a vendor product. Issues are welcome as signals; pull requests are not accepted. See [GOVERNANCE.md](GOVERNANCE.md) for the full model and what upstream provides.
|
||||
|
||||
*AI-generated: all content produced by Claude Code through dialog-driven development. [Full disclosure →](../../README.md#ai-generated-code-disclosure)*
|
||||
*AI-generated: all content produced by Claude Code through dialog-driven development. [Full disclosure →](GOVERNANCE.md)*
|
||||
|
||||

|
||||

|
||||
|
|
@ -14,8 +48,6 @@
|
|||

|
||||

|
||||
|
||||
A Claude Code plugin that ships one skill (`claude-design-facilitator`) plus a reference tree for prompting Anthropic's `claude.ai/design` workspace. The skill auto-fires on natural-language triggers, walks the operator through an eight-phase facilitation flow, and produces a copy-paste-ready prompt grounded in Anthropic's verbatim Goal / Layout / Content / Audience framework and the four published per-preset prompt patterns. Output is the prompt — the artifact gets built in Claude Design.
|
||||
|
||||
---
|
||||
|
||||
## Why this exists
|
||||
|
|
@ -44,7 +76,7 @@ Anthropic's plugin operates on existing artifacts (Figma URLs, screenshots, copy
|
|||
|
||||
---
|
||||
|
||||
## What this plugin is NOT
|
||||
## Non-goals
|
||||
|
||||
By design, this plugin does not:
|
||||
|
||||
|
|
@ -58,34 +90,6 @@ By design, this plugin does not:
|
|||
|
||||
---
|
||||
|
||||
## Installation
|
||||
|
||||
Add the marketplace once, then install the plugin:
|
||||
|
||||
```bash
|
||||
claude plugins marketplace add ktg-plugin-marketplace https://git.fromaitochitta.com/open/ktg-plugin-marketplace
|
||||
```
|
||||
|
||||
In Claude Code:
|
||||
|
||||
```
|
||||
/plugin install claude-design@ktg-plugin-marketplace
|
||||
```
|
||||
|
||||
Or enable directly in `~/.claude/settings.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"enabledPlugins": {
|
||||
"claude-design@ktg-plugin-marketplace": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The skill auto-discovers; no further configuration needed.
|
||||
|
||||
---
|
||||
|
||||
## What you can do with it
|
||||
|
||||
The skill `claude-design-facilitator` walks the operator through eight phases. The phases are scoping + grounding (1–4), drafting + delivery (5–6), and iteration + ship-readiness (7–8).
|
||||
|
|
@ -236,7 +240,7 @@ When Anthropic publishes per-preset guidance for a Community-only or Experimenta
|
|||
## Verification
|
||||
|
||||
```bash
|
||||
bash plugins/claude-design/verify.sh
|
||||
bash verify.sh
|
||||
```
|
||||
|
||||
Runs five test scripts under `tests/` in dependency order:
|
||||
|
|
@ -285,11 +289,13 @@ When a trigger fires, run `bash verify.sh --strict` after the update to confirm
|
|||
|
||||
---
|
||||
|
||||
## Recent versions
|
||||
## Changelog
|
||||
|
||||
Full release history: [CHANGELOG.md](CHANGELOG.md). The plugin follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
**v0.1.0 — 2026-05-17.** Initial public release. Single skill (`claude-design-facilitator`) with eight-phase facilitation flow, 12 natural-language trigger phrases, 13 reference files (5 foundation + 8 per-preset with evidence-grade labels), `.coverage.md` preset manifest plus Authoritative-claims registry, five verification scripts under `tests/` enforcing structural integrity / scope fence / skill description quality / per-preset coverage / Anthropic-domain citation discipline / operator dogfood log format, top-level `verify.sh` roll-up with `--strict` and `--quick` flags, MIT license, GOVERNANCE.md fork-and-own model.
|
||||
|
||||
Full release history: [`CHANGELOG.md`](CHANGELOG.md). The plugin follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The path from v0.1 to v1.0 is dogfood-driven — see the plugin's `REMEMBER.md` for the v1.0 readiness criteria (multi-preset breadth, auto-fire validation in real natural-language requests, two consecutive dogfood sessions with zero critical patches).
|
||||
The path from v0.1 to v1.0 is dogfood-driven — see the plugin's `REMEMBER.md` (local-only, gitignored) for the v1.0 readiness criteria (multi-preset breadth, auto-fire validation in real natural-language requests, two consecutive dogfood sessions with zero critical patches).
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue