@clipboard-health/groundcrew 4.10.4 → 4.10.5
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 +5 -2
- package/clearance-allow-hosts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,10 +53,13 @@ crew init --global --project-dir ~/dev --repo OWNER/REPO --model claude
|
|
|
53
53
|
|
|
54
54
|
# 3. Run the clone commands printed by `crew init`.
|
|
55
55
|
|
|
56
|
-
# 4.
|
|
56
|
+
# 4. Set the clearance egress proxy allowlist.
|
|
57
|
+
export CLEARANCE_ALLOW_HOSTS_FILES="$(npm root -g)/@clipboard-health/groundcrew/clearance-allow-hosts"
|
|
58
|
+
|
|
59
|
+
# 5. Using Linear? Export your API key. (Jira and other trackers: see Ticket Pickup.)
|
|
57
60
|
export GROUNDCREW_LINEAR_API_KEY="lin_api_..."
|
|
58
61
|
|
|
59
|
-
#
|
|
62
|
+
# 6. Verify setup, then dispatch.
|
|
60
63
|
crew doctor
|
|
61
64
|
crew run --watch
|
|
62
65
|
```
|
package/clearance-allow-hosts
CHANGED
|
@@ -23,6 +23,8 @@ api.slack.com
|
|
|
23
23
|
app.incident.io
|
|
24
24
|
developers.notion.com
|
|
25
25
|
linear.app
|
|
26
|
+
mcp-proxy.anthropic.com
|
|
27
|
+
mcp.datadoghq.com
|
|
26
28
|
mcp.incident.io
|
|
27
29
|
mcp.linear.app
|
|
28
30
|
mcp.notion.com
|
|
@@ -88,5 +90,6 @@ mise-versions.jdx.dev
|
|
|
88
90
|
nx.dev
|
|
89
91
|
playwright.azureedge.net
|
|
90
92
|
registry.terraform.io
|
|
93
|
+
releases.hashicorp.com
|
|
91
94
|
sourcegraph.com
|
|
92
95
|
vitest.dev
|
package/package.json
CHANGED