clamper-ai 1.1.6 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +6 -2
- package/skills/4chan-reader/SKILL.md +140 -0
- package/skills/adhd-assistant/SKILL.md +171 -0
- package/skills/agenthire/SKILL.md +122 -0
- package/skills/ai-daily-briefing/SKILL.md +162 -0
- package/skills/alibaba-supplier-outreach/SKILL.md +189 -0
- package/skills/assets-from-video/SKILL.md +212 -0
- package/skills/assets-from-video/references/google-sheets-api.md +71 -0
- package/skills/assets-from-video/scripts/probe_video.sh +27 -0
- package/skills/assets-from-video/scripts/transcribe.py +56 -0
- package/skills/bluesky/SKILL.md +206 -0
- package/skills/catbox-upload/SKILL.md +71 -0
- package/skills/catbox-upload/scripts/upload.sh +38 -0
- package/skills/dnd5e/SKILL.md +155 -0
- package/skills/etsy/SKILL.md +154 -0
- package/skills/foxreach/SKILL.md +243 -0
- package/skills/invoice-template/SKILL.md +206 -0
- package/skills/joke-delivery/SKILL.md +125 -0
- package/skills/meta-tags-optimizer/SKILL.md +193 -0
- package/skills/one-piece/SKILL.md +124 -0
- package/skills/rent-a-human/SKILL.md +97 -0
- package/skills/rug-checker/SKILL.md +124 -0
- package/skills/stoicism-quotes/SKILL.md +101 -0
- package/skills/tiktok-trend-challenger/SKILL.md +196 -0
- package/skills/tiktok-viral-marketing/SKILL.md +194 -0
- package/skills/tumblr/SKILL.md +214 -0
- package/skills/woocommerce/SKILL.md +172 -0
- package/PRD.md +0 -416
- package/dashboard/app.js +0 -287
- package/dashboard/index.html +0 -137
- package/dashboard/style.css +0 -121
- package/src/cron.mjs +0 -30
- package/src/dashboard.mjs +0 -69
- package/src/doctor.mjs +0 -69
- package/src/init.mjs +0 -145
- package/src/log-activity.mjs +0 -26
- package/src/scaffold.mjs +0 -57
- package/src/skills.mjs +0 -52
- package/src/status.mjs +0 -43
- package/src/sync.mjs +0 -585
- package/src/update.mjs +0 -100
- package/src/upgrade.mjs +0 -104
- package/src/utils.mjs +0 -67
- package/src/validate.mjs +0 -66
- package/templates/AGENTS.md +0 -77
- package/templates/HEARTBEAT.md +0 -12
- package/templates/IDENTITY.md +0 -7
- package/templates/LEARNINGS.md +0 -14
- package/templates/MEMORY.md +0 -14
- package/templates/PROTOCOL_COST_EFFICIENCY.md +0 -30
- package/templates/SKILLS-INDEX.md +0 -21
- package/templates/SOUL.md +0 -22
- package/templates/TOOLS.md +0 -14
- package/templates/USER.md +0 -5
- package/templates/memory/knowledge/about-me.md +0 -13
- package/templates/scripts/nightly-consolidation.sh +0 -54
- package/templates/tasks/QUEUE.md +0 -10
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clamper-ai",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Transform your OpenClaw agent into a production-ready AI assistant with memory, skills, and a dashboard",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,5 +20,9 @@
|
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|
|
22
22
|
},
|
|
23
|
+
"files": [
|
|
24
|
+
"bin/",
|
|
25
|
+
"skills/"
|
|
26
|
+
],
|
|
23
27
|
"dependencies": {}
|
|
24
|
-
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 4chan Reader
|
|
3
|
+
description: Browse and summarize 4chan boards and threads with content filtering
|
|
4
|
+
author: aiasisbot61
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
tier: pro
|
|
7
|
+
category: Social Media
|
|
8
|
+
tags: [4chan, imageboard, threads, boards, anonymous, forum]
|
|
9
|
+
triggers: [4chan, check 4chan, whats on 4chan, board thread, anon, greentext]
|
|
10
|
+
api_auth: none
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# 4chan Reader
|
|
14
|
+
|
|
15
|
+
Browse 4chan boards and threads through a clean, filtered interface. Summarize thread discussions, track trending topics, and filter content. Uses the official 4chan read-only API.
|
|
16
|
+
|
|
17
|
+
## API Details
|
|
18
|
+
|
|
19
|
+
- **Base URL:** `https://a.4cdn.org`
|
|
20
|
+
- **Auth:** None required
|
|
21
|
+
- **Rate Limit:** 1 request per second
|
|
22
|
+
- **Docs:** https://github.com/4chan/4chan-API
|
|
23
|
+
- **Note:** Read-only API, no posting capability
|
|
24
|
+
|
|
25
|
+
## Endpoints
|
|
26
|
+
|
|
27
|
+
### Get Board List
|
|
28
|
+
```
|
|
29
|
+
GET https://a.4cdn.org/boards.json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Get Thread List (Catalog)
|
|
33
|
+
```
|
|
34
|
+
GET https://a.4cdn.org/{board}/catalog.json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Get Thread
|
|
38
|
+
```
|
|
39
|
+
GET https://a.4cdn.org/{board}/thread/{thread_no}.json
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Get Page
|
|
43
|
+
```
|
|
44
|
+
GET https://a.4cdn.org/{board}/{page}.json
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Popular Boards
|
|
48
|
+
|
|
49
|
+
| Board | Code | Description |
|
|
50
|
+
|-------|------|-------------|
|
|
51
|
+
| Technology | /g/ | Software, hardware, programming |
|
|
52
|
+
| Business | /biz/ | Finance, crypto, entrepreneurship |
|
|
53
|
+
| Science | /sci/ | Science and math |
|
|
54
|
+
| DIY | /diy/ | Do it yourself projects |
|
|
55
|
+
| Fitness | /fit/ | Health and fitness |
|
|
56
|
+
| Cooking | /ck/ | Food and cooking |
|
|
57
|
+
| Auto | /o/ | Cars and vehicles |
|
|
58
|
+
| Anime | /a/ | Anime and manga |
|
|
59
|
+
| Video Games | /v/ | Video games discussion |
|
|
60
|
+
| Music | /mu/ | Music discussion |
|
|
61
|
+
| Literature | /lit/ | Books and writing |
|
|
62
|
+
| Politics | /pol/ | Political discussion |
|
|
63
|
+
|
|
64
|
+
## Usage Examples
|
|
65
|
+
|
|
66
|
+
### Browse a board's catalog
|
|
67
|
+
```bash
|
|
68
|
+
curl -s "https://a.4cdn.org/g/catalog.json"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Read a specific thread
|
|
72
|
+
```bash
|
|
73
|
+
curl -s "https://a.4cdn.org/g/thread/12345678.json"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Get all boards
|
|
77
|
+
```bash
|
|
78
|
+
curl -s "https://a.4cdn.org/boards.json"
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Content Filtering
|
|
82
|
+
|
|
83
|
+
This skill includes built-in content filtering:
|
|
84
|
+
- **Safe mode** (default): Filters NSFW boards and content
|
|
85
|
+
- **SFW boards only**: Restricts to work-safe boards
|
|
86
|
+
- **Keyword filtering**: Skip threads with specified keywords
|
|
87
|
+
- **Summary mode**: AI summarizes threads instead of showing raw posts
|
|
88
|
+
|
|
89
|
+
## Clamper Integration
|
|
90
|
+
|
|
91
|
+
When the user asks about 4chan:
|
|
92
|
+
1. Default to safe/SFW boards only
|
|
93
|
+
2. Summarize threads rather than showing raw content
|
|
94
|
+
3. Highlight interesting discussions and insights
|
|
95
|
+
4. Apply content filtering automatically
|
|
96
|
+
5. Respect the 1-request-per-second rate limit
|
|
97
|
+
|
|
98
|
+
### Example Interaction
|
|
99
|
+
```
|
|
100
|
+
User: What's trending on /g/ right now?
|
|
101
|
+
Assistant: *fetches /g/catalog.json*
|
|
102
|
+
|
|
103
|
+
📋 Trending on /g/ - Technology:
|
|
104
|
+
|
|
105
|
+
1. 🔥 "Linux kernel 6.18 released" (342 replies)
|
|
106
|
+
Summary: Discussion about new features, performance improvements,
|
|
107
|
+
and driver support. General consensus is positive.
|
|
108
|
+
|
|
109
|
+
2. 💻 "Best budget mechanical keyboard 2026?" (128 replies)
|
|
110
|
+
Summary: Recommendations include Keychron V-series and Royal
|
|
111
|
+
Kludge boards. Heated debate about switches.
|
|
112
|
+
|
|
113
|
+
3. 🤖 "Local LLM thread" (256 replies)
|
|
114
|
+
Summary: Comparing Llama 4 vs Mistral models for local
|
|
115
|
+
inference. Performance benchmarks shared.
|
|
116
|
+
|
|
117
|
+
4. 📱 "Pixel 11 vs iPhone 18" (89 replies)
|
|
118
|
+
Summary: Camera comparison thread with sample photos.
|
|
119
|
+
|
|
120
|
+
5. 🐧 "Daily driver distro thread" (201 replies)
|
|
121
|
+
Summary: Arch vs Fedora vs NixOS debate continues.
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### Thread deep-dive
|
|
125
|
+
```
|
|
126
|
+
User: Summarize that Linux kernel thread
|
|
127
|
+
Assistant: *fetches thread details*
|
|
128
|
+
|
|
129
|
+
📖 Thread Summary: Linux Kernel 6.18
|
|
130
|
+
|
|
131
|
+
Key points discussed:
|
|
132
|
+
• New Rust driver support expanded to network subsystem
|
|
133
|
+
• 15% improvement in io_uring performance
|
|
134
|
+
• Controversial: removal of legacy x86 support
|
|
135
|
+
• AMD GPU driver improvements praised
|
|
136
|
+
• Several users report boot issues on specific hardware
|
|
137
|
+
|
|
138
|
+
Sentiment: Mostly positive (72%), some concerns about legacy support
|
|
139
|
+
Most mentioned: Rust, performance, AMD, io_uring
|
|
140
|
+
```
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ADHD Assistant
|
|
3
|
+
description: Productivity assistant designed for ADHD minds - task breakdown, focus timers, and gentle accountability
|
|
4
|
+
author: thinktankmachine
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
tier: pro
|
|
7
|
+
category: Productivity
|
|
8
|
+
tags: [adhd, productivity, focus, task-management, pomodoro, accountability]
|
|
9
|
+
triggers: [adhd help, focus, can't concentrate, task breakdown, overwhelmed, brain dump, body doubling]
|
|
10
|
+
api_auth: none
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# ADHD Assistant
|
|
14
|
+
|
|
15
|
+
A productivity assistant specifically designed for ADHD brains. Helps with task initiation, breaking down overwhelming projects, maintaining focus, and providing gentle accountability without judgment.
|
|
16
|
+
|
|
17
|
+
## Core Features
|
|
18
|
+
|
|
19
|
+
### 1. Task Breakdown Engine
|
|
20
|
+
Transforms overwhelming tasks into small, actionable steps that feel achievable.
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
User: I need to clean my entire apartment and I can't start
|
|
24
|
+
Assistant:
|
|
25
|
+
Let's make this tiny and doable. Pick ONE of these to start:
|
|
26
|
+
|
|
27
|
+
🟢 EASY WINS (2 min each):
|
|
28
|
+
□ Throw away any visible trash in the room you're in right now
|
|
29
|
+
□ Put 3 things back where they belong
|
|
30
|
+
□ Wipe down one surface
|
|
31
|
+
|
|
32
|
+
🟡 NEXT STEPS (5 min each):
|
|
33
|
+
□ Load/unload the dishwasher
|
|
34
|
+
□ Gather all dirty clothes into one pile
|
|
35
|
+
□ Clear off one counter/table
|
|
36
|
+
|
|
37
|
+
You don't have to do them all. Just pick one. Which one feels easiest right now?
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### 2. Focus Mode (Pomodoro Variant)
|
|
41
|
+
ADHD-friendly work sessions with flexible timing.
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
User: Help me focus on writing my report
|
|
45
|
+
Assistant:
|
|
46
|
+
🍅 ADHD Focus Session - Writing Report
|
|
47
|
+
|
|
48
|
+
Let's do a SHORT sprint. You can always do another one.
|
|
49
|
+
|
|
50
|
+
⏱️ Work: 15 minutes (shorter than standard Pomodoro - that's OK!)
|
|
51
|
+
☕ Break: 5 minutes
|
|
52
|
+
🎯 Micro-goal: Write just the introduction paragraph
|
|
53
|
+
|
|
54
|
+
Starting now. I'll check in at the halfway mark.
|
|
55
|
+
|
|
56
|
+
TIP: Put your phone in another room or face-down.
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### 3. Brain Dump Processor
|
|
60
|
+
Capture chaotic thoughts and organize them into actionable items.
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
User: Brain dump: need to email boss, dog vet appointment, buy groceries, project deadline friday, call mom, fix website bug, dentist, taxes
|
|
64
|
+
Assistant:
|
|
65
|
+
📝 Brain Dump Organized!
|
|
66
|
+
|
|
67
|
+
🔴 URGENT (Do today):
|
|
68
|
+
□ Email boss
|
|
69
|
+
□ Fix website bug (deadline Friday)
|
|
70
|
+
|
|
71
|
+
🟡 THIS WEEK:
|
|
72
|
+
□ Project deadline - Friday
|
|
73
|
+
□ Call mom
|
|
74
|
+
□ Buy groceries
|
|
75
|
+
|
|
76
|
+
📅 SCHEDULE THESE:
|
|
77
|
+
□ Dog vet appointment → When was the last visit?
|
|
78
|
+
□ Dentist → When's a good day?
|
|
79
|
+
|
|
80
|
+
📋 CAN WAIT:
|
|
81
|
+
□ Taxes → When are they due?
|
|
82
|
+
|
|
83
|
+
Start with: Email your boss. It'll take 5 minutes and you'll feel relief.
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### 4. Gentle Accountability
|
|
87
|
+
Check-ins without shame or judgment.
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
Assistant: Hey! You mentioned you were going to email your boss. How's that going?
|
|
91
|
+
|
|
92
|
+
Options:
|
|
93
|
+
a) ✅ Done! (Amazing!)
|
|
94
|
+
b) 🔄 Working on it (Great, keep going!)
|
|
95
|
+
c) 😅 Haven't started yet (No judgment - let's figure out the blocker)
|
|
96
|
+
d) 🔀 Priorities changed (Totally valid, let's replan)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### 5. Transition Support
|
|
100
|
+
Help moving between tasks (a common ADHD struggle).
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
User: I finished the email but now I can't switch to coding
|
|
104
|
+
Assistant:
|
|
105
|
+
Transition time! Here's a quick bridge:
|
|
106
|
+
|
|
107
|
+
1. ✅ Close your email tab (physically do it now)
|
|
108
|
+
2. 🧍 Stand up and stretch for 30 seconds
|
|
109
|
+
3. 💧 Get a glass of water
|
|
110
|
+
4. 💻 Open your code editor (just open it, don't code yet)
|
|
111
|
+
5. 📝 Write ONE comment about what you need to do first
|
|
112
|
+
|
|
113
|
+
That's it. The hardest part is opening the file. You got this.
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## ADHD-Specific Strategies
|
|
117
|
+
|
|
118
|
+
| Strategy | When to Use | How It Helps |
|
|
119
|
+
|----------|------------|--------------|
|
|
120
|
+
| **2-Minute Rule** | Task feels too big | If it takes < 2 min, do it now |
|
|
121
|
+
| **Body Doubling** | Can't start alone | AI works "alongside" you |
|
|
122
|
+
| **External Timer** | Time blindness | Visible countdown + check-ins |
|
|
123
|
+
| **Task Batching** | Context switching issues | Group similar tasks together |
|
|
124
|
+
| **Reward Linking** | No motivation | Pair boring task with enjoyable one |
|
|
125
|
+
| **Decision Reduction** | Decision fatigue | AI picks the next task for you |
|
|
126
|
+
|
|
127
|
+
## Usage Modes
|
|
128
|
+
|
|
129
|
+
### Quick Mode
|
|
130
|
+
```
|
|
131
|
+
User: Pick something for me to do
|
|
132
|
+
Assistant: Based on what you told me earlier:
|
|
133
|
+
→ Email your boss about the Friday deadline (5 minutes, high impact)
|
|
134
|
+
Just hit reply and write 2-3 sentences. Go!
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Planning Mode
|
|
138
|
+
```
|
|
139
|
+
User: Help me plan my week
|
|
140
|
+
Assistant: Let's keep this simple - no elaborate systems.
|
|
141
|
+
|
|
142
|
+
Monday Focus: [1 big thing]
|
|
143
|
+
Tuesday Focus: [1 big thing]
|
|
144
|
+
...
|
|
145
|
+
Daily non-negotiables: [2-3 tiny habits]
|
|
146
|
+
Permission to skip: Everything else
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
### Crisis Mode
|
|
150
|
+
```
|
|
151
|
+
User: Everything is due and I'm panicking
|
|
152
|
+
Assistant: OK. Stop. Breathe.
|
|
153
|
+
|
|
154
|
+
Here's what we're doing RIGHT NOW:
|
|
155
|
+
1. Nothing is on fire (even if it feels like it)
|
|
156
|
+
2. List everything that's "due" - I'll help prioritize
|
|
157
|
+
3. We'll pick THE ONE thing that matters most
|
|
158
|
+
4. You'll work on just that for 25 minutes
|
|
159
|
+
|
|
160
|
+
What's due? Let's get it out of your head.
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## Clamper Integration
|
|
164
|
+
|
|
165
|
+
When the user shows signs of ADHD-related challenges:
|
|
166
|
+
1. Use encouraging, non-judgmental language
|
|
167
|
+
2. Break everything into the smallest possible steps
|
|
168
|
+
3. Offer choices instead of long lists
|
|
169
|
+
4. Check in periodically but respect their autonomy
|
|
170
|
+
5. Celebrate small wins genuinely
|
|
171
|
+
6. Never say "just do it" or "it's easy"
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: AgentHire
|
|
3
|
+
description: AI agent recruitment platform - find, evaluate, and deploy specialized AI agents
|
|
4
|
+
author: lngdao
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
tier: pro
|
|
7
|
+
category: AI Services
|
|
8
|
+
tags: [ai-agents, automation, hiring, multi-agent, orchestration]
|
|
9
|
+
triggers: [hire agent, ai agent, find agent, deploy agent, agent marketplace]
|
|
10
|
+
api_auth: none
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# AgentHire
|
|
14
|
+
|
|
15
|
+
Find and deploy specialized AI agents for specific tasks. AgentHire acts as a recruitment platform for AI agents, matching your task requirements with the best available agent.
|
|
16
|
+
|
|
17
|
+
## Overview
|
|
18
|
+
|
|
19
|
+
Instead of one general-purpose AI, AgentHire connects you with specialized agents optimized for specific domains:
|
|
20
|
+
|
|
21
|
+
- **Research Agent** - Deep web research, academic papers, data gathering
|
|
22
|
+
- **Code Agent** - Code generation, debugging, refactoring, code review
|
|
23
|
+
- **Writing Agent** - Content creation, copywriting, editing, translation
|
|
24
|
+
- **Data Agent** - Data analysis, visualization, statistical modeling
|
|
25
|
+
- **Design Agent** - UI/UX suggestions, layout critique, design systems
|
|
26
|
+
- **Marketing Agent** - Campaign planning, SEO, social media strategy
|
|
27
|
+
- **Finance Agent** - Financial analysis, budgeting, forecasting
|
|
28
|
+
- **Legal Agent** - Contract review, compliance checking, legal research
|
|
29
|
+
|
|
30
|
+
## How It Works
|
|
31
|
+
|
|
32
|
+
1. **Describe Your Task** - Explain what you need accomplished
|
|
33
|
+
2. **Agent Matching** - AgentHire evaluates which specialized agent is best suited
|
|
34
|
+
3. **Agent Deployment** - The matched agent is deployed with task-specific context
|
|
35
|
+
4. **Result Delivery** - Receive structured output from the specialized agent
|
|
36
|
+
|
|
37
|
+
## Agent Profiles
|
|
38
|
+
|
|
39
|
+
### Research Agent
|
|
40
|
+
```
|
|
41
|
+
Specialties: Web research, literature review, competitive analysis
|
|
42
|
+
Input: Research question or topic
|
|
43
|
+
Output: Structured report with sources
|
|
44
|
+
Best for: Market research, fact-checking, academic reviews
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Code Agent
|
|
48
|
+
```
|
|
49
|
+
Specialties: Python, JavaScript, TypeScript, Rust, Go
|
|
50
|
+
Input: Code task description or existing code
|
|
51
|
+
Output: Working code with tests and documentation
|
|
52
|
+
Best for: Feature development, bug fixes, code review
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Writing Agent
|
|
56
|
+
```
|
|
57
|
+
Specialties: Blog posts, marketing copy, technical docs, creative writing
|
|
58
|
+
Input: Topic, tone, audience, length requirements
|
|
59
|
+
Output: Polished content ready for publishing
|
|
60
|
+
Best for: Content marketing, documentation, newsletters
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Data Agent
|
|
64
|
+
```
|
|
65
|
+
Specialties: SQL, Python/Pandas, data visualization, ML models
|
|
66
|
+
Input: Dataset + analysis question
|
|
67
|
+
Output: Analysis report with charts and insights
|
|
68
|
+
Best for: Business intelligence, reporting, predictive analytics
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Usage Examples
|
|
72
|
+
|
|
73
|
+
### Hire a research agent
|
|
74
|
+
```
|
|
75
|
+
User: I need an agent to research the current state of electric vehicle batteries
|
|
76
|
+
Assistant: Deploying Research Agent for your task...
|
|
77
|
+
|
|
78
|
+
🤖 Research Agent Deployed
|
|
79
|
+
Task: EV Battery Technology Research
|
|
80
|
+
Scope: Current state, key players, recent breakthroughs, market trends
|
|
81
|
+
|
|
82
|
+
The Research Agent will compile:
|
|
83
|
+
1. Technology overview (solid-state, lithium-ion, sodium-ion)
|
|
84
|
+
2. Key companies and their progress
|
|
85
|
+
3. Recent breakthroughs (last 6 months)
|
|
86
|
+
4. Market projections
|
|
87
|
+
5. Sources and references
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Hire a code review agent
|
|
91
|
+
```
|
|
92
|
+
User: I need someone to review my Python API code for security issues
|
|
93
|
+
Assistant: Deploying Code Agent (Security Focus)...
|
|
94
|
+
|
|
95
|
+
🤖 Code Agent Deployed
|
|
96
|
+
Mode: Security Audit
|
|
97
|
+
Language: Python
|
|
98
|
+
Focus areas: Input validation, authentication, SQL injection, XSS, dependency vulnerabilities
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Multi-Agent Workflows
|
|
102
|
+
|
|
103
|
+
AgentHire supports chaining agents for complex tasks:
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
User: Research competitors, then write a blog post about our advantages
|
|
107
|
+
Assistant:
|
|
108
|
+
Step 1: Research Agent → Competitive analysis report
|
|
109
|
+
Step 2: Writing Agent → Blog post using research findings
|
|
110
|
+
|
|
111
|
+
Deploying pipeline: Research Agent → Writing Agent
|
|
112
|
+
Estimated completion: 10 minutes
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Clamper Integration
|
|
116
|
+
|
|
117
|
+
When the user describes a complex task:
|
|
118
|
+
1. Analyze the task requirements and domain
|
|
119
|
+
2. Recommend the best agent (or agent pipeline)
|
|
120
|
+
3. Deploy with task-specific configuration
|
|
121
|
+
4. Monitor progress and deliver results
|
|
122
|
+
5. Allow user to provide feedback for agent improvement
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: AI Daily Briefing
|
|
3
|
+
description: Personalized daily news and task briefing - weather, calendar, news, and priorities
|
|
4
|
+
author: jeffjhunter
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
tier: pro
|
|
7
|
+
category: Productivity
|
|
8
|
+
tags: [daily-briefing, news, productivity, morning-routine, summary, digest]
|
|
9
|
+
triggers: [daily briefing, morning briefing, what's happening today, daily digest, news summary, today's agenda]
|
|
10
|
+
api_auth: optional
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# AI Daily Briefing
|
|
14
|
+
|
|
15
|
+
Get a personalized morning briefing combining weather, top news, your calendar events, task priorities, and market data. Configurable sections and delivery time.
|
|
16
|
+
|
|
17
|
+
## Briefing Sections
|
|
18
|
+
|
|
19
|
+
### 1. Weather Forecast
|
|
20
|
+
```
|
|
21
|
+
🌤️ Weather for San Francisco, CA
|
|
22
|
+
Today: 68°F / Partly Cloudy
|
|
23
|
+
High: 72°F | Low: 58°F
|
|
24
|
+
Wind: 12 mph W | Humidity: 65%
|
|
25
|
+
Tomorrow: 70°F / Sunny
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 2. Top News Headlines
|
|
29
|
+
```
|
|
30
|
+
📰 Top Stories
|
|
31
|
+
1. [Tech] OpenAI announces GPT-5 with breakthrough reasoning
|
|
32
|
+
2. [Business] Fed holds interest rates steady at 4.5%
|
|
33
|
+
3. [Science] NASA confirms water ice discovery on Mars
|
|
34
|
+
4. [World] EU passes landmark AI regulation framework
|
|
35
|
+
5. [Sports] Warriors clinch playoff berth with comeback win
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### 3. Calendar Overview
|
|
39
|
+
```
|
|
40
|
+
📅 Today's Schedule
|
|
41
|
+
09:00 - Team standup (Zoom)
|
|
42
|
+
11:00 - Client call with Acme Corp
|
|
43
|
+
12:30 - Lunch with Sarah
|
|
44
|
+
14:00 - Sprint planning
|
|
45
|
+
16:00 - Dentist appointment
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### 4. Task Priorities
|
|
49
|
+
```
|
|
50
|
+
✅ Priority Tasks
|
|
51
|
+
🔴 Submit Q1 report (due today)
|
|
52
|
+
🔴 Review PR #234 (blocking release)
|
|
53
|
+
🟡 Update documentation
|
|
54
|
+
🟡 Reply to vendor email
|
|
55
|
+
🟢 Research new CI/CD tools
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### 5. Market Summary (Optional)
|
|
59
|
+
```
|
|
60
|
+
📈 Markets
|
|
61
|
+
S&P 500: 5,234.18 (+0.8%)
|
|
62
|
+
NASDAQ: 16,428.82 (+1.2%)
|
|
63
|
+
BTC: $67,432 (+2.1%)
|
|
64
|
+
ETH: $3,891 (-0.3%)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Configuration
|
|
68
|
+
|
|
69
|
+
### Briefing Config
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"location": "San Francisco, CA",
|
|
73
|
+
"sections": ["weather", "news", "calendar", "tasks", "markets"],
|
|
74
|
+
"news_categories": ["tech", "business", "science"],
|
|
75
|
+
"news_count": 5,
|
|
76
|
+
"calendar_source": "google",
|
|
77
|
+
"market_symbols": ["SPY", "QQQ", "BTC-USD"],
|
|
78
|
+
"delivery_time": "07:00",
|
|
79
|
+
"timezone": "America/Los_Angeles"
|
|
80
|
+
}
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### Data Sources
|
|
84
|
+
|
|
85
|
+
| Section | Source | Auth Required |
|
|
86
|
+
|---------|--------|--------------|
|
|
87
|
+
| Weather | OpenWeatherMap API | API key (free tier) |
|
|
88
|
+
| News | NewsAPI, GNews, or RSS feeds | API key (free tier) |
|
|
89
|
+
| Calendar | Google Calendar API | OAuth |
|
|
90
|
+
| Tasks | Todoist, Notion, or local | Varies |
|
|
91
|
+
| Markets | Yahoo Finance API | None |
|
|
92
|
+
|
|
93
|
+
## Setup
|
|
94
|
+
|
|
95
|
+
### Environment Variables
|
|
96
|
+
```bash
|
|
97
|
+
export BRIEFING_LOCATION="San Francisco, CA"
|
|
98
|
+
export OPENWEATHER_API_KEY="your_key"
|
|
99
|
+
export NEWS_API_KEY="your_key"
|
|
100
|
+
export GOOGLE_CALENDAR_ID="primary"
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Usage Examples
|
|
104
|
+
|
|
105
|
+
### Full morning briefing
|
|
106
|
+
```
|
|
107
|
+
User: Give me my morning briefing
|
|
108
|
+
Assistant:
|
|
109
|
+
|
|
110
|
+
☀️ Good morning! Here's your briefing for Monday, March 1, 2026:
|
|
111
|
+
|
|
112
|
+
🌤️ WEATHER — San Francisco
|
|
113
|
+
Currently 62°F, partly cloudy. High of 71°F today.
|
|
114
|
+
No rain expected. Great day to go outside!
|
|
115
|
+
|
|
116
|
+
📰 TOP NEWS
|
|
117
|
+
1. SpaceX Starship completes first orbital refueling test
|
|
118
|
+
2. Apple announces M5 chip with 3nm architecture
|
|
119
|
+
3. Senate passes bipartisan infrastructure bill
|
|
120
|
+
...
|
|
121
|
+
|
|
122
|
+
📅 YOUR DAY
|
|
123
|
+
• 09:00 - Team standup
|
|
124
|
+
• 11:00 - Client call (prep the demo!)
|
|
125
|
+
• 14:00 - Sprint planning
|
|
126
|
+
|
|
127
|
+
✅ TOP PRIORITIES
|
|
128
|
+
🔴 Q1 report due TODAY
|
|
129
|
+
🟡 3 unread Slack messages from your manager
|
|
130
|
+
|
|
131
|
+
Have a productive day! ☕
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Custom briefing
|
|
135
|
+
```
|
|
136
|
+
User: Just give me weather and news, skip the rest
|
|
137
|
+
Assistant: *delivers only weather and news sections*
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Evening recap
|
|
141
|
+
```
|
|
142
|
+
User: How did today go?
|
|
143
|
+
Assistant:
|
|
144
|
+
|
|
145
|
+
📊 Today's Recap — March 1, 2026
|
|
146
|
+
|
|
147
|
+
✅ Completed: 4/6 tasks
|
|
148
|
+
📅 Attended: 3/3 meetings
|
|
149
|
+
📧 Emails: 12 sent, 34 received
|
|
150
|
+
⏱️ Focus time: ~3.5 hours
|
|
151
|
+
|
|
152
|
+
Tomorrow's first priority: Finish Q1 report (carried over)
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
## Clamper Integration
|
|
156
|
+
|
|
157
|
+
When the user asks for a briefing:
|
|
158
|
+
1. Check configured sections and data sources
|
|
159
|
+
2. Fetch data from each source in parallel
|
|
160
|
+
3. Format into a clean, scannable briefing
|
|
161
|
+
4. Highlight urgent items (overdue tasks, severe weather, breaking news)
|
|
162
|
+
5. Keep it concise - the briefing should take < 2 minutes to read
|