agi-farm 3.3.0 → 3.3.1

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 CHANGED
@@ -63,6 +63,27 @@ This keeps upstream diffs visible in PRs so feature ports can be done continuous
63
63
 
64
64
  ---
65
65
 
66
+ ## 🧙 What's New in v3.3.0
67
+
68
+ ### 🚀 Automated Release & Workflow Hardening
69
+
70
+ Version 3.3.0 standardizes the release process and ensures all GitHub workflows are production-ready.
71
+
72
+ #### 🏗️ Automated Dashboard Launch
73
+ - **One-Click Wizard**: The `agi-farm setup` wizard now automatically opens the Paperclip dashboard in your default browser upon successful configuration.
74
+ - **Direct Dependencies**: Added `express` as a core dependency for improved dashboard server stability.
75
+
76
+ #### 🛡️ Workflow & Compatibility Hardening
77
+ - **OpenClaw Compatibility**: Improved version scrubbing (handles `v` prefixes and revision suffixes) for more robust integration testing.
78
+ - **Graceful Installation**: Workflows now handle missing NPM versions gracefully, skipping integration tests if a specific version is not yet published.
79
+ - **Global PATH Reliability**: Ensured global `npm` bin directories are correctly added to `GITHUB_PATH` across all workflow steps.
80
+
81
+ #### 🔐 Security Enhancements
82
+ - **Automated Secret Scrubbing**: Upstream sync scripts (`scripts/sync-lobsterboard-upstream.js`) now redact Google OAuth Client IDs and Secrets to prevent GitHub Push Protection violations.
83
+ - **Refined Command Execution**: All `agi-farm` commands in workflows now use `npx` for guaranteed executability.
84
+
85
+ ---
86
+
66
87
  ## 🧙 What's New in v1.9.0
67
88
 
68
89
  ### 🚀 Advanced Wizard 2.0 — Industry-Driven Automation
@@ -2,7 +2,7 @@
2
2
  "id": "agi-farm",
3
3
  "kind": "team-orchestration",
4
4
  "name": "AGI Farm — Multi-Agent Team Builder",
5
- "version": "3.3.0",
5
+ "version": "3.3.1",
6
6
  "description": "Bootstrap complete multi-agent AI teams with Paperclip dashboard, auto-dispatcher, and infrastructure. Includes interactive wizard, SOUL.md generation, comms setup, cron registration, and OpenClaw gateway integration.",
7
7
  "author": "oabdelmaksoud",
8
8
  "homepage": "https://github.com/oabdelmaksoud/AGI-FARM-PLUGIN",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agi-farm",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Multi-agent AI team builder for OpenClaw — bootstrap complete teams with Paperclip dashboard, auto-dispatcher, and infrastructure",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -0,0 +1,42 @@
1
+ /**
2
+ * AGI Farm Standard Cron Job Definitions
3
+ */
4
+
5
+ export const CRON_DEFS = {
6
+ 'security-scan': {
7
+ id: 'security-scan',
8
+ label: '🛡️ Security Scan',
9
+ description: 'Run automated vulnerability and dependency scan via AgentShield',
10
+ schedule: '0 0 * * *', // Daily at midnight
11
+ agent: 'vigil',
12
+ command: 'npx ecc-agentshield scan --path . --format json'
13
+ },
14
+ 'velocity-report': {
15
+ id: 'velocity-report',
16
+ label: '📈 Velocity Report',
17
+ description: 'Generate weekly team throughput and agent performance metrics',
18
+ schedule: '0 0 * * 0', // Weekly on Sunday
19
+ agent: 'vista',
20
+ command: 'agi-farm status --json > VELOCITY_SNAPSHOT.json'
21
+ },
22
+ 'budget-check': {
23
+ id: 'budget-check',
24
+ label: '💰 Budget Audit',
25
+ description: 'Verify current spend against monthly limits and thresholds',
26
+ schedule: '0 */6 * * *', // Every 6 hours
27
+ agent: 'main',
28
+ command: 'agi-farm status --budget'
29
+ },
30
+ 'memory-summarize': {
31
+ id: 'memory-summarize',
32
+ label: '🧠 Memory Consolidation',
33
+ description: 'Consolidate and index new team knowledge and task logs',
34
+ schedule: '0 2 * * *', // Daily at 2 AM
35
+ agent: 'cipher',
36
+ command: 'agi-farm rebuild --memory-only'
37
+ }
38
+ };
39
+
40
+ export function getAllCrons() {
41
+ return Object.values(CRON_DEFS);
42
+ }