From 14ec5b5ffa1a8ea596c6799b3c6d06418140d621 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sat, 28 Feb 2026 12:03:50 -0600 Subject: [PATCH 1/8] add slack skill (#571) --- skills/slack/SKILL.md | 294 +++++++++++++++ skills/slack/references/slack-tasks.md | 354 ++++++++++++++++++ .../slack/templates/slack-report-template.md | 163 ++++++++ 3 files changed, 811 insertions(+) create mode 100644 skills/slack/SKILL.md create mode 100644 skills/slack/references/slack-tasks.md create mode 100644 skills/slack/templates/slack-report-template.md diff --git a/skills/slack/SKILL.md b/skills/slack/SKILL.md new file mode 100644 index 0000000..a71c9d7 --- /dev/null +++ b/skills/slack/SKILL.md @@ -0,0 +1,294 @@ +--- +name: slack +description: Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include "check my Slack", "what channels have unreads", "send a message to", "search Slack for", "extract from Slack", "find who said", or any task requiring programmatic Slack interaction. +allowed-tools: Bash(agent-browser:*), Bash(npx agent-browser:*) +--- + +# Slack Automation + +Interact with Slack workspaces to check messages, extract data, and automate common tasks. + +## Quick Start + +Connect to an existing Slack browser session or open Slack: + +```bash +# Connect to existing session on port 9222 (typical for already-open Slack) +agent-browser connect 9222 + +# Or open Slack if not already running +agent-browser open https://app.slack.com +``` + +Then take a snapshot to see what's available: + +```bash +agent-browser snapshot -i +``` + +## Core Workflow + +1. **Connect/Navigate**: Open or connect to Slack +2. **Snapshot**: Get interactive elements with refs (`@e1`, `@e2`, etc.) +3. **Navigate**: Click tabs, expand sections, or navigate to specific channels +4. **Extract/Interact**: Read data or perform actions +5. **Screenshot**: Capture evidence of findings + +```bash +# Example: Check unread channels +agent-browser connect 9222 +agent-browser snapshot -i +# Look for "More unreads" button +agent-browser click @e21 # Ref for "More unreads" button +agent-browser screenshot slack-unreads.png +``` + +## Common Tasks + +### Checking Unread Messages + +```bash +# Connect to Slack +agent-browser connect 9222 + +# Take snapshot to locate unreads button +agent-browser snapshot -i + +# Look for: +# - "More unreads" button (usually near top of sidebar) +# - "Unreads" toggle in Activity tab (shows unread count) +# - Channel names with badges/bold text indicating unreads + +# Navigate to Activity tab to see all unreads in one view +agent-browser click @e14 # Activity tab (ref may vary) +agent-browser wait 1000 +agent-browser screenshot activity-unreads.png + +# Or check DMs tab +agent-browser click @e13 # DMs tab +agent-browser screenshot dms.png + +# Or expand "More unreads" in sidebar +agent-browser click @e21 # More unreads button +agent-browser wait 500 +agent-browser screenshot expanded-unreads.png +``` + +### Navigating to a Channel + +```bash +# Search for channel in sidebar or by name +agent-browser snapshot -i + +# Look for channel name in the list (e.g., "engineering", "product-design") +# Click on the channel treeitem ref +agent-browser click @e94 # Example: engineering channel ref +agent-browser wait --load networkidle +agent-browser screenshot channel.png +``` + +### Finding Messages/Threads + +```bash +# Use Slack search +agent-browser snapshot -i +agent-browser click @e5 # Search button (typical ref) +agent-browser fill @e_search "keyword" +agent-browser press Enter +agent-browser wait --load networkidle +agent-browser screenshot search-results.png +``` + +### Extracting Channel Information + +```bash +# Get list of all visible channels +agent-browser snapshot --json > slack-snapshot.json + +# Parse for channel names and metadata +# Look for treeitem elements with level=2 (sub-channels under sections) +``` + +### Checking Channel Details + +```bash +# Open a channel +agent-browser click @e_channel_ref +agent-browser wait 1000 + +# Get channel info (members, description, etc.) +agent-browser snapshot -i +agent-browser screenshot channel-details.png + +# Scroll through messages +agent-browser scroll down 500 +agent-browser screenshot channel-messages.png +``` + +### Taking Notes/Capturing State + +When you need to document findings from Slack: + +```bash +# Take annotated screenshot (shows element numbers) +agent-browser screenshot --annotate slack-state.png + +# Take full-page screenshot +agent-browser screenshot --full slack-full.png + +# Get current URL for reference +agent-browser get url + +# Get page title +agent-browser get title +``` + +## Sidebar Structure + +Understanding Slack's sidebar helps you navigate efficiently: + +``` +- Threads +- Huddles +- Drafts & sent +- Directories +- [Section Headers - External connections, Starred, Channels, etc.] + - [Channels listed as treeitems] +- Direct Messages + - [DMs listed] +- Apps + - [App shortcuts] +- [More unreads] button (toggles unread channels list) +``` + +Key refs to look for: +- `@e12` - Home tab (usually) +- `@e13` - DMs tab +- `@e14` - Activity tab +- `@e5` - Search button +- `@e21` - More unreads button (varies by session) + +## Tabs in Slack + +After clicking on a channel, you'll see tabs: +- **Messages** - Channel conversation +- **Files** - Shared files +- **Pins** - Pinned messages +- **Add canvas** - Collaborative canvas +- Other tabs depending on workspace setup + +Click tab refs to switch views and get different information. + +## Extracting Data from Slack + +### Get Text Content + +```bash +# Get a message or element's text +agent-browser get text @e_message_ref +``` + +### Parse Accessibility Tree + +```bash +# Full snapshot as JSON for programmatic parsing +agent-browser snapshot --json > output.json + +# Look for: +# - Channel names (name field in treeitem) +# - Message content (in listitem/document elements) +# - User names (button elements with user info) +# - Timestamps (link elements with time info) +``` + +### Count Unreads + +```bash +# After expanding unreads section: +agent-browser snapshot -i | grep -c "treeitem" +# Each treeitem with a channel name in the unreads section is one unread +``` + +## Best Practices + +- **Connect to existing sessions**: Use `agent-browser connect 9222` if Slack is already open. This is faster than opening a new browser. +- **Take snapshots before clicking**: Always `snapshot -i` to identify refs before clicking buttons. +- **Re-snapshot after navigation**: After navigating to a new channel or section, take a fresh snapshot to find new refs. +- **Use JSON snapshots for parsing**: When you need to extract structured data, use `snapshot --json` for machine-readable output. +- **Pace interactions**: Add `sleep 1` between rapid interactions to let the UI update. +- **Check accessibility tree**: The accessibility tree shows what screen readers (and your automation) can see. If an element isn't in the snapshot, it may be hidden or require scrolling. +- **Scroll in sidebar**: Use `agent-browser scroll down 300 --selector ".p-sidebar"` to scroll within the Slack sidebar if channel list is long. + +## Limitations + +- **Cannot access Slack API**: This uses browser automation, not the Slack API. No OAuth, webhooks, or bot tokens needed. +- **Session-specific**: Screenshots and snapshots are tied to the current browser session. +- **Rate limiting**: Slack may rate-limit rapid interactions. Add delays between commands if needed. +- **Workspace-specific**: You interact with your own workspace -- no cross-workspace automation. + +## Debugging + +### Check console for errors + +```bash +agent-browser console +agent-browser errors +``` + +### View raw HTML of an element + +```bash +# Snapshot shows the accessibility tree. If an element isn't there, +# it may not be interactive (e.g., div instead of button) +# Use snapshot -i -C to include cursor-interactive divs +agent-browser snapshot -i -C +``` + +### Get current page state + +```bash +agent-browser get url +agent-browser get title +agent-browser screenshot page-state.png +``` + +## Example: Full Unread Check + +```bash +#!/bin/bash + +# Connect to Slack +agent-browser connect 9222 + +# Take initial snapshot +echo "=== Checking Slack unreads ===" +agent-browser snapshot -i > snapshot.txt + +# Check Activity tab for unreads +agent-browser click @e14 # Activity tab +agent-browser wait 1000 +agent-browser screenshot activity.png +ACTIVITY_RESULT=$(agent-browser get text @e_main_area) +echo "Activity: $ACTIVITY_RESULT" + +# Check DMs +agent-browser click @e13 # DMs tab +agent-browser wait 1000 +agent-browser screenshot dms.png + +# Check unread channels in sidebar +agent-browser click @e21 # More unreads button +agent-browser wait 500 +agent-browser snapshot -i > unreads-expanded.txt +agent-browser screenshot unreads.png + +# Summary +echo "=== Summary ===" +echo "See activity.png, dms.png, and unreads.png for full details" +``` + +## References + +- **Slack docs**: https://slack.com/help +- **Web experience**: https://app.slack.com +- **Keyboard shortcuts**: Type `?` in Slack for shortcut list diff --git a/skills/slack/references/slack-tasks.md b/skills/slack/references/slack-tasks.md new file mode 100644 index 0000000..afd05c4 --- /dev/null +++ b/skills/slack/references/slack-tasks.md @@ -0,0 +1,354 @@ +# Common Slack Tasks & Patterns + +Reference guide for common automations and data extraction patterns when interacting with Slack. + +## Task: Check All Unread Messages + +### Goal +Determine which channels and DMs have unread messages. + +### Steps + +1. **Connect to Slack** + ```bash + agent-browser connect 9222 + ``` + +2. **Check Activity Tab** + - Take snapshot: `agent-browser snapshot -i` + - Look for Activity tab ref (usually `@e14`) + - Click: `agent-browser click @e14` + - Wait: `agent-browser wait 1000` + - If you see "You've read all the unreads", you have no unread messages + - Screenshot: `agent-browser screenshot activity.png` + +3. **Check DMs** + - Click DMs tab ref (usually `@e13`) + - Look for "Unreads" toggle/badge + - Count visible conversations with indicators + +4. **Check Channels** + - Look for "More unreads" button (usually in sidebar) + - Click it to expand list of channels with unreads + - Screenshot the expanded view + - Parse channel names from snapshot + +5. **Summary** + - Activity + DMs + Channels = complete unread picture + +### Evidence Capture +- Screenshot of Activity tab +- Screenshot of DMs +- Screenshot of expanded unreads sidebar + +--- + +## Task: Find All Channels in Workspace + +### Goal +Get a complete list of all channels you have access to. + +### Steps + +1. **Navigate to Channels section** + ```bash + agent-browser connect 9222 + agent-browser snapshot -i + ``` + +2. **Look for "Channels" treeitem** + - This is usually a collapsed section header + - Click to expand if collapsed + - Screenshot: `agent-browser screenshot all-channels.png` + +3. **Scroll through sidebar** + ```bash + # If the list is long, scroll within the sidebar + agent-browser scroll down 500 --selector ".p-sidebar" + agent-browser screenshot channels-page-2.png + ``` + +4. **Parse snapshot for channel list** + ```bash + agent-browser snapshot --json > channels.json + # Search JSON for treeitem elements with level=2 under "Channels" section + ``` + +### Evidence +- JSON snapshot with all channel refs +- Screenshots of channel list +- Count of total channels + +--- + +## Task: Search for Messages Containing Keywords + +### Goal +Find all messages/threads mentioning specific terms. + +### Steps + +1. **Open search** + ```bash + agent-browser snapshot -i + # Find Search button ref (usually @e5) + agent-browser click @e5 + agent-browser wait 500 + ``` + +2. **Enter search term** + ```bash + # Identify search input ref from snapshot + agent-browser fill @e_search_input "your keyword" + agent-browser press Enter + agent-browser wait --load networkidle + ``` + +3. **Capture results** + ```bash + agent-browser screenshot search-results.png + agent-browser snapshot -i > search-snapshot.txt + ``` + +4. **Parse results** + - Look for result items in snapshot + - Extract message content, sender, channel, timestamp + - Follow links to view full context + +### Filters +Slack search supports filters: +- `in:channel-name` - Search in specific channel +- `from:@user` - Messages from specific user +- `before:2026-02-25` - Messages before date +- `after:2026-02-20` - Messages after date +- `has:file` - Messages with files +- `has:emoji` - Messages with reactions + +Example search: `"bug report" in:engineering from:@alice after:2026-02-20` + +--- + +## Task: Monitor a Specific Channel for Activity + +### Goal +Watch a channel and capture new messages/engagement. + +### Steps + +1. **Navigate to channel** + ```bash + agent-browser connect 9222 + agent-browser snapshot -i + # Find channel ref from sidebar + agent-browser click @e_channel_ref + agent-browser wait --load networkidle + ``` + +2. **Check channel info** + - Screenshot channel details: `agent-browser screenshot channel-header.png` + - Look for member count, description, topic + +3. **View messages** + ```bash + # Jump to recent/unread + agent-browser press j # Jump to unread in Slack + agent-browser wait 500 + agent-browser screenshot recent-messages.png + ``` + +4. **Scroll to see more** + ```bash + agent-browser scroll down 500 + agent-browser screenshot more-messages.png + ``` + +5. **Check threads** + - Click on messages with thread indicators + - View replies in thread view + - Screenshot: `agent-browser screenshot thread.png` + +### Evidence +- Channel info screenshot +- Message history screenshots +- Thread examples + +--- + +## Task: Extract User Information from a Conversation + +### Goal +Find who said what, when, and in what context. + +### Steps + +1. **Navigate to relevant channel or DM** + ```bash + agent-browser click @e_conversation_ref + agent-browser wait 1000 + ``` + +2. **Take snapshot with context** + ```bash + agent-browser snapshot --json > conversation.json + ``` + +3. **Find message blocks** + - In JSON, look for document/listitem elements + - These contain: user name (button), timestamp (link), message text, reactions + +4. **Extract structured data** + - User: Found in button element with username + - Time: Found in link with timestamp + - Content: Text content of message + - Reactions: Buttons showing emoji counts + +5. **Screenshot key messages** + ```bash + agent-browser screenshot important-message.png + agent-browser screenshot --annotate annotated-message.png + ``` + +--- + +## Task: Track Reactions to a Message + +### Goal +See who reacted to a message and with what emoji. + +### Steps + +1. **Find message with reactions** + ```bash + agent-browser snapshot -i + # Look for "N reaction(s)" buttons in messages + ``` + +2. **Click reaction button to expand** + ```bash + agent-browser click @e_reaction_button + agent-browser wait 500 + ``` + +3. **Capture reaction details** + ```bash + agent-browser screenshot reactions.png + # You'll see emoji, count, and list of users who reacted + ``` + +4. **Extract data** + - Emoji used + - Number of people who reacted + - User names (if visible in popup) + +--- + +## Task: Find and Review Pinned Messages + +### Goal +See messages that have been pinned in a channel. + +### Steps + +1. **Open a channel** + ```bash + agent-browser click @e_channel_ref + agent-browser wait 1000 + agent-browser snapshot -i + ``` + +2. **Click Pins tab** + - In channel view, look for "Pins" tab ref (usually near Messages, Files tabs) + - Click it: `agent-browser click @e_pins_tab` + - Wait: `agent-browser wait 500` + +3. **View pinned messages** + ```bash + agent-browser screenshot pins.png + agent-browser snapshot -i > pins-snapshot.txt + ``` + +4. **Review each pin** + - Click pin to see context + - Note who pinned it, when, and why + - Screenshot: `agent-browser screenshot pin-detail.png` + +--- + +## Pattern: Extract Timestamp from Link + +In Slack snapshot, message timestamps appear as links. Example: +``` +- link "Feb 25th at 10:26:22 AM" [ref=e151] + - /url: https://vercel.slack.com/archives/C0A5RTN0856/p1772036782543189 +``` + +The URL contains the timestamp in the fragment (`p1772036782543189`). This is a Slack message ID that uniquely identifies the message. + +--- + +## Pattern: Understanding Channel/Thread Structure + +``` +- treeitem "channel-name" [ref=e94] [level=2] + - group: (contains channel metadata or sub-items) +``` + +- **level=1**: Section headers (External connections, Starred, Channels, etc.) +- **level=2**: Individual channels/items within sections +- **level=3+**: Nested sub-items (rare in sidebar) + +--- + +## Common Ref Patterns (Session-Dependent) + +These refs vary per session, but follow patterns: + +| Element | Typical Ref Range | How to Find | +|---------|------------------|------------| +| Home tab | e10-e20 | `snapshot -i \| grep "Home"` | +| DMs tab | e10-e20 | `snapshot -i \| grep "DMs"` | +| Activity tab | e10-e20 | `snapshot -i \| grep "Activity"` | +| Search | e5-e10 | `snapshot -i \| grep "Search"` | +| More unreads | e20-e30 | `snapshot -i \| grep "More unreads"` | +| Channel refs | e30+ | `snapshot -i \| grep "treeitem"` | + +**Always take a fresh snapshot** to find current refs for the current session. + +--- + +## Debugging: Element Not Found + +If you can't find an element: + +1. **Check it's visible** + ```bash + # Is the element on screen or off-screen? + agent-browser screenshot current-state.png + # Compare screenshot to what you expected + ``` + +2. **Try expanding/scrolling** + ```bash + # Sidebar might need scrolling + agent-browser scroll down 300 --selector ".p-sidebar" + agent-browser snapshot -i + ``` + +3. **Try snapshot with extended range** + ```bash + # Include cursor-interactive elements (divs with onclick handlers) + agent-browser snapshot -i -C + ``` + +4. **Check current URL** + ```bash + agent-browser get url + # Verify you're in the right section + ``` + +5. **Wait for page to load** + ```bash + agent-browser wait --load networkidle + agent-browser wait 1000 + agent-browser snapshot -i + ``` diff --git a/skills/slack/templates/slack-report-template.md b/skills/slack/templates/slack-report-template.md new file mode 100644 index 0000000..221ae0b --- /dev/null +++ b/skills/slack/templates/slack-report-template.md @@ -0,0 +1,163 @@ +# Slack Analysis Report + +**Date**: [DATE] +**Workspace**: [WORKSPACE_NAME] +**Analyst**: [YOUR_NAME] +**Scope**: [WHAT_YOU_ANALYZED] + +## Summary + +### Unread Counts +- **Activity**: [NUMBER] unreads +- **Direct Messages**: [NUMBER] unreads +- **Channels**: [NUMBER] channels with unreads + +### Key Findings +- [FINDING 1] +- [FINDING 2] +- [FINDING 3] + +--- + +## Unread Channels + +List of channels with unread messages: + +| Channel | Unread Count | Last Activity | Notes | +|---------|-------------|---------------|-------| +| #engineering | 12 | Today 2:45 PM | Active discussion thread | +| #announcements | 3 | Yesterday 5:30 PM | Team updates | +| #random | 5 | Today 11:20 AM | Various topics | + +--- + +## Unread Direct Messages + +| User/Group | Message Count | Last Message | Preview | +|------------|--------------|--------------|---------| +| @alice | 2 | Today 3:15 PM | "Are you free to..." | +| @product-team | 5 | Today 2:00 PM | Sync scheduled for... | + +--- + +## Channel Snapshot + +### Total Channels Accessible +- **Public Channels**: [NUMBER] +- **Private Channels**: [NUMBER] +- **Group DMs**: [NUMBER] + +### Channel Categories +- **External Connections**: [COUNT] channels +- **Starred**: [COUNT] channels +- **Main Channels**: [COUNT] channels + +--- + +## Most Active Channels (by recent activity) + +| Rank | Channel | Activity | Participants | +|------|---------|----------|--------------| +| 1 | #engineering | High | 15+ active | +| 2 | #general | High | 10+ active | +| 3 | #product-design | Medium | 8+ active | + +--- + +## Key Conversations + +### [TOPIC 1]: Channel #engineering +- **Status**: Ongoing discussion +- **Participants**: @alice, @bob, @charlie +- **Latest Update**: [TIME] +- **Thread Count**: 5 threads +- **Files Shared**: 2 documents +- **Screenshots**: See `engineering-thread.png` + +**Notes**: [Additional context about the conversation] + +### [TOPIC 2]: DM with @alice +- **Unread Messages**: 2 +- **Last Message**: [TIME] +- **Summary**: [Brief summary of conversation] +- **Action Items**: [Any TODOs mentioned] + +--- + +## Search Results + +### Query: "[SEARCH_TERM]" +- **Results**: [NUMBER] messages +- **Date Range**: [FROM] to [TO] +- **Top Channels**: [LIST] +- **Key Themes**: [PATTERNS OBSERVED] + +#### Sample Results +1. **[Date/Time]** in #[channel]: [Message snippet] +2. **[Date/Time]** in #[channel]: [Message snippet] +3. **[Date/Time]** in #[channel]: [Message snippet] + +--- + +## Reactions & Engagement + +### Most Reacted-To Messages +| Message | Emoji | Count | Channel | +|---------|-------|-------|---------| +| "Shipped to production" | πŸŽ‰ | 8 | #engineering | +| "FYI the site is down" | 🚨 | 12 | #incidents | + +--- + +## Team Insights + +### Most Active Users (by message volume) +1. @alice - [COUNT] messages +2. @bob - [COUNT] messages +3. @charlie - [COUNT] messages + +### Most Active Times +- Peak hour: [TIME] +- Peak day: [DAY] +- Average messages per hour: [NUMBER] + +--- + +## Issues / Observations + +### [ISSUE 1]: [Title] +**Severity**: [Critical/High/Medium/Low] +**Description**: [What was observed] +**Evidence**: See `issue-1-screenshot.png` +**Recommendation**: [Suggested action] + +--- + +## Screenshots + +| File | Description | +|------|-------------| +| `activity-tab.png` | Activity tab showing unreads | +| `dms-overview.png` | DM list with unread indicators | +| `channels-full-list.png` | Complete channel list | +| `engineering-thread.png` | Active engineering thread | + +--- + +## Appendix: Raw Data + +### Snapshot Output +``` +[Paste snapshot -i output here] +``` + +### JSON Snapshot (for parsing) +```json +[Paste snapshot --json output here] +``` + +--- + +**Report Generated**: [DATE/TIME] +**Analysis Duration**: [TIME] +**Next Steps**: [TODO] From 79d8dfe34c99cd91c8dfd78e38a8bc1c19c2d4b0 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sun, 1 Mar 2026 09:02:06 -0600 Subject: [PATCH 2/8] add skills to docs (#576) --- docs/package.json | 2 +- docs/pnpm-lock.yaml | 20 +- docs/src/app/api/docs-markdown/route.ts | 40 +++ docs/src/app/globals.css | 273 ++++++++++++--------- docs/src/app/layout.tsx | 39 +-- docs/src/app/skills/page.mdx | 60 +++++ docs/src/components/code-block.tsx | 5 +- docs/src/components/copy-page-button.tsx | 71 ++++++ docs/src/components/docs-chat.tsx | 2 +- docs/src/components/docs-mobile-nav.tsx | 81 ++++++ docs/src/components/docs-sidebar.tsx | 44 ++++ docs/src/components/header.tsx | 37 +-- docs/src/components/mobile-nav-context.tsx | 45 ---- docs/src/components/sidebar.tsx | 66 ----- docs/src/components/theme-toggle.tsx | 2 +- docs/src/lib/docs-navigation.ts | 1 + docs/src/lib/mdx-to-markdown.ts | 11 +- docs/src/lib/page-titles.ts | 1 + skills/electron/SKILL.md | 212 ++++++++++++++++ 19 files changed, 720 insertions(+), 292 deletions(-) create mode 100644 docs/src/app/api/docs-markdown/route.ts create mode 100644 docs/src/app/skills/page.mdx create mode 100644 docs/src/components/copy-page-button.tsx create mode 100644 docs/src/components/docs-mobile-nav.tsx create mode 100644 docs/src/components/docs-sidebar.tsx delete mode 100644 docs/src/components/mobile-nav-context.tsx delete mode 100644 docs/src/components/sidebar.tsx create mode 100644 skills/electron/SKILL.md diff --git a/docs/package.json b/docs/package.json index dda5e2e..a57fa7b 100644 --- a/docs/package.json +++ b/docs/package.json @@ -42,7 +42,7 @@ "eslint": "^9", "eslint-config-next": "16.1.1", "tailwindcss": "^4", - "tw-animate-css": "^1.4.0", + "tailwindcss-animate": "^1.0.7", "typescript": "^5" } } diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml index 00770ca..0f82fdb 100644 --- a/docs/pnpm-lock.yaml +++ b/docs/pnpm-lock.yaml @@ -102,9 +102,9 @@ importers: tailwindcss: specifier: ^4 version: 4.1.18 - tw-animate-css: - specifier: ^1.4.0 - version: 1.4.0 + tailwindcss-animate: + specifier: ^1.0.7 + version: 1.0.7(tailwindcss@4.1.18) typescript: specifier: ^5 version: 5.9.3 @@ -3467,6 +3467,11 @@ packages: tailwind-merge@3.4.0: resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==} + tailwindcss-animate@1.0.7: + resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} + peerDependencies: + tailwindcss: '>=3.0.0 || insiders' + tailwindcss@4.1.18: resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==} @@ -3521,9 +3526,6 @@ packages: turndown@7.2.2: resolution: {integrity: sha512-1F7db8BiExOKxjSMU2b7if62D/XOyQyZbPKq/nUwopfgnHlqXHqQ0lvfUTeUIr1lZJzOPFn43dODyMSIfvWRKQ==} - tw-animate-css@1.4.0: - resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==} - type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} @@ -7827,6 +7829,10 @@ snapshots: tailwind-merge@3.4.0: {} + tailwindcss-animate@1.0.7(tailwindcss@4.1.18): + dependencies: + tailwindcss: 4.1.18 + tailwindcss@4.1.18: {} tapable@2.3.0: {} @@ -7891,8 +7897,6 @@ snapshots: dependencies: '@mixmark-io/domino': 2.2.0 - tw-animate-css@1.4.0: {} - type-check@0.4.0: dependencies: prelude-ls: 1.2.1 diff --git a/docs/src/app/api/docs-markdown/route.ts b/docs/src/app/api/docs-markdown/route.ts new file mode 100644 index 0000000..bffe3bf --- /dev/null +++ b/docs/src/app/api/docs-markdown/route.ts @@ -0,0 +1,40 @@ +import { readFile } from "fs/promises"; +import { join } from "path"; +import { NextRequest, NextResponse } from "next/server"; +import { mdxToCleanMarkdown } from "@/lib/mdx-to-markdown"; + +export async function GET(req: NextRequest) { + const { searchParams } = new URL(req.url); + const docPath = searchParams.get("path"); + + if (!docPath) { + return NextResponse.json( + { error: "Missing ?path= parameter" }, + { status: 400 }, + ); + } + + const normalized = docPath + .replace(/^\//, "") + .replace(/\.\./g, "") + .replace(/[^a-zA-Z0-9/_-]/g, ""); + + const slug = normalized; + const filePath = slug + ? join(process.cwd(), "src", "app", ...slug.split("/"), "page.mdx") + : join(process.cwd(), "src", "app", "page.mdx"); + + try { + const raw = await readFile(filePath, "utf-8"); + const markdown = mdxToCleanMarkdown(raw); + + return new NextResponse(markdown, { + headers: { + "Content-Type": "text/markdown; charset=utf-8", + "Cache-Control": "public, max-age=3600", + }, + }); + } catch { + return NextResponse.json({ error: "Page not found" }, { status: 404 }); + } +} diff --git a/docs/src/app/globals.css b/docs/src/app/globals.css index 49655ef..e7312a7 100644 --- a/docs/src/app/globals.css +++ b/docs/src/app/globals.css @@ -1,117 +1,112 @@ @import "tailwindcss"; -@import "tw-animate-css"; +@plugin "tailwindcss-animate"; @source "../../node_modules/streamdown/dist/index.js"; +@custom-variant dark (&:where(.dark, .dark *)); + +@theme { + --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif; + --font-mono: var(--font-geist-mono), ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace; + + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-border: var(--border); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); +} + :root { - --radius: 0.5rem; - --background: oklch(1.0 0 0); - --foreground: oklch(0.1 0 0); - --card: oklch(0.98 0 0); - --card-foreground: oklch(0.1 0 0); - --popover: oklch(0.98 0 0); - --popover-foreground: oklch(0.1 0 0); - --primary: oklch(0.1 0 0); - --primary-foreground: oklch(1.0 0 0); - --secondary: oklch(0.92 0 0); - --secondary-foreground: oklch(0.1 0 0); - --muted: oklch(0.92 0 0); - --muted-foreground: oklch(0.45 0 0); - --accent: oklch(0.92 0 0); - --accent-foreground: oklch(0.1 0 0); - --destructive: oklch(0.55 0.2 25); - --destructive-foreground: oklch(1.0 0 0); - --border: oklch(0.85 0 0); - --input: oklch(0.85 0 0); - --ring: oklch(0.6 0 0); - --chat-bg: oklch(0.95 0 0); + --background: #fff; + --foreground: #171717; + --border: #e5e5e5; + --muted: #f5f5f5; + --muted-foreground: #737373; + --primary: #171717; + --primary-foreground: #fff; } .dark { - --background: oklch(0.0 0 0); - --foreground: oklch(0.98 0 0); - --card: oklch(0.08 0 0); - --card-foreground: oklch(0.98 0 0); - --popover: oklch(0.08 0 0); - --popover-foreground: oklch(0.98 0 0); - --primary: oklch(0.98 0 0); - --primary-foreground: oklch(0.0 0 0); - --secondary: oklch(0.15 0 0); - --secondary-foreground: oklch(0.98 0 0); - --muted: oklch(0.15 0 0); - --muted-foreground: oklch(0.6 0 0); - --accent: oklch(0.15 0 0); - --accent-foreground: oklch(0.1 0 0); - --destructive: oklch(0.65 0.2 25); - --destructive-foreground: oklch(0.98 0 0); - --border: oklch(0.25 0 0); - --input: oklch(0.25 0 0); - --ring: oklch(0.4 0 0); - --chat-bg: oklch(0.25 0 0); + --background: #0a0a0a; + --foreground: #f5f5f5; + --border: #262626; + --muted: #262626; + --muted-foreground: #a3a3a3; + --primary: #f5f5f5; + --primary-foreground: #0a0a0a; } -@custom-variant dark (&:is(.dark *)); - -@theme inline { - --radius-sm: calc(var(--radius) - 4px); - --radius-md: calc(var(--radius) - 2px); - --radius-lg: var(--radius); - --radius-xl: calc(var(--radius) + 4px); - --radius-2xl: calc(var(--radius) + 8px); - --color-background: var(--background); - --color-foreground: var(--foreground); - --color-card: var(--card); - --color-card-foreground: var(--card-foreground); - --color-popover: var(--popover); - --color-popover-foreground: var(--popover-foreground); - --color-primary: var(--primary); - --color-primary-foreground: var(--primary-foreground); - --color-secondary: var(--secondary); - --color-secondary-foreground: var(--secondary-foreground); - --color-muted: var(--muted); - --color-muted-foreground: var(--muted-foreground); - --color-accent: var(--accent); - --color-accent-foreground: var(--accent-foreground); - --color-destructive: var(--destructive); - --color-destructive-foreground: var(--destructive-foreground); - --color-border: var(--border); - --color-input: var(--input); - --color-ring: var(--ring); - --font-sans: var(--font-geist); - --font-mono: var(--font-geist-mono); -} - -* { - border-color: var(--border); -} - -body { - background: var(--background); - color: var(--foreground); - font-family: var(--font-geist), system-ui, sans-serif; -} - -/* Hide page scrollbar */ html { - scrollbar-width: none; + scroll-behavior: smooth; } -html::-webkit-scrollbar { - display: none; +::selection { + background-color: #000; + color: #fff; +} + +@media (prefers-color-scheme: dark) { + ::selection { + background-color: #fff; + color: #000; + } +} + +/* Article tables */ +article table { + width: 100%; + font-size: 0.875rem; + margin-bottom: 1rem; + border-collapse: collapse; +} + +article th { + border-bottom: 1px solid #e5e5e5; + padding: 0.5rem 0.75rem; + text-align: left; + font-size: 0.75rem; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0.05em; + color: #737373; +} + +article td { + border-bottom: 1px solid #f5f5f5; + padding: 0.5rem 0.75rem; + color: #525252; +} + +:is(.dark) article th { + border-bottom-color: #262626; + color: #a3a3a3; +} + +:is(.dark) article td { + border-bottom-color: rgba(38, 38, 38, 0.5); + color: #a3a3a3; +} + +button { + cursor: pointer; } /* Code blocks */ pre { - background: var(--card) !important; border: 1px solid var(--border); border-radius: 4px; padding: 0.875rem; overflow-x: auto; - font-family: var(--font-geist-mono), monospace; font-size: 0.8125rem; line-height: 1.7; } +pre:not(.shiki) { + background: var(--muted); +} + .code-block pre { margin: 0; } @@ -127,17 +122,26 @@ pre { } } -code { - font-family: var(--font-geist-mono), monospace; -} - :not(pre) > code { - background: var(--card); + background: var(--muted); padding: 0.125rem 0.375rem; border-radius: 3px; font-size: 0.875em; } +/* Shiki dual theme support */ +.shiki, +.shiki span { + color: var(--shiki-light) !important; + background-color: var(--shiki-light-bg) !important; +} + +.dark .shiki, +.dark .shiki span { + color: var(--shiki-dark) !important; + background-color: var(--shiki-dark-bg) !important; +} + /* Prose */ .prose { max-width: 100%; @@ -145,9 +149,9 @@ code { .prose h1 { font-size: 1.5rem; - font-weight: 500; + font-weight: 600; letter-spacing: -0.02em; - margin-bottom: 0.5rem; + margin-bottom: 1.5rem; color: var(--foreground); } @@ -158,59 +162,102 @@ code { } .prose h2 { - font-size: 0.875rem; - font-weight: 500; - letter-spacing: 0; - text-transform: uppercase; - color: var(--muted-foreground); + font-size: 1.125rem; + font-weight: 600; margin-top: 3rem; margin-bottom: 1rem; + color: var(--foreground); +} + +.prose h2:first-child { + margin-top: 0; } .prose h3 { - font-size: 0.875rem; - font-weight: 500; + font-size: 1rem; + font-weight: 600; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--foreground); - opacity: 0.85; } .prose p { - margin-bottom: 1.25rem; - line-height: 1.7; - color: var(--muted-foreground); + margin-bottom: 1rem; + line-height: 1.65; + color: #525252; font-size: 0.875rem; } +:is(.dark) .prose p { + color: #a3a3a3; +} + .prose ul, .prose ol { - margin-bottom: 1.25rem; + margin-bottom: 1rem; padding-left: 1.25rem; } +.prose ul { + list-style-type: disc; +} + +.prose ol { + list-style-type: decimal; +} + .prose li { - margin-bottom: 0.5rem; - color: var(--muted-foreground); + margin-bottom: 0.25rem; + color: #525252; font-size: 0.875rem; line-height: 1.6; } +:is(.dark) .prose li { + color: #a3a3a3; +} + .prose li strong { color: var(--foreground); - opacity: 0.85; font-weight: 500; } .prose a { color: var(--foreground); text-decoration: underline; + text-decoration-color: #d4d4d4; text-underline-offset: 2px; } .prose a:hover { + text-decoration-color: var(--foreground); +} + +:is(.dark) .prose a { + text-decoration-color: #525252; +} + +:is(.dark) .prose a:hover { + text-decoration-color: var(--foreground); +} + +.prose strong { + font-weight: 500; color: var(--foreground); } +.prose blockquote { + margin-bottom: 1rem; + border-left: 2px solid #e5e5e5; + padding-left: 1rem; + font-size: 0.875rem; + color: #737373; +} + +:is(.dark) .prose blockquote { + border-left-color: #525252; + color: #a3a3a3; +} + .prose table { width: 100%; border-collapse: collapse; @@ -284,7 +331,3 @@ code { margin-top: 0.5em; margin-bottom: 0.5em; } - -button { - cursor: pointer; -} diff --git a/docs/src/app/layout.tsx b/docs/src/app/layout.tsx index 02075a5..445b084 100644 --- a/docs/src/app/layout.tsx +++ b/docs/src/app/layout.tsx @@ -1,18 +1,19 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter, Geist_Mono } from "next/font/google"; import { GeistPixelSquare } from "geist/font/pixel"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; -import { MobileNavProvider } from "@/components/mobile-nav-context"; import { Header } from "@/components/header"; -import { Sidebar } from "@/components/sidebar"; +import { DocsSidebar } from "@/components/docs-sidebar"; +import { DocsMobileNav } from "@/components/docs-mobile-nav"; +import { CopyPageButton } from "@/components/copy-page-button"; import { DocsChat } from "@/components/docs-chat"; import { cookies } from "next/headers"; import { SpeedInsights } from "@vercel/speed-insights/next"; import { Analytics } from "@vercel/analytics/next"; -const geist = Geist({ - variable: "--font-geist", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -66,23 +67,23 @@ export default async function RootLayout({ )} - -
-
- -
-
-
- {children} -
-
-
+
+ +
+ +
+
+ +
+
{children}
- - +
+ diff --git a/docs/src/app/skills/page.mdx b/docs/src/app/skills/page.mdx new file mode 100644 index 0000000..eaaf074 --- /dev/null +++ b/docs/src/app/skills/page.mdx @@ -0,0 +1,60 @@ +import { pageMetadata } from "@/lib/page-metadata" + +export const metadata = pageMetadata("skills") + +# Skills + +agent-browser ships with skills that teach AI coding agents how to use it for specific workflows. Install a skill and your agent in Cursor, Claude Code, or Codex can automate browser tasks without manual guidance. + +## Available Skills + +- **agent-browser** β€” General browser automation: navigation, snapshots, forms, screenshots, data extraction, sessions, authentication, diffing, and the full command reference. +- **dogfood** β€” Systematic exploratory testing. Navigates an app like a real user, finds bugs and UX issues, and produces a structured report with screenshots and repro videos. +- **electron** β€” Automate any Electron app (VS Code, Slack, Discord, Figma, etc.) by connecting to its built-in Chrome DevTools Protocol port. This is how agent-browser drives native desktop apps like the Slack macOS app. +- **slack** β€” Browser-based Slack automation. Check unreads, navigate channels, search conversations, send messages, and extract data β€” no API tokens needed. + +## Installation + +```bash +npx skills add vercel-labs/agent-browser --skill agent-browser +npx skills add vercel-labs/agent-browser --skill dogfood +npx skills add vercel-labs/agent-browser --skill electron +npx skills add vercel-labs/agent-browser --skill slack +``` + +After installing, your AI agent will automatically activate the right skill when it encounters a matching request. + +## agent-browser + +The core skill. Teaches agents the full agent-browser API: the navigate-snapshot-interact-re-snapshot workflow, all commands, command chaining, authentication (auth vault and state persistence), sessions, diffing, JavaScript evaluation, annotated screenshots, semantic locators, and configuration. + +Example agent interactions: + +- "Open example.com and fill out the contact form" +- "Take a screenshot of the dashboard after logging in" +- "Compare staging and production versions of the homepage" + +## dogfood + +A structured workflow for exploratory testing. The agent opens a target URL, systematically explores the app (navigating pages, testing forms, clicking buttons, checking console errors), and documents every issue it finds with: + +- Numbered repro steps +- Step-by-step screenshots +- Repro videos for interactive bugs +- Severity classification + +The output is a markdown report in an output directory, ready to hand to the responsible team. Run it with a single prompt like "dogfood vercel.com" or "QA http://localhost:3000 β€” focus on the billing page". + +## electron + +Electron apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) are built on Chromium and expose a Chrome DevTools Protocol (CDP) port that agent-browser can connect to. This skill teaches agents how to launch or connect to any Electron app, then use the standard snapshot-interact workflow to automate it. + +Electron apps are built on Chromium, so they expose a Chrome DevTools Protocol (CDP) port that agent-browser can connect to. Launch the app with `--remote-debugging-port`, connect, and use the standard snapshot-interact workflow. This is the foundation that the **slack** skill builds on. + +## slack + +Browser-based Slack automation. Connects to an existing Slack session (via `agent-browser connect 9222`) or opens Slack in a new browser, then uses snapshots and element refs to navigate the UI. Covers checking unreads, navigating channels and DMs, searching conversations, extracting message data, and taking screenshots β€” all without needing Slack API tokens or bot setup. + +## Source + +All skill files are in the [`skills/`](https://github.com/vercel-labs/agent-browser/tree/main/skills) directory of the repository. diff --git a/docs/src/components/code-block.tsx b/docs/src/components/code-block.tsx index 7c1ef4f..a0c888a 100644 --- a/docs/src/components/code-block.tsx +++ b/docs/src/components/code-block.tsx @@ -10,7 +10,10 @@ export async function CodeBlock({ code, lang = "bash" }: CodeBlockProps) { const trimmedCode = code.trim(); const html = await codeToHtml(trimmedCode, { lang, - theme: "github-dark-default", + themes: { + light: "github-light-default", + dark: "github-dark-default", + }, }); return ( diff --git a/docs/src/components/copy-page-button.tsx b/docs/src/components/copy-page-button.tsx new file mode 100644 index 0000000..daafaac --- /dev/null +++ b/docs/src/components/copy-page-button.tsx @@ -0,0 +1,71 @@ +"use client"; + +import { useState } from "react"; +import { usePathname } from "next/navigation"; + +export function CopyPageButton() { + const pathname = usePathname(); + const [state, setState] = useState<"idle" | "loading" | "copied">("idle"); + + const handleCopy = async () => { + setState("loading"); + try { + const response = await fetch( + `/api/docs-markdown?path=${encodeURIComponent(pathname)}`, + ); + if (!response.ok) { + throw new Error("Failed to fetch markdown"); + } + const markdown = await response.text(); + await navigator.clipboard.writeText(markdown); + setState("copied"); + setTimeout(() => setState("idle"), 2000); + } catch { + setState("idle"); + } + }; + + return ( + + ); +} diff --git a/docs/src/components/docs-chat.tsx b/docs/src/components/docs-chat.tsx index e11985a..4332d36 100644 --- a/docs/src/components/docs-chat.tsx +++ b/docs/src/components/docs-chat.tsx @@ -494,7 +494,7 @@ export function DocsChat({ {!open && (
diff --git a/docs/src/components/mobile-nav-context.tsx b/docs/src/components/mobile-nav-context.tsx deleted file mode 100644 index a08d8d0..0000000 --- a/docs/src/components/mobile-nav-context.tsx +++ /dev/null @@ -1,45 +0,0 @@ -"use client"; - -import { createContext, useContext, useState, useEffect } from "react"; -import { usePathname } from "next/navigation"; - -type MobileNavContextType = { - isOpen: boolean; - setIsOpen: (open: boolean) => void; - toggle: () => void; -}; - -const MobileNavContext = createContext(null); - -export function MobileNavProvider({ children }: { children: React.ReactNode }) { - const [isOpen, setIsOpen] = useState(false); - const pathname = usePathname(); - - useEffect(() => { - setIsOpen(false); - }, [pathname]); - - useEffect(() => { - const handleEscape = (e: KeyboardEvent) => { - if (e.key === "Escape") setIsOpen(false); - }; - document.addEventListener("keydown", handleEscape); - return () => document.removeEventListener("keydown", handleEscape); - }, []); - - const toggle = () => setIsOpen(!isOpen); - - return ( - - {children} - - ); -} - -export function useMobileNav() { - const context = useContext(MobileNavContext); - if (!context) { - throw new Error("useMobileNav must be used within a MobileNavProvider"); - } - return context; -} diff --git a/docs/src/components/sidebar.tsx b/docs/src/components/sidebar.tsx deleted file mode 100644 index c85144e..0000000 --- a/docs/src/components/sidebar.tsx +++ /dev/null @@ -1,66 +0,0 @@ -"use client"; - -import Link from "next/link"; -import { usePathname } from "next/navigation"; -import { useMobileNav } from "./mobile-nav-context"; -import { navigation } from "@/lib/docs-navigation"; - -export function Sidebar() { - const pathname = usePathname(); - const { isOpen, setIsOpen } = useMobileNav(); - - return ( - <> - {/* Mobile overlay */} - {isOpen && ( -
setIsOpen(false)} - /> - )} - - {/* Sidebar */} - - - ); -} diff --git a/docs/src/components/theme-toggle.tsx b/docs/src/components/theme-toggle.tsx index 653ca58..ebad02b 100644 --- a/docs/src/components/theme-toggle.tsx +++ b/docs/src/components/theme-toggle.tsx @@ -18,7 +18,7 @@ export function ThemeToggle() { return ( + + + + `); + + const snapshot = await browser.getSnapshot(); + const refs = snapshot.refs; + const unnamedRefs = Object.entries(refs).filter(([, v]) => v.role === 'button' && !v.name); + expect(unnamedRefs.length).toBe(1); + + const [refId] = unnamedRefs[0]; + await executeCommand({ id: 'test', action: 'click', selector: `@${refId}` }, browser); + const title = await page.title(); + expect(title).toBe('unnamed'); + }); + }); + describe('cursor-ref selector uniqueness', () => { it('should produce unique selectors for repeated DOM structures', async () => { const page = browser.getPage(); diff --git a/src/browser.ts b/src/browser.ts index c32aea3..73fe0d0 100644 --- a/src/browser.ts +++ b/src/browser.ts @@ -226,12 +226,10 @@ export class BrowserManager { } // Build locator with exact: true to avoid substring matches - let locator: Locator; - if (refData.name) { - locator = page.getByRole(refData.role as any, { name: refData.name, exact: true }); - } else { - locator = page.getByRole(refData.role as any); - } + let locator: Locator = page.getByRole(refData.role as any, { + name: refData.name, + exact: true, + }); // If an nth index is stored (for disambiguation), use it if (refData.nth !== undefined) { diff --git a/src/snapshot.ts b/src/snapshot.ts index 40a205f..6e6c774 100644 --- a/src/snapshot.ts +++ b/src/snapshot.ts @@ -23,7 +23,7 @@ export interface RefMap { [ref: string]: { selector: string; role: string; - name?: string; + name: string; /** Index for disambiguation when multiple elements have same role+name */ nth?: number; }; @@ -130,12 +130,9 @@ const STRUCTURAL_ROLES = new Set([ /** * Build a selector string for storing in ref map */ -function buildSelector(role: string, name?: string): string { - if (name) { - const escapedName = JSON.stringify(name); - return `getByRole('${role}', { name: ${escapedName}, exact: true })`; - } - return `getByRole('${role}')`; +function buildSelector(role: string, name: string): string { + const escapedName = JSON.stringify(name); + return `getByRole('${role}', { name: ${escapedName}, exact: true })`; } /** @@ -293,7 +290,7 @@ export async function getEnhancedSnapshot( const cursorElements = await findCursorInteractiveElements(page, options.selector); // Filter out elements whose text is already captured in the snapshot - const existingTexts = new Set(Object.values(refs).map((r) => r.name?.toLowerCase())); + const existingTexts = new Set(Object.values(refs).map((r) => r.name.toLowerCase())); // Also extract quoted strings from the ARIA tree for broader dedup for (const m of enhancedTree.matchAll(/"([^"]+)"/g)) { existingTexts.add(m[1].toLowerCase()); @@ -404,12 +401,13 @@ function processAriaTree(ariaTree: string, refs: RefMap, options: SnapshotOption if (INTERACTIVE_ROLES.has(roleLower)) { const ref = nextRef(); - const nth = tracker.getNextIndex(roleLower, name); - tracker.trackRef(roleLower, name, ref); + const resolvedName = name ?? ''; + const nth = tracker.getNextIndex(roleLower, resolvedName); + tracker.trackRef(roleLower, resolvedName, ref); refs[ref] = { - selector: buildSelector(roleLower, name), + selector: buildSelector(roleLower, resolvedName), role: roleLower, - name, + name: resolvedName, nth, // Always store nth, we'll use it for duplicates }; @@ -531,13 +529,15 @@ function processLine( if (shouldHaveRef) { const ref = nextRef(); - const nth = tracker.getNextIndex(roleLower, name); - tracker.trackRef(roleLower, name, ref); + // Normalize to "" so unnamed elements get exact-match selectors + const resolvedName = isInteractive ? (name ?? '') : name!; + const nth = tracker.getNextIndex(roleLower, resolvedName); + tracker.trackRef(roleLower, resolvedName, ref); refs[ref] = { - selector: buildSelector(roleLower, name), + selector: buildSelector(roleLower, resolvedName), role: roleLower, - name, + name: resolvedName, nth, // Always store nth, we'll clean up non-duplicates later }; From e912f541f2e4b79d2309d39e587f92dff57aede9 Mon Sep 17 00:00:00 2001 From: neilmix Date: Sun, 1 Mar 2026 10:12:37 -0600 Subject: [PATCH 4/8] fix: treat EPERM from kill(pid, 0) as "process exists" in daemon liveness checks (#564) Per POSIX, kill(pid, 0) returns EPERM when the process exists but the caller lacks permission to signal it, and ESRCH when it does not exist. The daemon liveness checks in both the Rust CLI and TypeScript daemon treated any kill failure as "not running", which is incorrect when running inside a macOS sandbox that restricts signal delivery to (target self). This caused the CLI to delete the real daemon's socket and PID files, then spawn a duplicate daemon. Co-authored-by: Claude Opus 4.6 --- cli/src/connection.rs | 8 +++++++- cli/src/main.rs | 6 +++++- src/daemon.ts | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/cli/src/connection.rs b/cli/src/connection.rs index 0079f85..dc4de8c 100644 --- a/cli/src/connection.rs +++ b/cli/src/connection.rs @@ -159,7 +159,13 @@ fn is_daemon_running(session: &str) -> bool { if let Ok(pid_str) = fs::read_to_string(&pid_path) { if let Ok(pid) = pid_str.trim().parse::() { unsafe { - return libc::kill(pid, 0) == 0; + if libc::kill(pid, 0) == 0 { + return true; + } + // EPERM means the process exists but we lack permission to + // signal it (e.g. inside a macOS sandbox). Only ESRCH means + // the process is genuinely gone. + return std::io::Error::last_os_error().raw_os_error() != Some(libc::ESRCH); } } } diff --git a/cli/src/main.rs b/cli/src/main.rs index 4df940e..c56a423 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -170,7 +170,11 @@ fn run_session(args: &[String], session: &str, json_mode: bool) { if let Ok(pid_str) = fs::read_to_string(&pid_path) { if let Ok(pid) = pid_str.trim().parse::() { #[cfg(unix)] - let running = unsafe { libc::kill(pid as i32, 0) == 0 }; + let running = unsafe { + libc::kill(pid as i32, 0) == 0 + || std::io::Error::last_os_error().raw_os_error() + != Some(libc::ESRCH) + }; #[cfg(windows)] let running = unsafe { let handle = diff --git a/src/daemon.ts b/src/daemon.ts index c47a7ff..c5faff4 100644 --- a/src/daemon.ts +++ b/src/daemon.ts @@ -262,7 +262,12 @@ export function isDaemonRunning(session?: string): boolean { // Check if process exists (works on both Unix and Windows) process.kill(pid, 0); return true; - } catch { + } catch (err: unknown) { + // EPERM means the process exists but we lack permission to signal it + // (e.g. caller is inside a macOS sandbox). Only ESRCH means it's gone. + if (err instanceof Error && (err as NodeJS.ErrnoException).code === 'EPERM') { + return true; + } // Process doesn't exist, clean up stale files cleanupSocket(session); return false; From b304a4188c71877e54373d72109be034d455953b Mon Sep 17 00:00:00 2001 From: Giulio Leone Date: Sun, 1 Mar 2026 19:23:23 +0100 Subject: [PATCH 5/8] fix: correct misleading output for cookies clear and tab close (#556) (#563) Bug 1: `cookies clear` printed 'Request log cleared' instead of 'Cookies cleared' because the output handler matched the generic `{ cleared: true }` response shape without checking the action context. Now uses the `action` parameter to distinguish `cookies_clear` from `requests --clear`. Bug 2: `tab close` printed 'Browser closed' instead of 'Tab closed' because the output handler matched the generic `{ closed: ... }` response shape without checking the action context. Now uses the `action` parameter to distinguish `tab_close` from `close` (full browser close). Closes #556 --- cli/src/output.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/cli/src/output.rs b/cli/src/output.rs index 0006477..498e6bb 100644 --- a/cli/src/output.rs +++ b/cli/src/output.rs @@ -318,10 +318,14 @@ pub fn print_response_with_opts(resp: &Response, action: Option<&str>, opts: &Ou } return; } - // Cleared requests + // Cleared (cookies or request log) if let Some(cleared) = data.get("cleared").and_then(|v| v.as_bool()) { if cleared { - println!("{} Request log cleared", color::success_indicator()); + let label = match action { + Some("cookies_clear") => "Cookies cleared", + _ => "Request log cleared", + }; + println!("{} {}", color::success_indicator(), label); return; } } @@ -382,9 +386,13 @@ pub fn print_response_with_opts(resp: &Response, action: Option<&str>, opts: &Ou } return; } - // Closed + // Closed (browser or tab) if data.get("closed").is_some() { - println!("{} Browser closed", color::success_indicator()); + let label = match action { + Some("tab_close") => "Tab closed", + _ => "Browser closed", + }; + println!("{} {}", color::success_indicator(), label); return; } // Recording start (has "started" field) From c7fa10cb1ba2e98104664d76d591c36e2feb487d Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Mon, 2 Mar 2026 16:26:19 -0600 Subject: [PATCH 6/8] remove skill creator (#581) --- .agents/skills/skill-creator/LICENSE.txt | 202 ---------- .agents/skills/skill-creator/SKILL.md | 356 ------------------ .../references/output-patterns.md | 82 ---- .../skill-creator/references/workflows.md | 28 -- .../skill-creator/scripts/init_skill.py | 303 --------------- .../skill-creator/scripts/package_skill.py | 113 ------ .../skill-creator/scripts/quick_validate.py | 95 ----- 7 files changed, 1179 deletions(-) delete mode 100644 .agents/skills/skill-creator/LICENSE.txt delete mode 100644 .agents/skills/skill-creator/SKILL.md delete mode 100644 .agents/skills/skill-creator/references/output-patterns.md delete mode 100644 .agents/skills/skill-creator/references/workflows.md delete mode 100755 .agents/skills/skill-creator/scripts/init_skill.py delete mode 100755 .agents/skills/skill-creator/scripts/package_skill.py delete mode 100755 .agents/skills/skill-creator/scripts/quick_validate.py diff --git a/.agents/skills/skill-creator/LICENSE.txt b/.agents/skills/skill-creator/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/.agents/skills/skill-creator/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/.agents/skills/skill-creator/SKILL.md b/.agents/skills/skill-creator/SKILL.md deleted file mode 100644 index b7f8659..0000000 --- a/.agents/skills/skill-creator/SKILL.md +++ /dev/null @@ -1,356 +0,0 @@ ---- -name: skill-creator -description: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations. -license: Complete terms in LICENSE.txt ---- - -# Skill Creator - -This skill provides guidance for creating effective skills. - -## About Skills - -Skills are modular, self-contained packages that extend Claude's capabilities by providing -specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific -domains or tasksβ€”they transform Claude from a general-purpose agent into a specialized agent -equipped with procedural knowledge that no model can fully possess. - -### What Skills Provide - -1. Specialized workflows - Multi-step procedures for specific domains -2. Tool integrations - Instructions for working with specific file formats or APIs -3. Domain expertise - Company-specific knowledge, schemas, business logic -4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks - -## Core Principles - -### Concise is Key - -The context window is a public good. Skills share the context window with everything else Claude needs: system prompt, conversation history, other Skills' metadata, and the actual user request. - -**Default assumption: Claude is already very smart.** Only add context Claude doesn't already have. Challenge each piece of information: "Does Claude really need this explanation?" and "Does this paragraph justify its token cost?" - -Prefer concise examples over verbose explanations. - -### Set Appropriate Degrees of Freedom - -Match the level of specificity to the task's fragility and variability: - -**High freedom (text-based instructions)**: Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach. - -**Medium freedom (pseudocode or scripts with parameters)**: Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior. - -**Low freedom (specific scripts, few parameters)**: Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed. - -Think of Claude as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom). - -### Anatomy of a Skill - -Every skill consists of a required SKILL.md file and optional bundled resources: - -``` -skill-name/ -β”œβ”€β”€ SKILL.md (required) -β”‚ β”œβ”€β”€ YAML frontmatter metadata (required) -β”‚ β”‚ β”œβ”€β”€ name: (required) -β”‚ β”‚ └── description: (required) -β”‚ └── Markdown instructions (required) -└── Bundled Resources (optional) - β”œβ”€β”€ scripts/ - Executable code (Python/Bash/etc.) - β”œβ”€β”€ references/ - Documentation intended to be loaded into context as needed - └── assets/ - Files used in output (templates, icons, fonts, etc.) -``` - -#### SKILL.md (required) - -Every SKILL.md consists of: - -- **Frontmatter** (YAML): Contains `name` and `description` fields. These are the only fields that Claude reads to determine when the skill gets used, thus it is very important to be clear and comprehensive in describing what the skill is, and when it should be used. -- **Body** (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all). - -#### Bundled Resources (optional) - -##### Scripts (`scripts/`) - -Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten. - -- **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed -- **Example**: `scripts/rotate_pdf.py` for PDF rotation tasks -- **Benefits**: Token efficient, deterministic, may be executed without loading into context -- **Note**: Scripts may still need to be read by Claude for patching or environment-specific adjustments - -##### References (`references/`) - -Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking. - -- **When to include**: For documentation that Claude should reference while working -- **Examples**: `references/finance.md` for financial schemas, `references/mnda.md` for company NDA template, `references/policies.md` for company policies, `references/api_docs.md` for API specifications -- **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides -- **Benefits**: Keeps SKILL.md lean, loaded only when Claude determines it's needed -- **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md -- **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skillβ€”this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files. - -##### Assets (`assets/`) - -Files not intended to be loaded into context, but rather used within the output Claude produces. - -- **When to include**: When the skill needs files that will be used in the final output -- **Examples**: `assets/logo.png` for brand assets, `assets/slides.pptx` for PowerPoint templates, `assets/frontend-template/` for HTML/React boilerplate, `assets/font.ttf` for typography -- **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified -- **Benefits**: Separates output resources from documentation, enables Claude to use files without loading them into context - -#### What to Not Include in a Skill - -A skill should only contain essential files that directly support its functionality. Do NOT create extraneous documentation or auxiliary files, including: - -- README.md -- INSTALLATION_GUIDE.md -- QUICK_REFERENCE.md -- CHANGELOG.md -- etc. - -The skill should only contain the information needed for an AI agent to do the job at hand. It should not contain auxilary context about the process that went into creating it, setup and testing procedures, user-facing documentation, etc. Creating additional documentation files just adds clutter and confusion. - -### Progressive Disclosure Design Principle - -Skills use a three-level loading system to manage context efficiently: - -1. **Metadata (name + description)** - Always in context (~100 words) -2. **SKILL.md body** - When skill triggers (<5k words) -3. **Bundled resources** - As needed by Claude (Unlimited because scripts can be executed without reading into context window) - -#### Progressive Disclosure Patterns - -Keep SKILL.md body to the essentials and under 500 lines to minimize context bloat. Split content into separate files when approaching this limit. When splitting out content into other files, it is very important to reference them from SKILL.md and describe clearly when to read them, to ensure the reader of the skill knows they exist and when to use them. - -**Key principle:** When a skill supports multiple variations, frameworks, or options, keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details (patterns, examples, configuration) into separate reference files. - -**Pattern 1: High-level guide with references** - -```markdown -# PDF Processing - -## Quick start - -Extract text with pdfplumber: -[code example] - -## Advanced features - -- **Form filling**: See [FORMS.md](FORMS.md) for complete guide -- **API reference**: See [REFERENCE.md](REFERENCE.md) for all methods -- **Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns -``` - -Claude loads FORMS.md, REFERENCE.md, or EXAMPLES.md only when needed. - -**Pattern 2: Domain-specific organization** - -For Skills with multiple domains, organize content by domain to avoid loading irrelevant context: - -``` -bigquery-skill/ -β”œβ”€β”€ SKILL.md (overview and navigation) -└── reference/ - β”œβ”€β”€ finance.md (revenue, billing metrics) - β”œβ”€β”€ sales.md (opportunities, pipeline) - β”œβ”€β”€ product.md (API usage, features) - └── marketing.md (campaigns, attribution) -``` - -When a user asks about sales metrics, Claude only reads sales.md. - -Similarly, for skills supporting multiple frameworks or variants, organize by variant: - -``` -cloud-deploy/ -β”œβ”€β”€ SKILL.md (workflow + provider selection) -└── references/ - β”œβ”€β”€ aws.md (AWS deployment patterns) - β”œβ”€β”€ gcp.md (GCP deployment patterns) - └── azure.md (Azure deployment patterns) -``` - -When the user chooses AWS, Claude only reads aws.md. - -**Pattern 3: Conditional details** - -Show basic content, link to advanced content: - -```markdown -# DOCX Processing - -## Creating documents - -Use docx-js for new documents. See [DOCX-JS.md](DOCX-JS.md). - -## Editing documents - -For simple edits, modify the XML directly. - -**For tracked changes**: See [REDLINING.md](REDLINING.md) -**For OOXML details**: See [OOXML.md](OOXML.md) -``` - -Claude reads REDLINING.md or OOXML.md only when the user needs those features. - -**Important guidelines:** - -- **Avoid deeply nested references** - Keep references one level deep from SKILL.md. All reference files should link directly from SKILL.md. -- **Structure longer reference files** - For files longer than 100 lines, include a table of contents at the top so Claude can see the full scope when previewing. - -## Skill Creation Process - -Skill creation involves these steps: - -1. Understand the skill with concrete examples -2. Plan reusable skill contents (scripts, references, assets) -3. Initialize the skill (run init_skill.py) -4. Edit the skill (implement resources and write SKILL.md) -5. Package the skill (run package_skill.py) -6. Iterate based on real usage - -Follow these steps in order, skipping only if there is a clear reason why they are not applicable. - -### Step 1: Understanding the Skill with Concrete Examples - -Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill. - -To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback. - -For example, when building an image-editor skill, relevant questions include: - -- "What functionality should the image-editor skill support? Editing, rotating, anything else?" -- "Can you give some examples of how this skill would be used?" -- "I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?" -- "What would a user say that should trigger this skill?" - -To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness. - -Conclude this step when there is a clear sense of the functionality the skill should support. - -### Step 2: Planning the Reusable Skill Contents - -To turn concrete examples into an effective skill, analyze each example by: - -1. Considering how to execute on the example from scratch -2. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly - -Example: When building a `pdf-editor` skill to handle queries like "Help me rotate this PDF," the analysis shows: - -1. Rotating a PDF requires re-writing the same code each time -2. A `scripts/rotate_pdf.py` script would be helpful to store in the skill - -Example: When designing a `frontend-webapp-builder` skill for queries like "Build me a todo app" or "Build me a dashboard to track my steps," the analysis shows: - -1. Writing a frontend webapp requires the same boilerplate HTML/React each time -2. An `assets/hello-world/` template containing the boilerplate HTML/React project files would be helpful to store in the skill - -Example: When building a `big-query` skill to handle queries like "How many users have logged in today?" the analysis shows: - -1. Querying BigQuery requires re-discovering the table schemas and relationships each time -2. A `references/schema.md` file documenting the table schemas would be helpful to store in the skill - -To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets. - -### Step 3: Initializing the Skill - -At this point, it is time to actually create the skill. - -Skip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step. - -When creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable. - -Usage: - -```bash -scripts/init_skill.py --path -``` - -The script: - -- Creates the skill directory at the specified path -- Generates a SKILL.md template with proper frontmatter and TODO placeholders -- Creates example resource directories: `scripts/`, `references/`, and `assets/` -- Adds example files in each directory that can be customized or deleted - -After initialization, customize or remove the generated SKILL.md and example files as needed. - -### Step 4: Edit the Skill - -When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Include information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively. - -#### Learn Proven Design Patterns - -Consult these helpful guides based on your skill's needs: - -- **Multi-step processes**: See references/workflows.md for sequential workflows and conditional logic -- **Specific output formats or quality standards**: See references/output-patterns.md for template and example patterns - -These files contain established best practices for effective skill design. - -#### Start with Reusable Skill Contents - -To begin implementation, start with the reusable resources identified above: `scripts/`, `references/`, and `assets/` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets/`, or documentation to store in `references/`. - -Added scripts must be tested by actually running them to ensure there are no bugs and that the output matches what is expected. If there are many similar scripts, only a representative sample needs to be tested to ensure confidence that they all work while balancing time to completion. - -Any example files and directories not needed for the skill should be deleted. The initialization script creates example files in `scripts/`, `references/`, and `assets/` to demonstrate structure, but most skills won't need all of them. - -#### Update SKILL.md - -**Writing Guidelines:** Always use imperative/infinitive form. - -##### Frontmatter - -Write the YAML frontmatter with `name` and `description`: - -- `name`: The skill name -- `description`: This is the primary triggering mechanism for your skill, and helps Claude understand when to use the skill. - - Include both what the Skill does and specific triggers/contexts for when to use it. - - Include all "when to use" information here - Not in the body. The body is only loaded after triggering, so "When to Use This Skill" sections in the body are not helpful to Claude. - - Example description for a `docx` skill: "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks" - -Do not include any other fields in YAML frontmatter. - -##### Body - -Write instructions for using the skill and its bundled resources. - -### Step 5: Packaging a Skill - -Once development of the skill is complete, it must be packaged into a distributable .skill file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements: - -```bash -scripts/package_skill.py -``` - -Optional output directory specification: - -```bash -scripts/package_skill.py ./dist -``` - -The packaging script will: - -1. **Validate** the skill automatically, checking: - - - YAML frontmatter format and required fields - - Skill naming conventions and directory structure - - Description completeness and quality - - File organization and resource references - -2. **Package** the skill if validation passes, creating a .skill file named after the skill (e.g., `my-skill.skill`) that includes all files and maintains the proper directory structure for distribution. The .skill file is a zip file with a .skill extension. - -If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again. - -### Step 6: Iterate - -After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed. - -**Iteration workflow:** - -1. Use the skill on real tasks -2. Notice struggles or inefficiencies -3. Identify how SKILL.md or bundled resources should be updated -4. Implement changes and test again diff --git a/.agents/skills/skill-creator/references/output-patterns.md b/.agents/skills/skill-creator/references/output-patterns.md deleted file mode 100644 index 073ddda..0000000 --- a/.agents/skills/skill-creator/references/output-patterns.md +++ /dev/null @@ -1,82 +0,0 @@ -# Output Patterns - -Use these patterns when skills need to produce consistent, high-quality output. - -## Template Pattern - -Provide templates for output format. Match the level of strictness to your needs. - -**For strict requirements (like API responses or data formats):** - -```markdown -## Report structure - -ALWAYS use this exact template structure: - -# [Analysis Title] - -## Executive summary -[One-paragraph overview of key findings] - -## Key findings -- Finding 1 with supporting data -- Finding 2 with supporting data -- Finding 3 with supporting data - -## Recommendations -1. Specific actionable recommendation -2. Specific actionable recommendation -``` - -**For flexible guidance (when adaptation is useful):** - -```markdown -## Report structure - -Here is a sensible default format, but use your best judgment: - -# [Analysis Title] - -## Executive summary -[Overview] - -## Key findings -[Adapt sections based on what you discover] - -## Recommendations -[Tailor to the specific context] - -Adjust sections as needed for the specific analysis type. -``` - -## Examples Pattern - -For skills where output quality depends on seeing examples, provide input/output pairs: - -```markdown -## Commit message format - -Generate commit messages following these examples: - -**Example 1:** -Input: Added user authentication with JWT tokens -Output: -``` -feat(auth): implement JWT-based authentication - -Add login endpoint and token validation middleware -``` - -**Example 2:** -Input: Fixed bug where dates displayed incorrectly in reports -Output: -``` -fix(reports): correct date formatting in timezone conversion - -Use UTC timestamps consistently across report generation -``` - -Follow this style: type(scope): brief description, then detailed explanation. -``` - -Examples help Claude understand the desired style and level of detail more clearly than descriptions alone. diff --git a/.agents/skills/skill-creator/references/workflows.md b/.agents/skills/skill-creator/references/workflows.md deleted file mode 100644 index 54b0174..0000000 --- a/.agents/skills/skill-creator/references/workflows.md +++ /dev/null @@ -1,28 +0,0 @@ -# Workflow Patterns - -## Sequential Workflows - -For complex tasks, break operations into clear, sequential steps. It is often helpful to give Claude an overview of the process towards the beginning of SKILL.md: - -```markdown -Filling a PDF form involves these steps: - -1. Analyze the form (run analyze_form.py) -2. Create field mapping (edit fields.json) -3. Validate mapping (run validate_fields.py) -4. Fill the form (run fill_form.py) -5. Verify output (run verify_output.py) -``` - -## Conditional Workflows - -For tasks with branching logic, guide Claude through decision points: - -```markdown -1. Determine the modification type: - **Creating new content?** β†’ Follow "Creation workflow" below - **Editing existing content?** β†’ Follow "Editing workflow" below - -2. Creation workflow: [steps] -3. Editing workflow: [steps] -``` diff --git a/.agents/skills/skill-creator/scripts/init_skill.py b/.agents/skills/skill-creator/scripts/init_skill.py deleted file mode 100755 index 84064ab..0000000 --- a/.agents/skills/skill-creator/scripts/init_skill.py +++ /dev/null @@ -1,303 +0,0 @@ -#!/usr/bin/env python3 -""" -Skill Initializer - Creates a new skill from template - -Usage: - init_skill.py --path - -Examples: - init_skill.py my-new-skill --path skills/public - init_skill.py my-api-helper --path skills/private - init_skill.py custom-skill --path /custom/location -""" - -import sys -from pathlib import Path - - -SKILL_TEMPLATE = """--- -name: {skill_name} -description: [TODO: Complete and informative explanation of what the skill does and when to use it. Include WHEN to use this skill - specific scenarios, file types, or tasks that trigger it.] ---- - -# {skill_title} - -## Overview - -[TODO: 1-2 sentences explaining what this skill enables] - -## Structuring This Skill - -[TODO: Choose the structure that best fits this skill's purpose. Common patterns: - -**1. Workflow-Based** (best for sequential processes) -- Works well when there are clear step-by-step procedures -- Example: DOCX skill with "Workflow Decision Tree" β†’ "Reading" β†’ "Creating" β†’ "Editing" -- Structure: ## Overview β†’ ## Workflow Decision Tree β†’ ## Step 1 β†’ ## Step 2... - -**2. Task-Based** (best for tool collections) -- Works well when the skill offers different operations/capabilities -- Example: PDF skill with "Quick Start" β†’ "Merge PDFs" β†’ "Split PDFs" β†’ "Extract Text" -- Structure: ## Overview β†’ ## Quick Start β†’ ## Task Category 1 β†’ ## Task Category 2... - -**3. Reference/Guidelines** (best for standards or specifications) -- Works well for brand guidelines, coding standards, or requirements -- Example: Brand styling with "Brand Guidelines" β†’ "Colors" β†’ "Typography" β†’ "Features" -- Structure: ## Overview β†’ ## Guidelines β†’ ## Specifications β†’ ## Usage... - -**4. Capabilities-Based** (best for integrated systems) -- Works well when the skill provides multiple interrelated features -- Example: Product Management with "Core Capabilities" β†’ numbered capability list -- Structure: ## Overview β†’ ## Core Capabilities β†’ ### 1. Feature β†’ ### 2. Feature... - -Patterns can be mixed and matched as needed. Most skills combine patterns (e.g., start with task-based, add workflow for complex operations). - -Delete this entire "Structuring This Skill" section when done - it's just guidance.] - -## [TODO: Replace with the first main section based on chosen structure] - -[TODO: Add content here. See examples in existing skills: -- Code samples for technical skills -- Decision trees for complex workflows -- Concrete examples with realistic user requests -- References to scripts/templates/references as needed] - -## Resources - -This skill includes example resource directories that demonstrate how to organize different types of bundled resources: - -### scripts/ -Executable code (Python/Bash/etc.) that can be run directly to perform specific operations. - -**Examples from other skills:** -- PDF skill: `fill_fillable_fields.py`, `extract_form_field_info.py` - utilities for PDF manipulation -- DOCX skill: `document.py`, `utilities.py` - Python modules for document processing - -**Appropriate for:** Python scripts, shell scripts, or any executable code that performs automation, data processing, or specific operations. - -**Note:** Scripts may be executed without loading into context, but can still be read by Claude for patching or environment adjustments. - -### references/ -Documentation and reference material intended to be loaded into context to inform Claude's process and thinking. - -**Examples from other skills:** -- Product management: `communication.md`, `context_building.md` - detailed workflow guides -- BigQuery: API reference documentation and query examples -- Finance: Schema documentation, company policies - -**Appropriate for:** In-depth documentation, API references, database schemas, comprehensive guides, or any detailed information that Claude should reference while working. - -### assets/ -Files not intended to be loaded into context, but rather used within the output Claude produces. - -**Examples from other skills:** -- Brand styling: PowerPoint template files (.pptx), logo files -- Frontend builder: HTML/React boilerplate project directories -- Typography: Font files (.ttf, .woff2) - -**Appropriate for:** Templates, boilerplate code, document templates, images, icons, fonts, or any files meant to be copied or used in the final output. - ---- - -**Any unneeded directories can be deleted.** Not every skill requires all three types of resources. -""" - -EXAMPLE_SCRIPT = '''#!/usr/bin/env python3 -""" -Example helper script for {skill_name} - -This is a placeholder script that can be executed directly. -Replace with actual implementation or delete if not needed. - -Example real scripts from other skills: -- pdf/scripts/fill_fillable_fields.py - Fills PDF form fields -- pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images -""" - -def main(): - print("This is an example script for {skill_name}") - # TODO: Add actual script logic here - # This could be data processing, file conversion, API calls, etc. - -if __name__ == "__main__": - main() -''' - -EXAMPLE_REFERENCE = """# Reference Documentation for {skill_title} - -This is a placeholder for detailed reference documentation. -Replace with actual reference content or delete if not needed. - -Example real reference docs from other skills: -- product-management/references/communication.md - Comprehensive guide for status updates -- product-management/references/context_building.md - Deep-dive on gathering context -- bigquery/references/ - API references and query examples - -## When Reference Docs Are Useful - -Reference docs are ideal for: -- Comprehensive API documentation -- Detailed workflow guides -- Complex multi-step processes -- Information too lengthy for main SKILL.md -- Content that's only needed for specific use cases - -## Structure Suggestions - -### API Reference Example -- Overview -- Authentication -- Endpoints with examples -- Error codes -- Rate limits - -### Workflow Guide Example -- Prerequisites -- Step-by-step instructions -- Common patterns -- Troubleshooting -- Best practices -""" - -EXAMPLE_ASSET = """# Example Asset File - -This placeholder represents where asset files would be stored. -Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed. - -Asset files are NOT intended to be loaded into context, but rather used within -the output Claude produces. - -Example asset files from other skills: -- Brand guidelines: logo.png, slides_template.pptx -- Frontend builder: hello-world/ directory with HTML/React boilerplate -- Typography: custom-font.ttf, font-family.woff2 -- Data: sample_data.csv, test_dataset.json - -## Common Asset Types - -- Templates: .pptx, .docx, boilerplate directories -- Images: .png, .jpg, .svg, .gif -- Fonts: .ttf, .otf, .woff, .woff2 -- Boilerplate code: Project directories, starter files -- Icons: .ico, .svg -- Data files: .csv, .json, .xml, .yaml - -Note: This is a text placeholder. Actual assets can be any file type. -""" - - -def title_case_skill_name(skill_name): - """Convert hyphenated skill name to Title Case for display.""" - return ' '.join(word.capitalize() for word in skill_name.split('-')) - - -def init_skill(skill_name, path): - """ - Initialize a new skill directory with template SKILL.md. - - Args: - skill_name: Name of the skill - path: Path where the skill directory should be created - - Returns: - Path to created skill directory, or None if error - """ - # Determine skill directory path - skill_dir = Path(path).resolve() / skill_name - - # Check if directory already exists - if skill_dir.exists(): - print(f"[x] Error: Skill directory already exists: {skill_dir}") - return None - - # Create skill directory - try: - skill_dir.mkdir(parents=True, exist_ok=False) - print(f"[OK] Created skill directory: {skill_dir}") - except Exception as e: - print(f"[x] Error creating directory: {e}") - return None - - # Create SKILL.md from template - skill_title = title_case_skill_name(skill_name) - skill_content = SKILL_TEMPLATE.format( - skill_name=skill_name, - skill_title=skill_title - ) - - skill_md_path = skill_dir / 'SKILL.md' - try: - skill_md_path.write_text(skill_content) - print("[OK] Created SKILL.md") - except Exception as e: - print(f"[x] Error creating SKILL.md: {e}") - return None - - # Create resource directories with example files - try: - # Create scripts/ directory with example script - scripts_dir = skill_dir / 'scripts' - scripts_dir.mkdir(exist_ok=True) - example_script = scripts_dir / 'example.py' - example_script.write_text(EXAMPLE_SCRIPT.format(skill_name=skill_name)) - example_script.chmod(0o755) - print("[OK] Created scripts/example.py") - - # Create references/ directory with example reference doc - references_dir = skill_dir / 'references' - references_dir.mkdir(exist_ok=True) - example_reference = references_dir / 'api_reference.md' - example_reference.write_text(EXAMPLE_REFERENCE.format(skill_title=skill_title)) - print("[OK] Created references/api_reference.md") - - # Create assets/ directory with example asset placeholder - assets_dir = skill_dir / 'assets' - assets_dir.mkdir(exist_ok=True) - example_asset = assets_dir / 'example_asset.txt' - example_asset.write_text(EXAMPLE_ASSET) - print("[OK] Created assets/example_asset.txt") - except Exception as e: - print(f"[x] Error creating resource directories: {e}") - return None - - # Print next steps - print(f"\n[OK] Skill '{skill_name}' initialized successfully at {skill_dir}") - print("\nNext steps:") - print("1. Edit SKILL.md to complete the TODO items and update the description") - print("2. Customize or delete the example files in scripts/, references/, and assets/") - print("3. Run the validator when ready to check the skill structure") - - return skill_dir - - -def main(): - if len(sys.argv) < 4 or sys.argv[2] != '--path': - print("Usage: init_skill.py --path ") - print("\nSkill name requirements:") - print(" - Hyphen-case identifier (e.g., 'data-analyzer')") - print(" - Lowercase letters, digits, and hyphens only") - print(" - Max 40 characters") - print(" - Must match directory name exactly") - print("\nExamples:") - print(" init_skill.py my-new-skill --path skills/public") - print(" init_skill.py my-api-helper --path skills/private") - print(" init_skill.py custom-skill --path /custom/location") - sys.exit(1) - - skill_name = sys.argv[1] - path = sys.argv[3] - - print(f"Initializing skill: {skill_name}") - print(f" Location: {path}") - print() - - result = init_skill(skill_name, path) - - if result: - sys.exit(0) - else: - sys.exit(1) - - -if __name__ == "__main__": - main() diff --git a/.agents/skills/skill-creator/scripts/package_skill.py b/.agents/skills/skill-creator/scripts/package_skill.py deleted file mode 100755 index b1f9ec5..0000000 --- a/.agents/skills/skill-creator/scripts/package_skill.py +++ /dev/null @@ -1,113 +0,0 @@ -#!/usr/bin/env python3 -""" -Skill Packager - Creates a distributable .skill file of a skill folder - -Usage: - python utils/package_skill.py [output-directory] - -Example: - python utils/package_skill.py skills/public/my-skill - python utils/package_skill.py skills/public/my-skill ./dist -""" - -import sys -import zipfile -from pathlib import Path - -# Add script directory to path for sibling imports -sys.path.insert(0, str(Path(__file__).parent)) -from quick_validate import validate_skill - - -def package_skill(skill_path, output_dir=None): - """ - Package a skill folder into a .skill file. - - Args: - skill_path: Path to the skill folder - output_dir: Optional output directory for the .skill file (defaults to current directory) - - Returns: - Path to the created .skill file, or None if error - """ - skill_path = Path(skill_path).resolve() - - # Validate skill folder exists - if not skill_path.exists(): - print(f"[x] Error: Skill folder not found: {skill_path}") - return None - - if not skill_path.is_dir(): - print(f"[x] Error: Path is not a directory: {skill_path}") - return None - - # Validate SKILL.md exists - skill_md = skill_path / "SKILL.md" - if not skill_md.exists(): - print(f"[x] Error: SKILL.md not found in {skill_path}") - return None - - # Run validation before packaging - print("Validating skill...") - valid, message = validate_skill(skill_path) - if not valid: - print(f"[x] Validation failed: {message}") - print(" Please fix the validation errors before packaging.") - return None - print(f"[OK] {message}\n") - - # Determine output location - skill_name = skill_path.name - if output_dir: - output_path = Path(output_dir).resolve() - output_path.mkdir(parents=True, exist_ok=True) - else: - output_path = Path.cwd() - - skill_filename = output_path / f"{skill_name}.skill" - - # Create the .skill file (zip format) - try: - with zipfile.ZipFile(skill_filename, 'w', zipfile.ZIP_DEFLATED) as zipf: - # Walk through the skill directory - for file_path in skill_path.rglob('*'): - if file_path.is_file(): - # Calculate the relative path within the zip - arcname = file_path.relative_to(skill_path.parent) - zipf.write(file_path, arcname) - print(f" Added: {arcname}") - - print(f"\n[OK] Successfully packaged skill to: {skill_filename}") - return skill_filename - - except Exception as e: - print(f"[x] Error creating .skill file: {e}") - return None - - -def main(): - if len(sys.argv) < 2: - print("Usage: python utils/package_skill.py [output-directory]") - print("\nExample:") - print(" python utils/package_skill.py skills/public/my-skill") - print(" python utils/package_skill.py skills/public/my-skill ./dist") - sys.exit(1) - - skill_path = sys.argv[1] - output_dir = sys.argv[2] if len(sys.argv) > 2 else None - - print(f"Packaging skill: {skill_path}") - if output_dir: - print(f" Output directory: {output_dir}") - print() - - result = package_skill(skill_path, output_dir) - - if result: - sys.exit(0) - else: - sys.exit(1) - - -if __name__ == "__main__": - main() diff --git a/.agents/skills/skill-creator/scripts/quick_validate.py b/.agents/skills/skill-creator/scripts/quick_validate.py deleted file mode 100755 index 62b62c4..0000000 --- a/.agents/skills/skill-creator/scripts/quick_validate.py +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/env python3 -""" -Quick validation script for skills - minimal version -""" - -import sys -import os -import re -import yaml -from pathlib import Path - -def validate_skill(skill_path): - """Basic validation of a skill""" - skill_path = Path(skill_path) - - # Check SKILL.md exists - skill_md = skill_path / 'SKILL.md' - if not skill_md.exists(): - return False, "SKILL.md not found" - - # Read and validate frontmatter - content = skill_md.read_text() - if not content.startswith('---'): - return False, "No YAML frontmatter found" - - # Extract frontmatter - match = re.match(r'^---\n(.*?)\n---', content, re.DOTALL) - if not match: - return False, "Invalid frontmatter format" - - frontmatter_text = match.group(1) - - # Parse YAML frontmatter - try: - frontmatter = yaml.safe_load(frontmatter_text) - if not isinstance(frontmatter, dict): - return False, "Frontmatter must be a YAML dictionary" - except yaml.YAMLError as e: - return False, f"Invalid YAML in frontmatter: {e}" - - # Define allowed properties - ALLOWED_PROPERTIES = {'name', 'description', 'license', 'allowed-tools', 'metadata'} - - # Check for unexpected properties (excluding nested keys under metadata) - unexpected_keys = set(frontmatter.keys()) - ALLOWED_PROPERTIES - if unexpected_keys: - return False, ( - f"Unexpected key(s) in SKILL.md frontmatter: {', '.join(sorted(unexpected_keys))}. " - f"Allowed properties are: {', '.join(sorted(ALLOWED_PROPERTIES))}" - ) - - # Check required fields - if 'name' not in frontmatter: - return False, "Missing 'name' in frontmatter" - if 'description' not in frontmatter: - return False, "Missing 'description' in frontmatter" - - # Extract name for validation - name = frontmatter.get('name', '') - if not isinstance(name, str): - return False, f"Name must be a string, got {type(name).__name__}" - name = name.strip() - if name: - # Check naming convention (hyphen-case: lowercase with hyphens) - if not re.match(r'^[a-z0-9-]+$', name): - return False, f"Name '{name}' should be hyphen-case (lowercase letters, digits, and hyphens only)" - if name.startswith('-') or name.endswith('-') or '--' in name: - return False, f"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens" - # Check name length (max 64 characters per spec) - if len(name) > 64: - return False, f"Name is too long ({len(name)} characters). Maximum is 64 characters." - - # Extract and validate description - description = frontmatter.get('description', '') - if not isinstance(description, str): - return False, f"Description must be a string, got {type(description).__name__}" - description = description.strip() - if description: - # Check for angle brackets - if '<' in description or '>' in description: - return False, "Description cannot contain angle brackets (< or >)" - # Check description length (max 1024 characters per spec) - if len(description) > 1024: - return False, f"Description is too long ({len(description)} characters). Maximum is 1024 characters." - - return True, "Skill is valid!" - -if __name__ == "__main__": - if len(sys.argv) != 2: - print("Usage: python quick_validate.py ") - sys.exit(1) - - valid, message = validate_skill(sys.argv[1]) - print(message) - sys.exit(0 if valid else 1) From 6aea316c82b6312b7da250109619836bbb213b45 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Mon, 2 Mar 2026 17:10:32 -0600 Subject: [PATCH 7/8] chore: add patch changeset for release (#583) --- .changeset/release-b292431e.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/release-b292431e.md diff --git a/.changeset/release-b292431e.md b/.changeset/release-b292431e.md new file mode 100644 index 0000000..06c05a4 --- /dev/null +++ b/.changeset/release-b292431e.md @@ -0,0 +1,5 @@ +--- +"agent-browser": patch +--- + +Documentation site improvements and internal tooling updates including enhanced code blocks, mobile navigation, and docs chat components. CLI connection and output handling refinements. Skill creator reference documentation and scripts have been reorganized. From d97e2016f5acdf824b979b1c68961068108b6027 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:16:52 -0600 Subject: [PATCH 8/8] chore: version packages (#585) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/release-b292431e.md | 5 ----- CHANGELOG.md | 6 ++++++ cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 .changeset/release-b292431e.md diff --git a/.changeset/release-b292431e.md b/.changeset/release-b292431e.md deleted file mode 100644 index 06c05a4..0000000 --- a/.changeset/release-b292431e.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Documentation site improvements and internal tooling updates including enhanced code blocks, mobile navigation, and docs chat components. CLI connection and output handling refinements. Skill creator reference documentation and scripts have been reorganized. diff --git a/CHANGELOG.md b/CHANGELOG.md index 935a3cd..e39867f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.15.2 + +### Patch Changes + +- 6aea316: Documentation site improvements and internal tooling updates including enhanced code blocks, mobile navigation, and docs chat components. CLI connection and output handling refinements. Skill creator reference documentation and scripts have been reorganized. + ## 0.15.1 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index df45daa..e46d98b 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.15.1" +version = "0.15.2" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a2f0a56..e168aee 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.15.1" +version = "0.15.2" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 402727c..a9547a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.15.1", + "version": "0.15.2", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",