@noodleseed/agent-kit 0.38.0 → 0.40.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 (29) hide show
  1. package/README.md +7 -5
  2. package/manifest.json +904 -191
  3. package/package.json +1 -1
  4. package/skills/claude-code/SKILL.md +16 -14
  5. package/skills/claude-code/authoring-mcp-servers/SKILL.md +48 -0
  6. package/skills/claude-code/building-mcp-apps/SKILL.md +48 -0
  7. package/skills/claude-code/connecting-apis-to-mcp/SKILL.md +47 -0
  8. package/skills/claude-code/debugging-mcp-delivery/SKILL.md +48 -0
  9. package/skills/claude-code/deploying-mcp-services/SKILL.md +47 -0
  10. package/skills/claude-code/designing-mcp-products/SKILL.md +47 -0
  11. package/skills/claude-code/embedding-mcp-assistants/SKILL.md +47 -0
  12. package/skills/claude-code/examples/hello/README.md +3 -0
  13. package/skills/claude-code/publishing-mcp-integrations/SKILL.md +47 -0
  14. package/skills/claude-code/references/feedback.md +1 -1
  15. package/skills/claude-code/reporting-noodle-feedback/SKILL.md +46 -0
  16. package/skills/claude-code/verifying-mcp-delivery/SKILL.md +47 -0
  17. package/skills/codex/SKILL.md +16 -14
  18. package/skills/codex/authoring-mcp-servers/SKILL.md +48 -0
  19. package/skills/codex/building-mcp-apps/SKILL.md +48 -0
  20. package/skills/codex/connecting-apis-to-mcp/SKILL.md +47 -0
  21. package/skills/codex/debugging-mcp-delivery/SKILL.md +48 -0
  22. package/skills/codex/deploying-mcp-services/SKILL.md +47 -0
  23. package/skills/codex/designing-mcp-products/SKILL.md +47 -0
  24. package/skills/codex/embedding-mcp-assistants/SKILL.md +47 -0
  25. package/skills/codex/examples/hello/README.md +3 -0
  26. package/skills/codex/publishing-mcp-integrations/SKILL.md +47 -0
  27. package/skills/codex/references/feedback.md +1 -1
  28. package/skills/codex/reporting-noodle-feedback/SKILL.md +46 -0
  29. package/skills/codex/verifying-mcp-delivery/SKILL.md +47 -0
package/README.md CHANGED
@@ -8,12 +8,14 @@ into a project's `.agents/` and `.claude/` skill directories via `noodle agents
8
8
 
9
9
  ## Contents
10
10
 
11
- - `skills/codex/` — the Codex (Codex CLI / AGENTS.md) skill: a `SKILL.md` router plus versioned
12
- `references/*.md` guidance for the SDK, CLI, workflow, UX, testing, deployment, governance, and examples.
13
- - `skills/claude-code/` — the Claude Code skill, same hierarchical tree.
14
- - `manifest.json` — `{ packageVersion, files: [{ path, sha256, agentTarget }] }`. The CLI verifies every
11
+ - `skills/codex/` — Codex skill trees: the compatibility front door at the target root and independently
12
+ discoverable sibling skills in named subdirectories, with supporting `references/*.md` where needed.
13
+ - `skills/claude-code/` — the same registered behavior system for Claude Code.
14
+ - `manifest.json` — schema v2 registry metadata plus every file's skill identity, version, host, publish
15
+ path, installed path, and sha256. The CLI verifies every
15
16
  file's sha256 against this manifest before writing it into a user's project; a mismatch refuses the
16
- write. The manifest and every generated skill file are available in the public source tree for inspection.
17
+ write. The manifest and generated skill files are produced during System Release and are available for
18
+ inspection in the published npm archive.
17
19
 
18
20
  ## How the CLI uses it
19
21