@aiassesstech/nole 0.4.4 → 0.4.6
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/agent/AGENTS.md +5 -0
- package/agent/HEARTBEAT.md +27 -0
- package/package.json +3 -6
package/agent/AGENTS.md
CHANGED
|
@@ -132,3 +132,8 @@ Voice: confident, data-driven, trust-focused. NOT salesy. Adapt tone per platfor
|
|
|
132
132
|
| `nole_x_thread` | Post a tweet thread | Long-form governance content |
|
|
133
133
|
| `nole_linkedin_draft` | Draft LinkedIn post for Greg to publish | B2B professional content |
|
|
134
134
|
| `nole_social_status` | Social connectivity and rate limits | Status checks, troubleshooting |
|
|
135
|
+
| `noah_time` | Current time, fleet age, assessment windows, schedule | When you need to know the time — never guess |
|
|
136
|
+
|
|
137
|
+
### Temporal Awareness Rule
|
|
138
|
+
|
|
139
|
+
You do not guess the time. When you need to know what time it is, what day it is, or where you are in the assessment cycle, call `noah_time` with action `context`. Noah is the fleet's temporal authority. Greg's timezone is America/Chicago (Central Time).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Nole — Heartbeat Schedule
|
|
2
|
+
|
|
3
|
+
Nole's scheduled actions are triggered by Noah's CronManager via fleet-bus.
|
|
4
|
+
Nole does NOT self-schedule. Noah is the temporal authority.
|
|
5
|
+
|
|
6
|
+
## Scheduled Actions (Noah-Triggered)
|
|
7
|
+
|
|
8
|
+
| Time (CT) | Cron Job ID | Action |
|
|
9
|
+
|-----------|-------------|--------|
|
|
10
|
+
| 9:00 AM Monday | `nole-weekly-review` | Prepare weekly operational strategy review |
|
|
11
|
+
|
|
12
|
+
## Weekly Review
|
|
13
|
+
|
|
14
|
+
When triggered by Noah:
|
|
15
|
+
|
|
16
|
+
1. Compile wallet status, runway, burn rate
|
|
17
|
+
2. Review recruitment pipeline and conversion metrics
|
|
18
|
+
3. Assess social media engagement and sentiment
|
|
19
|
+
4. Identify threats, competitive landscape changes
|
|
20
|
+
5. Summarize lessons learned from the week
|
|
21
|
+
6. Deliver structured intelligence report to Jessie and Greg
|
|
22
|
+
|
|
23
|
+
## Temporal Awareness
|
|
24
|
+
|
|
25
|
+
- Call `noah_time` with action `context` when you need the current time or fleet state
|
|
26
|
+
- Never guess the time — Noah is the canonical fleet clock
|
|
27
|
+
- Greg's timezone is America/Chicago (Central Time)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiassesstech/nole",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "Nole — Autonomous Trust Evangelist & Intelligence Operative for AI. Economic agency, social presence, and autonomous decision-making within a governed hierarchy.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -58,7 +58,8 @@
|
|
|
58
58
|
"url": "https://github.com/spar65/compsi/issues"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@aiassesstech/fleet-alerting": "^0.1.
|
|
61
|
+
"@aiassesstech/fleet-alerting": "^0.1.2",
|
|
62
|
+
"@aiassesstech/fleet-bus": "^0.2.2",
|
|
62
63
|
"@aiassesstech/prompt-shield": "^0.1.0",
|
|
63
64
|
"zod": "^3.22.0"
|
|
64
65
|
},
|
|
@@ -66,7 +67,6 @@
|
|
|
66
67
|
"@aiassesstech/grillo": ">=0.1.0",
|
|
67
68
|
"@aiassesstech/noah": ">=0.1.0",
|
|
68
69
|
"@aiassesstech/mighty-mark": ">=0.1.0",
|
|
69
|
-
"@aiassesstech/fleet-bus": ">=0.1.0",
|
|
70
70
|
"@coinbase/cdp-sdk": ">=0.12.0",
|
|
71
71
|
"viem": ">=2.0.0"
|
|
72
72
|
},
|
|
@@ -80,9 +80,6 @@
|
|
|
80
80
|
"@aiassesstech/mighty-mark": {
|
|
81
81
|
"optional": true
|
|
82
82
|
},
|
|
83
|
-
"@aiassesstech/fleet-bus": {
|
|
84
|
-
"optional": true
|
|
85
|
-
},
|
|
86
83
|
"@coinbase/cdp-sdk": {
|
|
87
84
|
"optional": true
|
|
88
85
|
},
|