@noodleseed/agent-kit 0.39.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.
- package/README.md +7 -5
- package/manifest.json +900 -187
- package/package.json +1 -1
- package/skills/claude-code/SKILL.md +16 -14
- package/skills/claude-code/authoring-mcp-servers/SKILL.md +48 -0
- package/skills/claude-code/building-mcp-apps/SKILL.md +48 -0
- package/skills/claude-code/connecting-apis-to-mcp/SKILL.md +47 -0
- package/skills/claude-code/debugging-mcp-delivery/SKILL.md +48 -0
- package/skills/claude-code/deploying-mcp-services/SKILL.md +47 -0
- package/skills/claude-code/designing-mcp-products/SKILL.md +47 -0
- package/skills/claude-code/embedding-mcp-assistants/SKILL.md +47 -0
- package/skills/claude-code/publishing-mcp-integrations/SKILL.md +47 -0
- package/skills/claude-code/reporting-noodle-feedback/SKILL.md +46 -0
- package/skills/claude-code/verifying-mcp-delivery/SKILL.md +47 -0
- package/skills/codex/SKILL.md +16 -14
- package/skills/codex/authoring-mcp-servers/SKILL.md +48 -0
- package/skills/codex/building-mcp-apps/SKILL.md +48 -0
- package/skills/codex/connecting-apis-to-mcp/SKILL.md +47 -0
- package/skills/codex/debugging-mcp-delivery/SKILL.md +48 -0
- package/skills/codex/deploying-mcp-services/SKILL.md +47 -0
- package/skills/codex/designing-mcp-products/SKILL.md +47 -0
- package/skills/codex/embedding-mcp-assistants/SKILL.md +47 -0
- package/skills/codex/publishing-mcp-integrations/SKILL.md +47 -0
- package/skills/codex/reporting-noodle-feedback/SKILL.md +46 -0
- 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/` —
|
|
12
|
-
|
|
13
|
-
- `skills/claude-code/` — the
|
|
14
|
-
- `manifest.json` —
|
|
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
|
|
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
|
|