neuron-inspector 0.2.0 → 0.2.2

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.
@@ -0,0 +1,62 @@
1
+ name: Planner
2
+ version: 1.0.0
3
+ description: >
4
+ The meta-agent. Takes a high-level goal, researches the platform and audience
5
+ using the browser, understands constraints and best practices, then builds a
6
+ campaign plan — or generates a new recipe — before anything is executed.
7
+ This is the planning layer that other recipes should invoke first.
8
+ author: neuron
9
+ tags: [meta, planning, research, strategy, campaign]
10
+
11
+ variables:
12
+ goal:
13
+ prompt: "What do you want to accomplish? Be specific about platform, audience, and objective."
14
+ type: text
15
+ required: true
16
+ example: "Reach 200 Nigerian food enthusiasts on LinkedIn to tell them about our meal ordering app"
17
+ platform:
18
+ prompt: "Primary platform"
19
+ options: [linkedin, x, instagram, tiktok, facebook, web, any]
20
+ default: any
21
+ output_path:
22
+ prompt: "Where to save the plan"
23
+ type: path
24
+ default: "./plans"
25
+ create_recipe:
26
+ prompt: "Generate a reusable recipe from the plan?"
27
+ options: ["yes", "no"]
28
+ default: "no"
29
+
30
+ tools:
31
+ required:
32
+ - neuron_navigate
33
+ - neuron_extract_data
34
+ - neuron_search_traffic
35
+ - neuron_find_elements
36
+ - neuron_scroll
37
+ - neuron_screenshot
38
+ - neuron_click
39
+ - neuron_list_tabs
40
+ optional:
41
+ - neuron_evaluate_js
42
+ - neuron_open_tab
43
+ - neuron_discover_apis
44
+ - neuron_security_scan
45
+ - neuron_recipe_create
46
+
47
+ pipes:
48
+ outputs:
49
+ plan:
50
+ format: markdown
51
+ path: "{{output_path}}/{{date}}-{{goal_slug}}.md"
52
+ description: "Campaign plan with platform constraints, audience analysis, message strategy, pacing, and guardrails"
53
+ constraints:
54
+ format: yaml
55
+ path: "{{output_path}}/{{date}}-{{goal_slug}}-constraints.yaml"
56
+ description: "Platform rate limits, anti-detection rules, and hard boundaries discovered during research"
57
+ inputs: {}
58
+
59
+ limits:
60
+ max_tabs: 6
61
+ max_duration_minutes: 20
62
+ require_human_approval: false