项目文件夹

文件
wehub-resource-sync 070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

84 行
2.8 KiB
Markdown

# Agent Development Handoff
Language: English | [简体中文](AGENT-DEVELOPMENT.zh-CN.md)
Give this file to a coding agent when you want it to create or improve an Open Design plugin.
## Mission
Create a portable Open Design plugin that can:
1. Run as a normal Agent Skill through `SKILL.md`.
2. Install into Open Design through `open-design.json`.
3. Be validated locally.
4. Be published as an independent open source repo or submitted as a PR to Open Design.
## Required Reading
Read these files before editing:
- `plugins/spec/SPEC.md`
- `docs/schemas/open-design.plugin.v1.json`
- `docs/plugins-spec.md` when you need deeper product semantics
- `plugins/spec/PUBLISHING-REGISTRIES.md` when the user asks to publish outside Open Design
- A nearby example under `plugins/spec/examples/`
## Build Procedure
1. Choose a lowercase plugin id, for example `import-screenshot-to-prototype`.
2. Create a folder with at least:
```text
<plugin-id>/
SKILL.md
open-design.json
README.md
```
3. Keep the `SKILL.md` portable. It may mention Open Design behavior, but the core workflow must still make sense in any Agent Skills compatible agent.
4. Put OD-specific display, `specVersion`, plugin `version`, inputs, preview, pipeline, atoms, connectors, and capabilities in `open-design.json`.
5. Add `examples/`, `preview/`, `assets/`, or `references/` only when they materially help the agent produce better results.
6. Add `evals/evals.json` when the plugin has enough behavior to regress.
7. If publishing externally, prepare registry-safe README sections for skills.sh, ClawHub, and canonical GitHub source.
## Quality Bar
The plugin is not done until:
- `SKILL.md` has a clear "Use this plugin when..." description.
- The workflow states the expected output files or handoff result.
- `open-design.json` validates against the v1 shape and carries explicit `specVersion` plus plugin `version`.
- The declared atoms are known first-party atoms or clearly marked future work.
- The declared capabilities are the minimum needed.
- Visual plugins include a preview or concrete example output.
- Share, deploy, connector, and network plugins require explicit confirmation before externally visible actions.
## Validation Commands
Run what is available in this environment:
```bash
pnpm guard
pnpm --filter @open-design/plugin-runtime typecheck
```
If the daemon CLI is built:
```bash
od plugin validate ./<plugin-id>
od plugin install ./<plugin-id>
od plugin apply <plugin-id> --input key=value
```
## PR Output
When opening or preparing a PR, include:
- Plugin id, spec version, plugin version, and lane.
- What user request should trigger it.
- Files changed.
- Validation commands and results.
- Capabilities requested.
- Screenshots, preview URLs, or example artifacts for visual plugins.
- Registry links and dry-run output when publishing to skills.sh, ClawHub, or another skill registry.