@shardworks/guild-starter-kit 0.1.13 → 0.1.15
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.
|
@@ -4,7 +4,7 @@ This curriculum teaches how a Nexus guild operates — its structure, workflows,
|
|
|
4
4
|
|
|
5
5
|
## What Is a Guild
|
|
6
6
|
|
|
7
|
-
A guild is a self-contained multi-agent AI system. It has members (animas), tools (
|
|
7
|
+
A guild is a self-contained multi-agent AI system. It has members (animas), tools (tools and engines), workshops (repositories where work happens), and a body of institutional knowledge (the codex). The guild is managed by a human patron who commissions work and judges results.
|
|
8
8
|
|
|
9
9
|
The guildhall is the guild's institutional center — a repository that holds configuration, tools, training content, and the Ledger. Work does not happen in the guildhall; it happens in workshops.
|
|
10
10
|
|
|
@@ -62,11 +62,11 @@ Use `nsg dispatch` to post and dispatch commissions.
|
|
|
62
62
|
|
|
63
63
|
## Tools
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### Tools
|
|
66
66
|
|
|
67
|
-
Tools that animas wield during work. Each
|
|
67
|
+
Tools that animas wield during work. Each tool ships with instructions delivered to the anima at manifest time. Available tools:
|
|
68
68
|
|
|
69
|
-
- **install-tool** — install new
|
|
69
|
+
- **install-tool** — install new tools, engines, or bundles into the guild
|
|
70
70
|
- **remove-tool** — remove installed tools
|
|
71
71
|
- **dispatch** — post and dispatch commissions
|
|
72
72
|
- **instantiate** — create new animas with assigned training and roles
|
|
@@ -77,7 +77,7 @@ Tools that animas wield during work. Each implement ships with instructions deli
|
|
|
77
77
|
Automated mechanical processes with no AI involvement. Engines handle repeatable infrastructure work:
|
|
78
78
|
|
|
79
79
|
- **manifest** — composes anima instructions from codex, training, and tool instructions at session start
|
|
80
|
-
- **mcp-server** — runs the MCP server that exposes
|
|
80
|
+
- **mcp-server** — runs the MCP server that exposes tools to animas during sessions
|
|
81
81
|
- **worktree-setup** — creates and manages git worktrees for commissions
|
|
82
82
|
- **ledger-migrate** — applies database migrations to the Ledger
|
|
83
83
|
|
package/nexus-bundle.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Everything a new guild needs — base tools, starter training, and initial schema",
|
|
3
|
-
"
|
|
4
|
-
{ "package": "@shardworks/
|
|
5
|
-
{ "package": "@shardworks/
|
|
6
|
-
{ "package": "@shardworks/
|
|
7
|
-
{ "package": "@shardworks/
|
|
8
|
-
{ "package": "@shardworks/
|
|
3
|
+
"tools": [
|
|
4
|
+
{ "package": "@shardworks/tool-install@0.x", "name": "install-tool" },
|
|
5
|
+
{ "package": "@shardworks/tool-remove@0.x", "name": "remove-tool" },
|
|
6
|
+
{ "package": "@shardworks/tool-dispatch@0.x", "name": "dispatch" },
|
|
7
|
+
{ "package": "@shardworks/tool-instantiate@0.x", "name": "instantiate" },
|
|
8
|
+
{ "package": "@shardworks/tool-nexus-version@0.x", "name": "nexus-version" }
|
|
9
9
|
],
|
|
10
10
|
"engines": [
|
|
11
11
|
{ "package": "@shardworks/engine-manifest@0.x", "name": "manifest" },
|