Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/digital-brain-skill/agents/AGENTS.md
1---2name: agents-module3description: Automation scripts and agent helpers for the Digital Brain. Use these scripts for recurring tasks, summaries, and maintenance.4---56# Agent Automation78Scripts and workflows that help maintain and leverage your Digital Brain.910## Available Scripts1112| Script | Purpose | Frequency |13|--------|---------|-----------|14| `weekly_review.py` | Generate weekly review from data | Weekly |15| `content_ideas.py` | Generate content ideas from knowledge | On-demand |16| `stale_contacts.py` | Find contacts needing outreach | Weekly |17| `metrics_snapshot.py` | Compile metrics for tracking | Weekly |18| `idea_to_draft.py` | Expand an idea into a draft | On-demand |1920## How to Use2122Scripts are in `agents/scripts/`. They work with your Digital Brain data and can be run by the agent when needed.2324### Running Scripts25```bash26# Agent can execute scripts directly27python agents/scripts/weekly_review.py2829# Or with arguments30python agents/scripts/content_ideas.py --pillar "ai_agents" --count 531```3233### Script Outputs34Scripts output to stdout in a format the agent can process. They may also write to files when appropriate (e.g., generating a review document).3536## Agent Instructions3738<instructions>39When using automation scripts:40411. **Weekly review**: Run every Sunday, outputs review template with data filled in422. **Content ideas**: Use when user asks for ideas, leverages knowledge base433. **Stale contacts**: Run weekly, surfaces relationships needing attention444. **Metrics snapshot**: Run weekly to append to metrics.jsonl455. **Idea to draft**: Use when user wants to develop a specific idea4647Scripts read from Digital Brain files and output actionable results.48</instructions>4950## Workflow Automations5152### Sunday Weekly Review53```541. Run metrics_snapshot.py to update metrics.jsonl552. Run stale_contacts.py to identify outreach needs563. Run weekly_review.py to generate review document574. Present summary to user58```5960### Content Ideation Session61```621. Read recent entries from knowledge/bookmarks.jsonl632. Check content/ideas.jsonl for undeveloped ideas643. Run content_ideas.py for fresh suggestions654. Cross-reference with content calendar66```6768### Pre-Meeting Prep69```701. Look up contact in network/contacts.jsonl712. Pull recent interactions from network/interactions.jsonl723. Check any pending todos involving them734. Generate brief with context74```7576## Custom Script Development7778To add new scripts:791. Create Python file in `agents/scripts/`802. Follow existing patterns (read JSONL, output structured data)813. Document in this file824. Test with sample data83