elsabro 2.3.0 → 3.7.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.
Files changed (67) hide show
  1. package/README.md +668 -20
  2. package/bin/install.js +0 -0
  3. package/flows/development-flow.json +452 -0
  4. package/flows/quick-flow.json +118 -0
  5. package/package.json +3 -2
  6. package/references/SYSTEM_INDEX.md +379 -5
  7. package/references/agent-marketplace.md +2274 -0
  8. package/references/agent-protocol.md +1126 -0
  9. package/references/ai-code-suggestions.md +2413 -0
  10. package/references/checkpointing.md +595 -0
  11. package/references/collaboration-patterns.md +851 -0
  12. package/references/collaborative-sessions.md +1081 -0
  13. package/references/configuration-management.md +1810 -0
  14. package/references/cost-tracking.md +1095 -0
  15. package/references/enterprise-sso.md +2001 -0
  16. package/references/error-contracts-v2.md +968 -0
  17. package/references/event-driven.md +1031 -0
  18. package/references/flow-orchestration.md +940 -0
  19. package/references/flow-visualization.md +1557 -0
  20. package/references/ide-integrations.md +3513 -0
  21. package/references/interrupt-system.md +681 -0
  22. package/references/kubernetes-deployment.md +3099 -0
  23. package/references/memory-system.md +683 -0
  24. package/references/mobile-companion.md +3236 -0
  25. package/references/multi-llm-providers.md +2494 -0
  26. package/references/multi-project-memory.md +1182 -0
  27. package/references/observability.md +793 -0
  28. package/references/output-schemas.md +858 -0
  29. package/references/performance-profiler.md +955 -0
  30. package/references/plugin-system.md +1526 -0
  31. package/references/prompt-management.md +292 -0
  32. package/references/sandbox-execution.md +303 -0
  33. package/references/security-system.md +1253 -0
  34. package/references/streaming.md +696 -0
  35. package/references/testing-framework.md +1151 -0
  36. package/references/time-travel.md +802 -0
  37. package/references/tool-registry.md +886 -0
  38. package/references/voice-commands.md +3296 -0
  39. package/templates/agent-marketplace-config.json +220 -0
  40. package/templates/agent-protocol-config.json +136 -0
  41. package/templates/ai-suggestions-config.json +100 -0
  42. package/templates/checkpoint-state.json +61 -0
  43. package/templates/collaboration-config.json +157 -0
  44. package/templates/collaborative-sessions-config.json +153 -0
  45. package/templates/configuration-config.json +245 -0
  46. package/templates/cost-tracking-config.json +148 -0
  47. package/templates/enterprise-sso-config.json +438 -0
  48. package/templates/events-config.json +148 -0
  49. package/templates/flow-visualization-config.json +196 -0
  50. package/templates/ide-integrations-config.json +442 -0
  51. package/templates/kubernetes-config.json +764 -0
  52. package/templates/memory-state.json +84 -0
  53. package/templates/mobile-companion-config.json +600 -0
  54. package/templates/multi-llm-config.json +544 -0
  55. package/templates/multi-project-memory-config.json +145 -0
  56. package/templates/observability-config.json +109 -0
  57. package/templates/performance-profiler-config.json +125 -0
  58. package/templates/plugin-config.json +170 -0
  59. package/templates/prompt-management-config.json +86 -0
  60. package/templates/sandbox-config.json +185 -0
  61. package/templates/schemas-config.json +65 -0
  62. package/templates/security-config.json +120 -0
  63. package/templates/streaming-config.json +72 -0
  64. package/templates/testing-config.json +81 -0
  65. package/templates/timetravel-config.json +62 -0
  66. package/templates/tool-registry-config.json +109 -0
  67. package/templates/voice-commands-config.json +658 -0
