@noodleseed/agent-kit 0.34.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/manifest.json +57 -17
  2. package/package.json +1 -1
  3. package/skills/claude-code/SKILL.md +48 -29
  4. package/skills/claude-code/examples/acme-bistro/README.md +1 -1
  5. package/skills/claude-code/references/app-directory-compliance.md +59 -0
  6. package/skills/claude-code/references/build-an-mcp-app.md +52 -0
  7. package/skills/claude-code/references/build-an-mcp-server.md +54 -0
  8. package/skills/claude-code/references/connect-an-api.md +60 -20
  9. package/skills/claude-code/references/deploy-and-ops.md +15 -79
  10. package/skills/claude-code/references/experience-design.md +1 -1
  11. package/skills/claude-code/references/inspect-hosted.md +26 -0
  12. package/skills/claude-code/references/publishing.md +15 -17
  13. package/skills/claude-code/references/verify-and-recover.md +65 -0
  14. package/skills/codex/SKILL.md +48 -29
  15. package/skills/codex/examples/acme-bistro/README.md +1 -1
  16. package/skills/codex/references/app-directory-compliance.md +59 -0
  17. package/skills/codex/references/build-an-mcp-app.md +52 -0
  18. package/skills/codex/references/build-an-mcp-server.md +54 -0
  19. package/skills/codex/references/connect-an-api.md +60 -20
  20. package/skills/codex/references/deploy-and-ops.md +15 -79
  21. package/skills/codex/references/experience-design.md +1 -1
  22. package/skills/codex/references/inspect-hosted.md +26 -0
  23. package/skills/codex/references/publishing.md +15 -17
  24. package/skills/codex/references/verify-and-recover.md +65 -0
  25. package/skills/claude-code/references/chatgpt-compliance.md +0 -63
  26. package/skills/codex/references/chatgpt-compliance.md +0 -63
@@ -1,63 +0,0 @@
1
- # ChatGPT App compliance (pre-submission)
2
-
3
- `noodle check --target chatgpt` verifies the *metadata* prerequisites; app-store submission also faces a
4
- human review against OpenAI’s Apps SDK UX principles. Run this checklist against the built app before
5
- submitting, and render it as an audit table in the design wireframe (`design/wireframe.html` in the
6
- `acme-*` examples) so partners and reviewers see it up front.
7
-
8
- ## Contents
9
-
10
- - Metadata gate vs review
11
- - Pre-submission checklist
12
- - UI guidelines
13
- - Domain guardrails
14
- - Privacy and data
15
-
16
- ## Metadata gate vs review
17
-
18
- `noodle check --target chatgpt --json` returning `ok:true` means the widget is *metadata-ready* (widget
19
- `domain`, `openai/outputTemplate`, CSP, tool annotations, and `invoking`/`invoked` invocation copy are
20
- present) — it does NOT prove host rendering, conversation UX, or submission acceptance. Validate real
21
- rendering in ChatGPT Developer Mode / MCP Inspector, then run the checklist below.
22
-
23
- ## Pre-submission checklist (what review looks for)
24
-
25
- 1. **Conversational value** — at least one capability relies on ChatGPT’s strengths: natural-language
26
- actions no tap-driven app can do (e.g. "two margheritas and a lemon tart" parses into a cart). Cite
27
- concrete app behavior, not aspirations.
28
- 2. **Beyond base ChatGPT** — new knowledge, actions, or presentation (grounded partner data, live
29
- inventory, signed handoffs, real-world routing).
30
- 3. **Atomic, model-friendly actions** — self-contained tools with explicit input/output schemas, and an
31
- annotation on every tool (`annotations.readOnly()` / `.action()` / `.openAction()`).
32
- 4. **Helpful UI only** — justify each widget (would plain text degrade UX?), and note what you
33
- deliberately did NOT build a widget for (payment is off-app → no payment widget).
34
- 5. **In-chat task completion** — the user finishes a meaningful task in chat. For a top-of-funnel app,
35
- the task is the discovery/config loop completed in-chat with an intentional handoff.
36
- 6. **Performance** — tool calls scoped per step; response-time targets stated.
37
- 7. **Discoverability** — broad, natural trigger prompts listed; description keywords planned. Golden
38
- prompt sets and metadata optimization are a launch workstream, not polish.
39
- 8. **Platform fit** — multi-turn dialogue, conversation memory, and multimodality where genuinely useful.
40
-
41
- ## UI guidelines
42
-
43
- System fonts, monochrome outlined icons, WCAG AA contrast, at most two actions on inline cards, no nested
44
- scroll, and the right display mode per intent (inline by default; fullscreen only where browsing needs
45
- it; picture-in-picture only for live state). Brand only through `server` `branding` tokens — accent on
46
- the primary CTA, logo, and badges, nothing else; the compiler derives the palette. Never inject raw
47
- global CSS.
48
-
49
- ## Domain guardrails
50
-
51
- For regulated-adjacent apps, add app-specific trust behaviors and **show them in the rendered pixels**:
52
- cite the source and its revision for consequential lookups; frame regulated content as "considerations,
53
- not a ruling"; never invent compatibility, availability, or pricing; and always show the relevant
54
- caution/disclaimer. These are what make a regulated-adjacent app approvable.
55
-
56
- ## Privacy and data
57
-
58
- Data flows through OpenAI; tool payloads and whatever the server stores must match the partner’s privacy
59
- policy. No payment happens in chat (PCI stays off-app). Avoid per-user OAuth in a top-of-funnel v1 (use
60
- service credentials via a `connector`); add end-user auth only for two-way apps (`customerAuth`). Keep
61
- secrets out of tool output, widgets, and logs. If the partner’s published policy predates the app, flag a
62
- privacy gap for their counsel before submission. Re-run this checklist against the *built* app before
63
- every submission — not just the wireframe.