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.
Files changed (88) hide show
  1. package/README.md +668 -20
  2. package/agents/elsabro-orchestrator.md +113 -0
  3. package/bin/install.js +0 -0
  4. package/commands/elsabro/execute.md +223 -46
  5. package/commands/elsabro/start.md +34 -0
  6. package/commands/elsabro/verify-work.md +29 -0
  7. package/flows/development-flow.json +452 -0
  8. package/flows/quick-flow.json +118 -0
  9. package/hooks/confirm-destructive.sh +145 -0
  10. package/hooks/hooks-config.json +81 -0
  11. package/hooks/lint-check.sh +238 -0
  12. package/hooks/post-edit-test.sh +189 -0
  13. package/package.json +5 -3
  14. package/references/SYSTEM_INDEX.md +379 -5
  15. package/references/agent-marketplace.md +2274 -0
  16. package/references/agent-protocol.md +1126 -0
  17. package/references/ai-code-suggestions.md +2413 -0
  18. package/references/checkpointing.md +595 -0
  19. package/references/collaboration-patterns.md +851 -0
  20. package/references/collaborative-sessions.md +1081 -0
  21. package/references/configuration-management.md +1810 -0
  22. package/references/cost-tracking.md +1095 -0
  23. package/references/enterprise-sso.md +2001 -0
  24. package/references/error-contracts-tests.md +1171 -0
  25. package/references/error-contracts-v2.md +968 -0
  26. package/references/error-contracts.md +3102 -0
  27. package/references/event-driven.md +1031 -0
  28. package/references/flow-orchestration.md +940 -0
  29. package/references/flow-visualization.md +1557 -0
  30. package/references/ide-integrations.md +3513 -0
  31. package/references/interrupt-system.md +681 -0
  32. package/references/kubernetes-deployment.md +3099 -0
  33. package/references/memory-system.md +683 -0
  34. package/references/mobile-companion.md +3236 -0
  35. package/references/multi-llm-providers.md +2494 -0
  36. package/references/multi-project-memory.md +1182 -0
  37. package/references/observability.md +793 -0
  38. package/references/output-schemas.md +858 -0
  39. package/references/parallel-worktrees.md +293 -0
  40. package/references/performance-profiler.md +955 -0
  41. package/references/plugin-system.md +1526 -0
  42. package/references/prompt-management.md +292 -0
  43. package/references/sandbox-execution.md +303 -0
  44. package/references/security-system.md +1253 -0
  45. package/references/streaming.md +696 -0
  46. package/references/testing-framework.md +1151 -0
  47. package/references/time-travel.md +802 -0
  48. package/references/tool-registry.md +886 -0
  49. package/references/voice-commands.md +3296 -0
  50. package/scripts/setup-parallel-worktrees.sh +319 -0
  51. package/skills/memory-update.md +207 -0
  52. package/skills/review.md +331 -0
  53. package/skills/techdebt.md +289 -0
  54. package/skills/tutor.md +219 -0
  55. package/templates/.planning/notes/.gitkeep +0 -0
  56. package/templates/CLAUDE.md.template +48 -0
  57. package/templates/agent-marketplace-config.json +220 -0
  58. package/templates/agent-protocol-config.json +136 -0
  59. package/templates/ai-suggestions-config.json +100 -0
  60. package/templates/checkpoint-state.json +61 -0
  61. package/templates/collaboration-config.json +157 -0
  62. package/templates/collaborative-sessions-config.json +153 -0
  63. package/templates/configuration-config.json +245 -0
  64. package/templates/cost-tracking-config.json +148 -0
  65. package/templates/enterprise-sso-config.json +438 -0
  66. package/templates/error-handling-config.json +79 -2
  67. package/templates/events-config.json +148 -0
  68. package/templates/flow-visualization-config.json +196 -0
  69. package/templates/ide-integrations-config.json +442 -0
  70. package/templates/kubernetes-config.json +764 -0
  71. package/templates/memory-state.json +84 -0
  72. package/templates/mistakes.md.template +52 -0
  73. package/templates/mobile-companion-config.json +600 -0
  74. package/templates/multi-llm-config.json +544 -0
  75. package/templates/multi-project-memory-config.json +145 -0
  76. package/templates/observability-config.json +109 -0
  77. package/templates/patterns.md.template +114 -0
  78. package/templates/performance-profiler-config.json +125 -0
  79. package/templates/plugin-config.json +170 -0
  80. package/templates/prompt-management-config.json +86 -0
  81. package/templates/sandbox-config.json +185 -0
  82. package/templates/schemas-config.json +65 -0
  83. package/templates/security-config.json +120 -0
  84. package/templates/streaming-config.json +72 -0
  85. package/templates/testing-config.json +81 -0
  86. package/templates/timetravel-config.json +62 -0
  87. package/templates/tool-registry-config.json +109 -0
  88. 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 | - |