@@ -0,0 +1,65 @@
1
+ {
2
+ "schemas": {
3
+ "version": "1.0.0",
4
+
5
+ "validation": {
6
+ "strict": true,
7
+ "coerceTypes": true,
8
+ "applyDefaults": true,
9
+ "removeAdditional": false,
10
+ "retryOnError": true,
11
+ "maxRetries": 2
12
+ },
13
+
14
+ "customSchemas": {
15
+ "directory": ".planning/schemas/",
16
+ "autoLoad": true,
17
+ "watchForChanges": false
18
+ },
19
+
20
+ "agentDefaults": {
21
+ "elsabro-analyst": "analysis",
22
+ "elsabro-executor": "implementation",
23
+ "elsabro-verifier": "verification",
24
+ "elsabro-planner": "plan",
25
+ "elsabro-qa": "verification",
26
+ "elsabro-debugger": "implementation",
27
+ "code-reviewer": "review",
28
+ "pr-review-toolkit:code-reviewer": "review",
29
+ "pr-review-toolkit:silent-failure-hunter": "review",
30
+ "Explore": "analysis",
31
+ "Plan": "plan",
32
+ "feature-dev:code-explorer": "analysis",
33
+ "feature-dev:code-architect": "plan"
34
+ },
35
+
36
+ "predefinedSchemas": {
37
+ "analysis": {
38
+ "description": "Output schema for analysis agents",
39
+ "requiredFields": ["summary", "files", "recommendations"]
40
+ },
41
+ "implementation": {
42
+ "description": "Output schema for implementation agents",
43
+ "requiredFields": ["success"]
44
+ },
45
+ "review": {
46
+ "description": "Output schema for code review agents",
47
+ "requiredFields": ["approved", "issues", "summary", "recommendation"]
48
+ },
49
+ "verification": {
50
+ "description": "Output schema for verification agents",
51
+ "requiredFields": ["passed", "tests", "typescript", "lint"]
52
+ },
53
+ "plan": {
54
+ "description": "Output schema for planning agents",
55
+ "requiredFields": ["phases"]
56
+ }
57
+ },
58
+
59
+ "errorHandling": {
60
+ "onValidationFail": "retry",
61
+ "fallbackBehavior": "warn",
62
+ "logErrors": true
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,120 @@
1
+ {
2
+ "security": {
3
+ "enabled": true,
4
+ "version": "1.0.0",
5
+
6
+ "rbac": {
7
+ "enabled": true,
8
+ "defaultRole": "agent:explore",
9
+ "enforceOnAgents": true,
10
+ "enforceOnTools": true,
11
+ "builtinRoles": {
12
+ "admin": { "enabled": true },
13
+ "agent:explore": { "enabled": true },
14
+ "agent:implement": { "enabled": true },
15
+ "agent:review": { "enabled": true }
16
+ },
17
+ "inheritance": {
18
+ "enabled": true,
19
+ "maxDepth": 5
20
+ }
21
+ },
22
+
23
+ "secrets": {
24
+ "enabled": true,
25
+ "vaultPath": ".elsabro/vault.enc",
26
+ "encryption": {
27
+ "algorithm": "aes-256-gcm",
28
+ "keyDerivation": "scrypt"
29
+ },
30
+ "rotation": {
31
+ "enabled": true,
32
+ "checkInterval": 86400000,
33
+ "notifyBefore": 7,
34
+ "autoRotate": false
35
+ },
36
+ "access": {
37
+ "logAccess": true,
38
+ "requirePrincipal": true,
39
+ "maxAccessPerHour": 100
40
+ }
41
+ },
42
+
43
+ "audit": {
44
+ "enabled": true,
45
+ "logPath": ".elsabro/audit.log",
46
+ "maxMemoryEvents": 10000,
47
+ "retention": {
48
+ "days": 90,
49
+ "archivePath": ".elsabro/audit-archive"
50
+ },
51
+ "alerts": {
52
+ "enabled": true,
53
+ "multipleAuthFailures": {
54
+ "threshold": 5,
55
+ "windowMinutes": 5
56
+ },
57
+ "permissionDenialSpike": {
58
+ "threshold": 10,
59
+ "windowMinutes": 1
60
+ },
61
+ "sensitiveAccess": {
62
+ "enabled": true,
63
+ "resources": ["secret:*", "config:*", "admin:*"]
64
+ }
65
+ },
66
+ "export": {
67
+ "formats": ["json", "csv"],
68
+ "autoExport": false
69
+ }
70
+ },
71
+
72
+ "policies": {
73
+ "enabled": true,
74
+ "policiesPath": ".elsabro/policies.json",
75
+ "defaultEffect": "deny",
76
+ "caching": {
77
+ "enabled": true,
78
+ "ttl": 60000
79
+ },
80
+ "rateLimiting": {
81
+ "enabled": true,
82
+ "cleanupInterval": 300000
83
+ },
84
+ "builtinPolicies": [
85
+ {
86
+ "name": "allow-read-all",
87
+ "effect": "allow",
88
+ "principals": ["*"],
89
+ "resources": ["file:*"],
90
+ "actions": ["read"],
91
+ "priority": 1
92
+ },
93
+ {
94
+ "name": "deny-write-system",
95
+ "effect": "deny",
96
+ "principals": ["agent:*"],
97
+ "resources": ["system:*", "config:*"],
98
+ "actions": ["write", "delete"],
99
+ "priority": 100
100
+ }
101
+ ]
102
+ },
103
+
104
+ "sessions": {
105
+ "enabled": true,
106
+ "timeout": 3600000,
107
+ "maxConcurrent": 10,
108
+ "trackActivity": true
109
+ },
110
+
111
+ "encryption": {
112
+ "atRest": true,
113
+ "inTransit": true,
114
+ "keyRotation": {
115
+ "enabled": false,
116
+ "intervalDays": 90
117
+ }
118
+ }
119
+ }
120
+ }
@@ -0,0 +1,72 @@
1
+ {
2
+ "streaming": {
3
+ "enabled": true,
4
+ "mode": "messages",
5
+ "throttle": 100,
6
+ "buffer": true,
7
+ "maxBufferSize": 100,
8
+
9
+ "display": {
10
+ "showProgress": true,
11
+ "showAgents": true,
12
+ "showTimestamps": false,
13
+ "showDurations": true,
14
+ "progressBarWidth": 20,
15
+ "colorize": true,
16
+ "icons": {
17
+ "flow_started": "🚀",
18
+ "flow_complete": "✅",
19
+ "flow_failed": "❌",
20
+ "node_started": "⚙️",
21
+ "node_complete": "✓",
22
+ "agent_started": " ├─",
23
+ "agent_complete": " ├─",
24
+ "progress": "📊",
25
+ "checkpoint": "💾",
26
+ "interrupt": "⏸️",
27
+ "error": "⚠️",
28
+ "warning": "⚡",
29
+ "parallel": "🔀"
30
+ }
31
+ },
32
+
33
+ "formats": {
34
+ "values": {
35
+ "includeState": true,
36
+ "includeTimestamp": true,
37
+ "prettyPrint": false
38
+ },
39
+ "updates": {
40
+ "includeContext": true,
41
+ "includeTimestamp": true
42
+ },
43
+ "messages": {
44
+ "template": "{icon} {message}",
45
+ "progressTemplate": "{icon} Progress: {bar} {percent}%",
46
+ "durationFormat": "auto"
47
+ }
48
+ },
49
+
50
+ "subscribers": {
51
+ "console": {
52
+ "enabled": true,
53
+ "level": "INFO"
54
+ },
55
+ "file": {
56
+ "enabled": false,
57
+ "path": ".planning/stream.log",
58
+ "format": "jsonl"
59
+ },
60
+ "websocket": {
61
+ "enabled": false,
62
+ "port": 8080
63
+ }
64
+ },
65
+
66
+ "filters": {
67
+ "minLevel": "INFO",
68
+ "includeTypes": [],
69
+ "excludeTypes": []
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "testing": {
3
+ "enabled": true,
4
+ "version": "1.0.0",
5
+
6
+ "runner": {
7
+ "testDir": ".elsabro/tests",
8
+ "defaultTimeout": 30000,
9
+ "stopOnFirstFailure": false,
10
+ "retries": 1,
11
+ "parallel": false,
12
+ "maxConcurrent": 4,
13
+ "reporters": ["console", "json"],
14
+ "outputDir": ".elsabro/test-results"
15
+ },
16
+
17
+ "mocks": {
18
+ "defaultLLMResponse": "Mock response",
19
+ "defaultDelay": 0,
20
+ "errorRate": 0,
21
+ "recordCalls": true
22
+ },
23
+
24
+ "simulation": {
25
+ "enabled": true,
26
+ "scenariosDir": ".elsabro/scenarios",
27
+ "defaultPersona": "cooperative",
28
+ "captureCheckpoints": true
29
+ },
30
+
31
+ "assertions": {
32
+ "semanticMatchModel": "haiku",
33
+ "semanticThreshold": 0.8,
34
+ "customAssertions": {}
35
+ },
36
+
37
+ "fixtures": {
38
+ "dir": ".elsabro/fixtures",
39
+ "autoLoad": true,
40
+ "cleanup": true
41
+ },
42
+
43
+ "coverage": {
44
+ "enabled": true,
45
+ "threshold": {
46
+ "agents": 80,
47
+ "flows": 70,
48
+ "tools": 90
49
+ },
50
+ "exclude": ["test/**", "fixtures/**"]
51
+ },
52
+
53
+ "watch": {
54
+ "enabled": true,
55
+ "patterns": ["**/*.test.ts", "**/*.test.json"],
56
+ "debounce": 500
57
+ },
58
+
59
+ "reporting": {
60
+ "console": {
61
+ "enabled": true,
62
+ "verbose": true,
63
+ "colors": true
64
+ },
65
+ "json": {
66
+ "enabled": true,
67
+ "outputPath": ".elsabro/test-results/results.json"
68
+ },
69
+ "html": {
70
+ "enabled": false,
71
+ "outputPath": ".elsabro/test-results/report.html"
72
+ }
73
+ },
74
+
75
+ "ci": {
76
+ "failOnLowCoverage": true,
77
+ "uploadResults": false,
78
+ "annotations": true
79
+ }
80
+ }
81
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "timeTravel": {
3
+ "enabled": true,
4
+ "version": "1.0.0",
5
+
6
+ "timeline": {
7
+ "maxLength": 1000,
8
+ "autoCleanup": true,
9
+ "retentionDays": 30
10
+ },
11
+
12
+ "branches": {
13
+ "maxBranches": 10,
14
+ "autoDeleteOnMerge": false,
15
+ "namingPattern": "whatif_{name}_{timestamp}"
16
+ },
17
+
18
+ "replay": {
19
+ "defaultSpeed": 1.0,
20
+ "minSpeed": 0.1,
21
+ "maxSpeed": 10.0,
22
+ "pauseOnDecision": true,
23
+ "pauseOnError": true,
24
+ "pauseOnInterrupt": true,
25
+ "autoPlay": false,
26
+ "showProgress": true
27
+ },
28
+
29
+ "whatIf": {
30
+ "enabled": true,
31
+ "maxScenarios": 20,
32
+ "autoCompare": true,
33
+ "persistResults": true,
34
+ "cleanupAfterDays": 7
35
+ },
36
+
37
+ "visualization": {
38
+ "showTimestamps": true,
39
+ "showDurations": true,
40
+ "showSummaries": true,
41
+ "compactMode": false,
42
+ "colorize": true,
43
+ "icons": {
44
+ "checkpoint": "●",
45
+ "current": "►",
46
+ "branch": "◆",
47
+ "decision": "◇"
48
+ }
49
+ },
50
+
51
+ "controls": {
52
+ "keyBindings": {
53
+ "first": "Home",
54
+ "last": "End",
55
+ "back": "Left",
56
+ "forward": "Right",
57
+ "play": "Space",
58
+ "pause": "Space"
59
+ }
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "toolRegistry": {
3
+ "enabled": true,
4
+ "version": "1.0.0",
5
+
6
+ "initialization": {
7
+ "autoLoadBuiltins": true,
8
+ "customToolsPath": ".elsabro/tools",
9
+ "watchForChanges": true
10
+ },
11
+
12
+ "registration": {
13
+ "allowDuplicates": false,
14
+ "requireVersion": true,
15
+ "versionStrategy": "semver"
16
+ },
17
+
18
+ "discovery": {
19
+ "caching": {
20
+ "enabled": true,
21
+ "ttl": 300000,
22
+ "maxSize": 1000
23
+ },
24
+ "scoring": {
25
+ "nameMatchWeight": 50,
26
+ "descriptionMatchWeight": 30,
27
+ "capabilityMatchWeight": 25,
28
+ "categoryMatchWeight": 20,
29
+ "usageBonus": 5
30
+ }
31
+ },
32
+
33
+ "capabilities": {
34
+ "predefined": [
35
+ "read",
36
+ "write",
37
+ "edit",
38
+ "search",
39
+ "execute",
40
+ "fetch",
41
+ "delegate",
42
+ "create",
43
+ "delete",
44
+ "list",
45
+ "validate"
46
+ ],
47
+ "allowCustom": true
48
+ },
49
+
50
+ "categories": {
51
+ "predefined": [
52
+ "file-ops",
53
+ "search",
54
+ "system",
55
+ "web",
56
+ "agent",
57
+ "validation",
58
+ "transformation"
59
+ ],
60
+ "allowCustom": true
61
+ },
62
+
63
+ "validation": {
64
+ "strictSchema": true,
65
+ "requireDescription": true,
66
+ "requireCapabilities": true,
67
+ "requireExamples": false,
68
+ "maxParameterCount": 20
69
+ },
70
+
71
+ "versioning": {
72
+ "format": "semver",
73
+ "allowDowngrade": false,
74
+ "requireChangelog": false
75
+ },
76
+
77
+ "deprecation": {
78
+ "warningPeriod": "30d",
79
+ "removalPeriod": "90d",
80
+ "notifyOnUse": true,
81
+ "suggestReplacement": true
82
+ },
83
+
84
+ "usage": {
85
+ "trackCalls": true,
86
+ "trackDuration": true,
87
+ "trackSuccess": true,
88
+ "historySize": 10000
89
+ },
90
+
91
+ "builtinTools": {
92
+ "Bash": { "enabled": true },
93
+ "Read": { "enabled": true },
94
+ "Write": { "enabled": true },
95
+ "Edit": { "enabled": true },
96
+ "Glob": { "enabled": true },
97
+ "Grep": { "enabled": true },
98
+ "Task": { "enabled": true },
99
+ "WebFetch": { "enabled": true },
100
+ "WebSearch": { "enabled": true }
101
+ },
102
+
103
+ "export": {
104
+ "formats": ["json"],
105
+ "includeUsage": true,
106
+ "includeDeprecated": false
107
+ }
108
+ }
109
+ }