@a5c-ai/babysitter-github 0.1.1-staging.0a3fc67d → 0.1.1-staging.d0170171

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
@@ -19,6 +19,33 @@ directly.
19
19
 
20
20
  ## Installation
21
21
 
22
+ ### From GitHub repository (recommended)
23
+
24
+ Install directly from the Git repository using Copilot CLI:
25
+
26
+ ```bash
27
+ copilot plugin install a5c-ai/babysitter:plugins/babysitter-github
28
+ ```
29
+
30
+ ### From marketplace
31
+
32
+ If the a5c.ai marketplace has been registered, install by plugin name:
33
+
34
+ ```bash
35
+ copilot plugin install babysitter@a5c.ai
36
+ ```
37
+
38
+ To register the marketplace first:
39
+
40
+ ```bash
41
+ copilot plugin marketplace add a5c-ai/babysitter
42
+ ```
43
+
44
+ ### Alternative Installation (npm / development)
45
+
46
+ For development or environments where the Copilot CLI plugin system is not
47
+ available, install via npm:
48
+
22
49
  Install the SDK CLI first:
23
50
 
24
51
  ```bash
@@ -54,6 +81,14 @@ babysitter process-library:active --json
54
81
 
55
82
  ## Uninstallation
56
83
 
84
+ Via Copilot CLI:
85
+
86
+ ```bash
87
+ copilot plugin uninstall babysitter
88
+ ```
89
+
90
+ Via npm:
91
+
57
92
  ```bash
58
93
  babysitter-github uninstall
59
94
  ```
@@ -139,9 +174,8 @@ preserving semantic content.
139
174
  ### AGENTS.md
140
175
 
141
176
  The plugin uses `AGENTS.md` (the Copilot CLI equivalent of `CLAUDE.md`) for
142
- custom agent instructions. This file is set via the `contextFileName` field
143
- in `plugin.json` and is read by Copilot CLI to configure agent behavior
144
- within sessions.
177
+ custom agent instructions. This file is read by Copilot CLI to configure
178
+ agent behavior within sessions.
145
179
 
146
180
  ### Environment Variables
147
181
 
@@ -187,7 +221,7 @@ The manifest declares metadata, skills, hooks, and optional integrations:
187
221
  | `license` | No | `string` | SPDX license identifier |
188
222
  | `keywords` | No | `string[]` | Searchable tags for marketplace discovery |
189
223
  | `agents` | No | `string` | Path to agents directory |
190
- | `skills` | No | `array` | Array of skill directory paths (see below) |
224
+ | `skills` | No | `string` | Path to skills directory (auto-discovers SKILL.md files in subdirectories) |
191
225
  | `hooks` | No | `string` | Path to `hooks.json` |
192
226
  | `mcpServers` | No | `string` | Path to `.mcp.json` for MCP server configuration |
193
227
 
@@ -200,15 +234,9 @@ Example from this plugin:
200
234
  "description": "Orchestrate complex, multi-step workflows ...",
201
235
  "author": "a5c.ai",
202
236
  "license": "MIT",
203
- "hooks": {
204
- "sessionStart": "hooks/session-start.sh",
205
- "sessionEnd": "hooks/session-end.sh",
206
- "userPromptSubmitted": "hooks/user-prompt-submitted.sh"
207
- },
208
- "skills": [
209
- { "name": "babysit", "file": "skills/babysit/SKILL.md" },
210
- { "name": "call", "file": "skills/call/SKILL.md" }
211
- ],
237
+ "skills": "skills/",
238
+ "hooks": "hooks.json",
239
+ "commands": [],
212
240
  "keywords": ["orchestration", "workflow", "automation"]
213
241
  }
214
242
  ```
@@ -387,6 +415,7 @@ These registries are available without running `marketplace add`.
387
415
  ```
388
416
  plugins/babysitter-github/
389
417
  plugin.json # Plugin manifest (skills, hooks, metadata)
418
+ .github/plugin.json # Marketplace manifest (copy of plugin.json)
390
419
  hooks.json # Hook configuration (sessionStart, sessionEnd, userPromptSubmitted)
391
420
  hooks/
392
421
  session-start.sh # SessionStart lifecycle hook
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/babysitter-github",
3
- "version": "0.1.1-staging.0a3fc67d",
3
+ "version": "0.1.1-staging.d0170171",
4
4
  "description": "Babysitter orchestration plugin for GitHub Copilot CLI with lifecycle hooks and SDK-managed process-library bootstrapping",
5
5
  "scripts": {
6
6
  "test": "echo \"No tests yet\"",
@@ -41,6 +41,6 @@
41
41
  },
42
42
  "homepage": "https://github.com/a5c-ai/babysitter/tree/main/plugins/babysitter-github#readme",
43
43
  "dependencies": {
44
- "@a5c-ai/babysitter-sdk": "0.0.183-staging.0a3fc67d"
44
+ "@a5c-ai/babysitter-sdk": "0.0.183-staging.d0170171"
45
45
  }
46
46
  }
package/plugin.json CHANGED
@@ -4,55 +4,9 @@
4
4
  "description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval -- powered by the Babysitter SDK",
5
5
  "author": "a5c.ai",
6
6
  "license": "MIT",
7
- "hooks": {
8
- "sessionStart": "hooks/session-start.sh",
9
- "sessionEnd": "hooks/session-end.sh",
10
- "userPromptSubmitted": "hooks/user-prompt-submitted.sh"
11
- },
7
+ "skills": "skills/",
8
+ "hooks": "hooks.json",
12
9
  "commands": [],
13
- "skills": [
14
- {
15
- "name": "babysit",
16
- "file": "skills/babysit/SKILL.md"
17
- },
18
- {
19
- "name": "call",
20
- "file": "skills/call/SKILL.md"
21
- },
22
- {
23
- "name": "doctor",
24
- "file": "skills/doctor/SKILL.md"
25
- },
26
- {
27
- "name": "retrospect",
28
- "file": "skills/retrospect/SKILL.md"
29
- },
30
- {
31
- "name": "resume",
32
- "file": "skills/resume/SKILL.md"
33
- },
34
- {
35
- "name": "observe",
36
- "file": "skills/observe/SKILL.md"
37
- },
38
- {
39
- "name": "help",
40
- "file": "skills/help/SKILL.md"
41
- },
42
- {
43
- "name": "plan",
44
- "file": "skills/plan/SKILL.md"
45
- },
46
- {
47
- "name": "assimilate",
48
- "file": "skills/assimilate/SKILL.md"
49
- },
50
- {
51
- "name": "user-install",
52
- "file": "skills/user-install/SKILL.md"
53
- }
54
- ],
55
- "contextFileName": "AGENTS.md",
56
10
  "repository": {
57
11
  "type": "git",
58
12
  "url": "https://github.com/a5c-ai/babysitter"
package/versions.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "sdkVersion": "0.0.183-staging.0a3fc67d"
2
+ "sdkVersion": "0.0.183-staging.d0170171"
3
3
  }