elsabro 2.2.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.
- package/README.md +668 -20
- package/agents/elsabro-orchestrator.md +113 -0
- package/bin/install.js +0 -0
- package/commands/elsabro/execute.md +223 -46
- package/commands/elsabro/start.md +34 -0
- package/commands/elsabro/verify-work.md +29 -0
- package/flows/development-flow.json +452 -0
- package/flows/quick-flow.json +118 -0
- package/hooks/confirm-destructive.sh +145 -0
- package/hooks/hooks-config.json +81 -0
- package/hooks/lint-check.sh +238 -0
- package/hooks/post-edit-test.sh +189 -0
- package/package.json +5 -3
- package/references/SYSTEM_INDEX.md +379 -5
- package/references/agent-marketplace.md +2274 -0
- package/references/agent-protocol.md +1126 -0
- package/references/ai-code-suggestions.md +2413 -0
- package/references/checkpointing.md +595 -0
- package/references/collaboration-patterns.md +851 -0
- package/references/collaborative-sessions.md +1081 -0
- package/references/configuration-management.md +1810 -0
- package/references/cost-tracking.md +1095 -0
- package/references/enterprise-sso.md +2001 -0
- package/references/error-contracts-tests.md +1171 -0
- package/references/error-contracts-v2.md +968 -0
- package/references/error-contracts.md +3102 -0
- package/references/event-driven.md +1031 -0
- package/references/flow-orchestration.md +940 -0
- package/references/flow-visualization.md +1557 -0
- package/references/ide-integrations.md +3513 -0
- package/references/interrupt-system.md +681 -0
- package/references/kubernetes-deployment.md +3099 -0
- package/references/memory-system.md +683 -0
- package/references/mobile-companion.md +3236 -0
- package/references/multi-llm-providers.md +2494 -0
- package/references/multi-project-memory.md +1182 -0
- package/references/observability.md +793 -0
- package/references/output-schemas.md +858 -0
- package/references/parallel-worktrees.md +293 -0
- package/references/performance-profiler.md +955 -0
- package/references/plugin-system.md +1526 -0
- package/references/prompt-management.md +292 -0
- package/references/sandbox-execution.md +303 -0
- package/references/security-system.md +1253 -0
- package/references/streaming.md +696 -0
- package/references/testing-framework.md +1151 -0
- package/references/time-travel.md +802 -0
- package/references/tool-registry.md +886 -0
- package/references/voice-commands.md +3296 -0
- package/scripts/setup-parallel-worktrees.sh +319 -0
- package/skills/memory-update.md +207 -0
- package/skills/review.md +331 -0
- package/skills/techdebt.md +289 -0
- package/skills/tutor.md +219 -0
- package/templates/.planning/notes/.gitkeep +0 -0
- package/templates/CLAUDE.md.template +48 -0
- package/templates/agent-marketplace-config.json +220 -0
- package/templates/agent-protocol-config.json +136 -0
- package/templates/ai-suggestions-config.json +100 -0
- package/templates/checkpoint-state.json +61 -0
- package/templates/collaboration-config.json +157 -0
- package/templates/collaborative-sessions-config.json +153 -0
- package/templates/configuration-config.json +245 -0
- package/templates/cost-tracking-config.json +148 -0
- package/templates/enterprise-sso-config.json +438 -0
- package/templates/error-handling-config.json +79 -2
- package/templates/events-config.json +148 -0
- package/templates/flow-visualization-config.json +196 -0
- package/templates/ide-integrations-config.json +442 -0
- package/templates/kubernetes-config.json +764 -0
- package/templates/memory-state.json +84 -0
- package/templates/mistakes.md.template +52 -0
- package/templates/mobile-companion-config.json +600 -0
- package/templates/multi-llm-config.json +544 -0
- package/templates/multi-project-memory-config.json +145 -0
- package/templates/observability-config.json +109 -0
- package/templates/patterns.md.template +114 -0
- package/templates/performance-profiler-config.json +125 -0
- package/templates/plugin-config.json +170 -0
- package/templates/prompt-management-config.json +86 -0
- package/templates/sandbox-config.json +185 -0
- package/templates/schemas-config.json +65 -0
- package/templates/security-config.json +120 -0
- package/templates/streaming-config.json +72 -0
- package/templates/testing-config.json +81 -0
- package/templates/timetravel-config.json +62 -0
- package/templates/tool-registry-config.json +109 -0
- package/templates/voice-commands-config.json +658 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "3.0.0",
|
|
3
|
+
"projectId": "",
|
|
4
|
+
"createdAt": "",
|
|
5
|
+
"updatedAt": "",
|
|
6
|
+
|
|
7
|
+
"shortTerm": {
|
|
8
|
+
"sessionId": "",
|
|
9
|
+
"startedAt": "",
|
|
10
|
+
"conversation": [],
|
|
11
|
+
"decisions": [],
|
|
12
|
+
"filesAccessed": [],
|
|
13
|
+
"currentContext": {
|
|
14
|
+
"activeTask": "",
|
|
15
|
+
"activePhase": "",
|
|
16
|
+
"focusArea": ""
|
|
17
|
+
},
|
|
18
|
+
"errors": [],
|
|
19
|
+
"recoveryPoints": []
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
"longTerm": {
|
|
23
|
+
"patterns": [],
|
|
24
|
+
"mistakes": [],
|
|
25
|
+
"preferences": {
|
|
26
|
+
"codeStyle": {
|
|
27
|
+
"semicolons": true,
|
|
28
|
+
"quotes": "single",
|
|
29
|
+
"indentation": 2,
|
|
30
|
+
"maxLineLength": 100
|
|
31
|
+
},
|
|
32
|
+
"architecture": {
|
|
33
|
+
"preferredPatterns": [],
|
|
34
|
+
"avoidPatterns": []
|
|
35
|
+
},
|
|
36
|
+
"testing": {
|
|
37
|
+
"framework": "",
|
|
38
|
+
"coverage": 80,
|
|
39
|
+
"style": "describe-it"
|
|
40
|
+
},
|
|
41
|
+
"documentation": {
|
|
42
|
+
"style": "jsdoc",
|
|
43
|
+
"includeExamples": true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"learnings": [],
|
|
47
|
+
"statistics": {
|
|
48
|
+
"totalPatterns": 0,
|
|
49
|
+
"totalMistakes": 0,
|
|
50
|
+
"totalLearnings": 0,
|
|
51
|
+
"lastLearningAt": ""
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
"entity": {
|
|
56
|
+
"files": {},
|
|
57
|
+
"functions": {},
|
|
58
|
+
"components": {},
|
|
59
|
+
"relationships": {},
|
|
60
|
+
"lastScanned": "",
|
|
61
|
+
"scanConfig": {
|
|
62
|
+
"includePatterns": ["src/**/*", "lib/**/*", "app/**/*"],
|
|
63
|
+
"excludePatterns": ["node_modules/**", "dist/**", ".next/**", "coverage/**"]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"contextual": {
|
|
68
|
+
"index": {
|
|
69
|
+
"provider": "local",
|
|
70
|
+
"namespace": "",
|
|
71
|
+
"dimensions": 1536,
|
|
72
|
+
"lastUpdated": "",
|
|
73
|
+
"documentCount": 0
|
|
74
|
+
},
|
|
75
|
+
"sources": [],
|
|
76
|
+
"recentQueries": []
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
"metadata": {
|
|
80
|
+
"elasbroVersion": "3.0.0",
|
|
81
|
+
"memoryVersion": "1.0.0",
|
|
82
|
+
"migrations": []
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Errores Corregidos
|
|
2
|
+
|
|
3
|
+
> Este archivo contiene errores que Claude ha cometido y NO debe repetir.
|
|
4
|
+
> Claude lee este archivo automaticamente al iniciar cada sesion.
|
|
5
|
+
|
|
6
|
+
## Como Agregar Errores
|
|
7
|
+
|
|
8
|
+
Cuando corrijas a Claude, di:
|
|
9
|
+
- "No, hazlo asi..."
|
|
10
|
+
- "Siempre usa X en lugar de Y"
|
|
11
|
+
- "Guarda esto en tu memoria"
|
|
12
|
+
|
|
13
|
+
Claude detectara la correccion y la agregara aqui automaticamente.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## TypeScript / Tipos
|
|
18
|
+
|
|
19
|
+
<!-- Errores de tipado -->
|
|
20
|
+
|
|
21
|
+
## Imports / Modulos
|
|
22
|
+
|
|
23
|
+
<!-- Errores de imports -->
|
|
24
|
+
|
|
25
|
+
## React / Hooks
|
|
26
|
+
|
|
27
|
+
<!-- Errores de React -->
|
|
28
|
+
|
|
29
|
+
## API / Backend
|
|
30
|
+
|
|
31
|
+
<!-- Errores de backend -->
|
|
32
|
+
|
|
33
|
+
## Testing
|
|
34
|
+
|
|
35
|
+
<!-- Errores en tests -->
|
|
36
|
+
|
|
37
|
+
## Git / Workflow
|
|
38
|
+
|
|
39
|
+
<!-- Errores de git -->
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Estadisticas
|
|
44
|
+
|
|
45
|
+
| Categoria | Errores | Ultima Actualizacion |
|
|
46
|
+
|-----------|---------|---------------------|
|
|
47
|
+
| TypeScript | 0 | - |
|
|
48
|
+
| Imports | 0 | - |
|
|
49
|
+
| React | 0 | - |
|
|
50
|
+
| API | 0 | - |
|
|
51
|
+
| Testing | 0 | - |
|
|
52
|
+
| Git | 0 | - |
|