Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .agents/tools/content/summarize.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tools:

- **Purpose**: Summarize URLs, YouTube videos, podcasts, and files using AI
- **Install**: `npm i -g @steipete/summarize` or `brew install steipete/tap/summarize`
- **Repo**: https://github.com/steipete/summarize (726+ stars)
- **Repo**: https://github.com/steipete/summarize
- **Website**: https://summarize.sh

**Quick Commands**:
Expand Down Expand Up @@ -183,7 +183,7 @@ summarize "https://example.com" --stream off
| Anthropic | `anthropic/claude-sonnet-4-6` | `ANTHROPIC_API_KEY` |
| Google | `google/gemini-3-flash-preview` | `GEMINI_API_KEY` |
| xAI | `xai/grok-4-fast-non-reasoning` | `XAI_API_KEY` |
| Z.AI | `zai/glm-4.7` | `Z_AI_API_KEY` |
| Z.AI (Zhipu) | `zai/glm-4.7` | `Z_AI_API_KEY` |
| OpenRouter | `openrouter/openai/gpt-5-mini` | `OPENROUTER_API_KEY` |

### Free Models via OpenRouter
Expand Down Expand Up @@ -322,6 +322,7 @@ summarize "https://example.com" --markdown-mode off
summarize "https://docs.example.com/api" --length long --json > api-summary.json

# Summarize multiple sources
urls=("https://example.com/page1" "https://example.com/page2")
for url in "${urls[@]}"; do
summarize "$url" --length medium >> research-notes.md
done
Expand Down
11 changes: 6 additions & 5 deletions .agents/tools/social-media/bird.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tools:

- **Purpose**: Fast X/Twitter CLI for tweeting, replying, and reading
- **Install**: `npm i -g @steipete/bird` or `brew install steipete/tap/bird`
- **Repo**: https://github.com/steipete/bird (434+ stars)
- **Repo**: https://github.com/steipete/bird
- **Auth**: Uses browser cookies (Safari, Chrome, Firefox)

**Quick Commands**:
Expand Down Expand Up @@ -68,7 +68,7 @@ bird mentions -n 5
npm i -g @steipete/bird

# One-shot (no install)
bunx @steipete/bird whoami
npx -y @steipete/bird whoami
```

### Homebrew (macOS Apple Silicon)
Expand Down Expand Up @@ -388,9 +388,10 @@ bird bookmarks --all --json > bookmarks.json

# Thread a long post
bird tweet "1/3 Here's a thread about..."
# Get the tweet ID from output, then:
bird reply <tweet_id> "2/3 Continuing the thread..."
bird reply <tweet_id_2> "3/3 Final thoughts..."
# Get the tweet ID from output, then reply to it:
bird reply <id_of_first_tweet> "2/3 Continuing the thread..."
# Get the ID of the reply above to continue the thread:
bird reply <id_of_second_tweet> "3/3 Final thoughts..."
```

### Combining with summarize
Expand Down
Loading