@jaggerxtrm/specialists 2.1.6 → 2.1.7
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 +1 -2
- package/dist/index.js +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,13 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
## How it works
|
|
16
16
|
|
|
17
|
-
Specialists are `.specialist.yaml` files that define an autonomous agent: its model, system prompt, task template, and permission tier. The server discovers them across
|
|
17
|
+
Specialists are `.specialist.yaml` files that define an autonomous agent: its model, system prompt, task template, and permission tier. The server discovers them across two scopes:
|
|
18
18
|
|
|
19
19
|
| Scope | Location | Purpose |
|
|
20
20
|
|-------|----------|---------|
|
|
21
21
|
| **project** | `./specialists/` | Per-project specialists |
|
|
22
22
|
| **user** | `~/.agents/specialists/` | Built-in defaults (copied on install) + your own |
|
|
23
|
-
| **system** | bundled with the package | Fallback if user scope is empty |
|
|
24
23
|
|
|
25
24
|
When a specialist runs, the server spawns a `pi` subprocess with the right model, tools, and system prompt injected. Output streams back in real time via cursor-based polling.
|
|
26
25
|
|
package/dist/index.js
CHANGED
|
@@ -24786,19 +24786,16 @@ class SpecialistLoader {
|
|
|
24786
24786
|
cache = new Map;
|
|
24787
24787
|
projectDir;
|
|
24788
24788
|
userDir;
|
|
24789
|
-
systemDir;
|
|
24790
24789
|
constructor(options = {}) {
|
|
24791
24790
|
this.projectDir = options.projectDir ?? process.cwd();
|
|
24792
24791
|
this.userDir = options.userDir ?? join(homedir(), ".agents", "specialists");
|
|
24793
|
-
this.systemDir = options.systemDir ?? join(new URL(import.meta.url).pathname, "..", "..", "specialists");
|
|
24794
24792
|
}
|
|
24795
24793
|
getScanDirs() {
|
|
24796
24794
|
return [
|
|
24797
24795
|
{ path: join(this.projectDir, "specialists"), scope: "project" },
|
|
24798
24796
|
{ path: join(this.projectDir, ".claude", "specialists"), scope: "project" },
|
|
24799
24797
|
{ path: join(this.projectDir, ".agent-forge", "specialists"), scope: "project" },
|
|
24800
|
-
{ path: this.userDir, scope: "user" }
|
|
24801
|
-
{ path: this.systemDir, scope: "system" }
|
|
24798
|
+
{ path: this.userDir, scope: "user" }
|
|
24802
24799
|
].filter((d) => existsSync(d.path));
|
|
24803
24800
|
}
|
|
24804
24801
|
async list(category) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaggerxtrm/specialists",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "OmniSpecialist — 7-tool MCP orchestration layer powered by the Specialist System. Discover and execute .specialist.yaml files across project/user/system scopes via pi.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|