Skip to content
Automation
Agent

AGENTS

Automation scripts and agent helpers for the Digital Brain. Use these scripts for recurring tasks, summaries, and maintenance.

From plugin
vibe-skills
2.7k8 skills8 agents3 commands
Install
$ npx -y skills add foryourhealth111-pixel/Vibe-Skills --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Automation scripts and agent helpers for the Digital Brain. Use these scripts for recurring tasks, summaries, and maintenance.

Agent definition

AGENTS.md
name: agents-module
description: Automation scripts and agent helpers for the Digital Brain. Use these scripts for recurring tasks, summaries, and maintenance.

Agent Automation

Scripts and workflows that help maintain and leverage your Digital Brain.

Available Scripts

| Script | Purpose | Frequency | |--------|---------|-----------| | `weekly_review.py` | Generate weekly review from data | Weekly | | `content_ideas.py` | Generate content ideas from knowledge | On-demand | | `stale_contacts.py` | Find contacts needing outreach | Weekly | | `metrics_snapshot.py` | Compile metrics for tracking | Weekly | | `idea_to_draft.py` | Expand an idea into a draft | On-demand |

How to Use

Scripts are in `agents/scripts/`. They work with your Digital Brain data and can be run by the agent when needed.

Running Scripts

# Agent can execute scripts directly
python agents/scripts/weekly_review.py

# Or with arguments
python agents/scripts/content_ideas.py --pillar "ai_agents" --count 5

Script Outputs

Scripts output to stdout in a format the agent can process. They may also write to files when appropriate (e.g., generating a review document).

Agent Instructions

<instructions> When using automation scripts:

1. **Weekly review**: Run every Sunday, outputs review template with data filled in 2. **Content ideas**: Use when user asks for ideas, leverages knowledge base 3. **Stale contacts**: Run weekly, surfaces relationships needing attention 4. **Metrics snapshot**: Run weekly to append to metrics.jsonl 5. **Idea to draft**: Use when user wants to develop a specific idea

Scripts read from Digital Brain files and output actionable results. </instructions>

Workflow Automations

Sunday Weekly Review

1. Run metrics_snapshot.py to update metrics.jsonl
2. Run stale_contacts.py to identify outreach needs
3. Run weekly_review.py to generate review document
4. Present summary to user

Content Ideation Session

1. Read recent entries from knowledge/bookmarks.jsonl
2. Check content/ideas.jsonl for undeveloped ideas
3. Run content_ideas.py for fresh suggestions
4. Cross-reference with content calendar

Pre-Meeting Prep

1. Look up contact in network/contacts.jsonl
2. Pull recent interactions from network/interactions.jsonl
3. Check any pending todos involving them
4. Generate brief with context

Custom Script Development

To add new scripts: 1. Create Python file in `agents/scripts/` 2. Follow existing patterns (read JSONL, output structured data) 3. Document in this file 4. Test with sample data

Read more
Ships withvibe-skills

VibeSkills is a general-purpose Skill that automatically routes local Skills and intelligently orchestrates harness workflows.

Get the whole plugin