everclaw 0.3.11 → 0.3.13
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/agent/subagent-worker.js +30 -30
- package/index.js +97 -97
- package/package.json +2 -2
- package/skills/github/SKILL.md +0 -48
- package/skills/summarize/SKILL.md +0 -67
package/package.json
CHANGED
package/skills/github/SKILL.md
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: github
|
|
3
|
-
description: "Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries."
|
|
4
|
-
metadata: {"everclaw":{"emoji":"🐙","requires":{"bins":["gh"]},"install":[{"id":"brew","kind":"brew","formula":"gh","bins":["gh"],"label":"Install GitHub CLI (brew)"},{"id":"apt","kind":"apt","package":"gh","bins":["gh"],"label":"Install GitHub CLI (apt)"}]}}
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# GitHub Skill
|
|
8
|
-
|
|
9
|
-
Use the `gh` CLI to interact with GitHub. Always specify `--repo owner/repo` when not in a git directory, or use URLs directly.
|
|
10
|
-
|
|
11
|
-
## Pull Requests
|
|
12
|
-
|
|
13
|
-
Check CI status on a PR:
|
|
14
|
-
```bash
|
|
15
|
-
gh pr checks 55 --repo owner/repo
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
List recent workflow runs:
|
|
19
|
-
```bash
|
|
20
|
-
gh run list --repo owner/repo --limit 10
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
View a run and see which steps failed:
|
|
24
|
-
```bash
|
|
25
|
-
gh run view <run-id> --repo owner/repo
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
View logs for failed steps only:
|
|
29
|
-
```bash
|
|
30
|
-
gh run view <run-id> --repo owner/repo --log-failed
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## API for Advanced Queries
|
|
34
|
-
|
|
35
|
-
The `gh api` command is useful for accessing data not available through other subcommands.
|
|
36
|
-
|
|
37
|
-
Get PR with specific fields:
|
|
38
|
-
```bash
|
|
39
|
-
gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## JSON Output
|
|
43
|
-
|
|
44
|
-
Most commands support `--json` for structured output. You can use `--jq` to filter:
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'
|
|
48
|
-
```
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: summarize
|
|
3
|
-
description: Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
|
|
4
|
-
homepage: https://summarize.sh
|
|
5
|
-
metadata: {"everclaw":{"emoji":"🧾","requires":{"bins":["summarize"]},"install":[{"id":"brew","kind":"brew","formula":"steipete/tap/summarize","bins":["summarize"],"label":"Install summarize (brew)"}]}}
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Summarize
|
|
9
|
-
|
|
10
|
-
Fast CLI to summarize URLs, local files, and YouTube links.
|
|
11
|
-
|
|
12
|
-
## When to use (trigger phrases)
|
|
13
|
-
|
|
14
|
-
Use this skill immediately when the user asks any of:
|
|
15
|
-
- “use summarize.sh”
|
|
16
|
-
- “what’s this link/video about?”
|
|
17
|
-
- “summarize this URL/article”
|
|
18
|
-
- “transcribe this YouTube/video” (best-effort transcript extraction; no `yt-dlp` needed)
|
|
19
|
-
|
|
20
|
-
## Quick start
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
summarize "https://example.com" --model google/gemini-3-flash-preview
|
|
24
|
-
summarize "/path/to/file.pdf" --model google/gemini-3-flash-preview
|
|
25
|
-
summarize "https://youtu.be/dQw4w9WgXcQ" --youtube auto
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## YouTube: summary vs transcript
|
|
29
|
-
|
|
30
|
-
Best-effort transcript (URLs only):
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
summarize "https://youtu.be/dQw4w9WgXcQ" --youtube auto --extract-only
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
If the user asked for a transcript but it’s huge, return a tight summary first, then ask which section/time range to expand.
|
|
37
|
-
|
|
38
|
-
## Model + keys
|
|
39
|
-
|
|
40
|
-
Set the API key for your chosen provider:
|
|
41
|
-
- OpenAI: `OPENAI_API_KEY`
|
|
42
|
-
- Anthropic: `ANTHROPIC_API_KEY`
|
|
43
|
-
- xAI: `XAI_API_KEY`
|
|
44
|
-
- Google: `GEMINI_API_KEY` (aliases: `GOOGLE_GENERATIVE_AI_API_KEY`, `GOOGLE_API_KEY`)
|
|
45
|
-
|
|
46
|
-
Default model is `google/gemini-3-flash-preview` if none is set.
|
|
47
|
-
|
|
48
|
-
## Useful flags
|
|
49
|
-
|
|
50
|
-
- `--length short|medium|long|xl|xxl|<chars>`
|
|
51
|
-
- `--max-output-tokens <count>`
|
|
52
|
-
- `--extract-only` (URLs only)
|
|
53
|
-
- `--json` (machine readable)
|
|
54
|
-
- `--firecrawl auto|off|always` (fallback extraction)
|
|
55
|
-
- `--youtube auto` (Apify fallback if `APIFY_API_TOKEN` set)
|
|
56
|
-
|
|
57
|
-
## Config
|
|
58
|
-
|
|
59
|
-
Optional config file: `~/.summarize/config.json`
|
|
60
|
-
|
|
61
|
-
```json
|
|
62
|
-
{ "model": "openai/gpt-5.2" }
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
Optional services:
|
|
66
|
-
- `FIRECRAWL_API_KEY` for blocked sites
|
|
67
|
-
- `APIFY_API_TOKEN` for YouTube fallback
|