neuron-inspector 0.3.2 → 0.4.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/dist/compound-tools.js +307 -0
- package/dist/compound-tools.js.map +1 -1
- package/dist/monitor.d.ts +9 -0
- package/dist/monitor.js +449 -0
- package/dist/monitor.js.map +1 -0
- package/dist/scheduler.d.ts +9 -0
- package/dist/scheduler.js +361 -0
- package/dist/scheduler.js.map +1 -0
- package/dist/server.js +110 -41
- package/dist/server.js.map +1 -1
- package/dist/session-state.d.ts +3 -0
- package/dist/session-state.js +271 -0
- package/dist/session-state.js.map +1 -0
- package/package.json +1 -1
- package/recipes/content-repurposing/agent.md +821 -0
- package/recipes/content-repurposing/learnings.md +552 -0
- package/recipes/content-repurposing/recipe.yaml +166 -0
- package/recipes/email-outreach/agent.md +335 -0
- package/recipes/email-outreach/learnings.md +94 -0
- package/recipes/email-outreach/recipe.yaml +109 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
name: Email Outreach
|
|
2
|
+
version: 1.0.0
|
|
3
|
+
description: >
|
|
4
|
+
Opens Gmail or Outlook in the browser and sends personalized cold emails
|
|
5
|
+
using the logged-in session. No SMTP, no API keys. Researches each target,
|
|
6
|
+
finds personalization hooks, composes unique emails, and sends with human-like
|
|
7
|
+
pacing. Tracks open/reply rates and evolves subject line and body strategy.
|
|
8
|
+
author: neuron
|
|
9
|
+
tags: [email, outreach, gmail, outlook, cold-email, lead-gen]
|
|
10
|
+
|
|
11
|
+
variables:
|
|
12
|
+
email_client:
|
|
13
|
+
prompt: "Which email client to use?"
|
|
14
|
+
options: [gmail, outlook]
|
|
15
|
+
default: gmail
|
|
16
|
+
subject_template:
|
|
17
|
+
prompt: "Subject line direction (not a template — a theme to follow)"
|
|
18
|
+
type: text
|
|
19
|
+
required: true
|
|
20
|
+
example: "Reference something specific from their company/work"
|
|
21
|
+
body_template:
|
|
22
|
+
prompt: "Email body direction (1-2 sentences describing the tone and structure, NOT a literal template)"
|
|
23
|
+
type: text
|
|
24
|
+
required: true
|
|
25
|
+
example: "Short, reference something specific, one clear ask, no 'hope this email finds you well' nonsense"
|
|
26
|
+
sender_name:
|
|
27
|
+
prompt: "Your name (for email signature)"
|
|
28
|
+
type: text
|
|
29
|
+
required: true
|
|
30
|
+
example: "Rasheed Alabi"
|
|
31
|
+
product_context:
|
|
32
|
+
prompt: "What are you reaching out about? Describe the product/service/opportunity in 2-3 sentences."
|
|
33
|
+
type: text
|
|
34
|
+
required: true
|
|
35
|
+
example: "LetsChop is a meal ordering app for Nigerian organizations — handles group food orders, vendor management, and delivery logistics."
|
|
36
|
+
audience_description:
|
|
37
|
+
prompt: "Who should you reach out to? Be specific about role, industry, location, problem they have."
|
|
38
|
+
type: text
|
|
39
|
+
required: true
|
|
40
|
+
example: "HR managers and office managers in Nigerian tech companies that deal with employee meal orders"
|
|
41
|
+
daily_cap:
|
|
42
|
+
prompt: "Max emails per day"
|
|
43
|
+
type: number
|
|
44
|
+
default: 15
|
|
45
|
+
session_cap:
|
|
46
|
+
prompt: "Max emails per session (run)"
|
|
47
|
+
type: number
|
|
48
|
+
default: 5
|
|
49
|
+
min_delay_seconds:
|
|
50
|
+
prompt: "Minimum seconds between emails"
|
|
51
|
+
type: number
|
|
52
|
+
default: 90
|
|
53
|
+
output_path:
|
|
54
|
+
prompt: "Where to save outreach logs"
|
|
55
|
+
type: path
|
|
56
|
+
default: "./email-outreach"
|
|
57
|
+
approval_mode:
|
|
58
|
+
prompt: "Review each email before sending, or auto-send after first 3?"
|
|
59
|
+
options: [review-all, auto-after-3]
|
|
60
|
+
default: review-all
|
|
61
|
+
|
|
62
|
+
tools:
|
|
63
|
+
required:
|
|
64
|
+
- neuron_navigate
|
|
65
|
+
- neuron_find_elements
|
|
66
|
+
- neuron_type
|
|
67
|
+
- neuron_click
|
|
68
|
+
- neuron_scroll
|
|
69
|
+
- neuron_screenshot
|
|
70
|
+
- neuron_evaluate_js
|
|
71
|
+
- neuron_detect_blocker
|
|
72
|
+
- neuron_research_page
|
|
73
|
+
- neuron_monitor_action
|
|
74
|
+
- neuron_session_save
|
|
75
|
+
- neuron_session_load
|
|
76
|
+
- neuron_session_checkpoint
|
|
77
|
+
optional:
|
|
78
|
+
- neuron_open_tab
|
|
79
|
+
- neuron_extract_data
|
|
80
|
+
- neuron_snapshot_state
|
|
81
|
+
- neuron_diff_states
|
|
82
|
+
- neuron_search_traffic
|
|
83
|
+
|
|
84
|
+
pipes:
|
|
85
|
+
outputs:
|
|
86
|
+
outreach_log:
|
|
87
|
+
format: yaml
|
|
88
|
+
path: "{{output_path}}/outreach-log.yaml"
|
|
89
|
+
description: "Running log of all emails sent — recipient, subject, body, timestamp, open/reply status"
|
|
90
|
+
email_drafts:
|
|
91
|
+
format: markdown
|
|
92
|
+
path: "{{output_path}}/drafts.md"
|
|
93
|
+
description: "Archive of all email drafts — subject lines and bodies that were sent"
|
|
94
|
+
inputs:
|
|
95
|
+
campaign_plan:
|
|
96
|
+
from: planner
|
|
97
|
+
output: plan
|
|
98
|
+
description: "Campaign plan with target list, timing strategy, and message approach"
|
|
99
|
+
optional: true
|
|
100
|
+
research_report:
|
|
101
|
+
from: web-researcher
|
|
102
|
+
output: report
|
|
103
|
+
description: "Research on target companies/individuals for personalization"
|
|
104
|
+
optional: true
|
|
105
|
+
|
|
106
|
+
limits:
|
|
107
|
+
max_tabs: 3
|
|
108
|
+
max_duration_minutes: 45
|
|
109
|
+
require_human_approval: true
|