@noodleseed/agent-kit 0.2.0 → 0.4.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
CHANGED
|
@@ -8,8 +8,10 @@ into a project's `.agents/` and `.claude/` skill directories via `noodle agents
|
|
|
8
8
|
|
|
9
9
|
## Contents
|
|
10
10
|
|
|
11
|
-
- `skills/codex
|
|
12
|
-
|
|
11
|
+
- `skills/codex/` — the Codex (Codex CLI / AGENTS.md) skill: a `SKILL.md` router plus seven
|
|
12
|
+
`references/*.md` files (sdk-surface, cli-commands, compile-errors, authoring-workflow,
|
|
13
|
+
widgets-and-apps, deploy-and-ops, examples).
|
|
14
|
+
- `skills/claude-code/` — the Claude Code skill, same hierarchical tree.
|
|
13
15
|
- `manifest.json` — `{ packageVersion, files: [{ path, sha256, agentTarget }] }`. The CLI verifies every
|
|
14
16
|
file's sha256 against this manifest before writing it into a user's project; a mismatch refuses the
|
|
15
17
|
write. See [ADR 0102](https://github.com/NoodleSeed-com/noodle-borg/blob/main/docs/decisions/0102-self-checking-skills-via-npm.md).
|
package/manifest.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"packageVersion": "0.
|
|
2
|
+
"packageVersion": "0.4.0",
|
|
3
3
|
"files": [
|
|
4
4
|
{
|
|
5
5
|
"path": "skills/codex/SKILL.md",
|
|
6
|
-
"sha256": "
|
|
6
|
+
"sha256": "85bc374acc095e71ef2f8a0d1ff613151f90eb4da729ecef344625324b9b44ac",
|
|
7
7
|
"agentTarget": "codex"
|
|
8
8
|
},
|
|
9
9
|
{
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
"path": "skills/codex/references/cli-commands.md",
|
|
16
|
-
"sha256": "
|
|
16
|
+
"sha256": "5e310a90a9f8c35e25aea4efc159dc88d1b636768932c5f09dae425cbedcdd87",
|
|
17
17
|
"agentTarget": "codex"
|
|
18
18
|
},
|
|
19
19
|
{
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "skills/claude-code/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "636cbbbfb9a009d2cdcb1f2b1ba44227f49fd24aa730321f9bbba53f209bef64",
|
|
47
47
|
"agentTarget": "claude-code"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"path": "skills/claude-code/references/cli-commands.md",
|
|
56
|
-
"sha256": "
|
|
56
|
+
"sha256": "5e310a90a9f8c35e25aea4efc159dc88d1b636768932c5f09dae425cbedcdd87",
|
|
57
57
|
"agentTarget": "claude-code"
|
|
58
58
|
},
|
|
59
59
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noodleseed/agent-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Self-checking, self-updating agent skills for the Noodle Seed CLI. Authored in this repo by @noodle-borg/agent-kit; this is the published, independently-versioned canonical skills artifact the CLI fetches and verifies.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,6 +17,7 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
17
17
|
|
|
18
18
|
| Command | What it does |
|
|
19
19
|
| :-- | :-- |
|
|
20
|
+
| `noodle start` | Guided first-run: sign in, scaffold, then deploy or run locally (`--json` for headless). |
|
|
20
21
|
| `noodle init` | Create a local Noodle project. |
|
|
21
22
|
| `noodle setup` | Reconcile project config and local agent files (dry-run unless `--write`). |
|
|
22
23
|
| `noodle doctor` | Check login, service, project, validation, and config. |
|
|
@@ -51,6 +52,8 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
51
52
|
| `noodle inspect` | Inspect hosted deployment metadata without secret material. |
|
|
52
53
|
| `noodle smoke` | Run hosted readiness diagnostics and print external smoke commands. |
|
|
53
54
|
| `noodle rollback` | Roll back to a previous deployment. |
|
|
55
|
+
| `noodle archive` | Archive the whole app: endpoints answer 410 Gone; hard-deleted after the retention window. |
|
|
56
|
+
| `noodle restore` | Restore an archived app within the retention window. |
|
|
54
57
|
| `noodle access` | Set the access mode (owner-only|org-members|authenticated|customers). |
|
|
55
58
|
| `noodle service` | Query hosted service capabilities. |
|
|
56
59
|
| `noodle login` | Authenticate with Noodle Seed Cloud. |
|
|
@@ -85,8 +88,9 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
85
88
|
|
|
86
89
|
| Command | What it does |
|
|
87
90
|
| :-- | :-- |
|
|
91
|
+
| `noodle help` | Print CLI usage and command help. |
|
|
88
92
|
| `noodle version` | Print the installed CLI version. |
|
|
89
|
-
| `noodle update` |
|
|
93
|
+
| `noodle update` | Check for, install, or safely repair the CLI update. Agents: `noodle update --check --json`, then `noodle update --yes --json`; add `--repair` only when the check reports `repairSafe: true`. |
|
|
90
94
|
|
|
91
95
|
## Deprecated
|
|
92
96
|
|
package/skills/codex/SKILL.md
CHANGED
|
@@ -17,6 +17,7 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
17
17
|
|
|
18
18
|
| Command | What it does |
|
|
19
19
|
| :-- | :-- |
|
|
20
|
+
| `noodle start` | Guided first-run: sign in, scaffold, then deploy or run locally (`--json` for headless). |
|
|
20
21
|
| `noodle init` | Create a local Noodle project. |
|
|
21
22
|
| `noodle setup` | Reconcile project config and local agent files (dry-run unless `--write`). |
|
|
22
23
|
| `noodle doctor` | Check login, service, project, validation, and config. |
|
|
@@ -51,6 +52,8 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
51
52
|
| `noodle inspect` | Inspect hosted deployment metadata without secret material. |
|
|
52
53
|
| `noodle smoke` | Run hosted readiness diagnostics and print external smoke commands. |
|
|
53
54
|
| `noodle rollback` | Roll back to a previous deployment. |
|
|
55
|
+
| `noodle archive` | Archive the whole app: endpoints answer 410 Gone; hard-deleted after the retention window. |
|
|
56
|
+
| `noodle restore` | Restore an archived app within the retention window. |
|
|
54
57
|
| `noodle access` | Set the access mode (owner-only|org-members|authenticated|customers). |
|
|
55
58
|
| `noodle service` | Query hosted service capabilities. |
|
|
56
59
|
| `noodle login` | Authenticate with Noodle Seed Cloud. |
|
|
@@ -85,8 +88,9 @@ Every `noodle` command, grouped by area. Local authoring commands (`validate`, `
|
|
|
85
88
|
|
|
86
89
|
| Command | What it does |
|
|
87
90
|
| :-- | :-- |
|
|
91
|
+
| `noodle help` | Print CLI usage and command help. |
|
|
88
92
|
| `noodle version` | Print the installed CLI version. |
|
|
89
|
-
| `noodle update` |
|
|
93
|
+
| `noodle update` | Check for, install, or safely repair the CLI update. Agents: `noodle update --check --json`, then `noodle update --yes --json`; add `--repair` only when the check reports `repairSafe: true`. |
|
|
90
94
|
|
|
91
95
|
## Deprecated
|
|
92
96
|
|