Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
14cd2ff
community starter pack
abbytec Dec 8, 2025
1540dcd
cleanup kernel interval
abbytec Dec 11, 2025
c94fb1b
better logics and code quality
abbytec Dec 11, 2025
ac68404
feat: BitFlags class
abbytec Dec 11, 2025
9ec3521
enhanced loaders
abbytec Dec 11, 2025
1f64a64
fix stencil not working
abbytec Dec 12, 2025
1579379
fix: tailwind exports
abbytec Dec 12, 2025
edc0acd
configs update...
abbytec Dec 12, 2025
5ed8fd8
some refactors
abbytec Dec 12, 2025
181b51e
more refactors
abbytec Dec 12, 2025
32a454e
fix: isHost/isRemote logics
abbytec Dec 13, 2025
7276d45
enhancement: i18n load per app
abbytec Dec 13, 2025
939346b
feat: lazy load components
abbytec Dec 13, 2025
ef806ba
optimize? some tailwind, idk, its too late on my city. I'm exhausted
abbytec Dec 13, 2025
d1af4af
feat: integration with C++
SoySalwa Dec 13, 2025
5f0b15e
feat: file storage C++
SoySalwa Dec 13, 2025
71829f4
enhancement: update hosting resolving
abbytec Dec 13, 2025
b167486
enhancement: better typing structure
abbytec Dec 13, 2025
c867c61
remove unused disabled apps detection
abbytec Dec 13, 2025
7d45728
enhanced: alias-generator detection
abbytec Dec 14, 2025
859ece1
enhanced: css recognition
abbytec Dec 14, 2025
7a2ab43
enhancement: home page fidelity
abbytec Dec 14, 2025
1a81dac
enhancement: home page fidelity v2
abbytec Dec 14, 2025
b5939fc
feat: buttons update
abbytec Dec 14, 2025
a9a7807
enhancement: finished color-palette
abbytec Dec 14, 2025
2b88b3b
enhancement: finished color-palette
abbytec Dec 14, 2025
3e06f4c
enhancement: improved color-palettes quality
abbytec Dec 15, 2025
1f10fcd
feat: fine tuning home page
abbytec Dec 15, 2025
544c660
enhancement: footer flexibility
abbytec Dec 15, 2025
385358d
feat: add paths and articles pages
abbytec Dec 18, 2025
c30f219
enhancement: content-service structure
abbytec Dec 18, 2025
663e0d6
footer refactor
abbytec Dec 21, 2025
9158dc2
refactor: no-getinstance - first approach
abbytec Dec 21, 2025
4cd0074
fix: duplicated services/providers
abbytec Dec 21, 2025
1c976bf
enhancement: python/cpp wrappers security
abbytec Dec 21, 2025
396e11c
fix: unexpected service lazy inicialization
abbytec Dec 21, 2025
5f6df00
fix: cpp compilation and execution
abbytec Dec 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 0 additions & 71 deletions .claude/parts/providers.md

This file was deleted.

55 changes: 0 additions & 55 deletions .claude/parts/services.md

This file was deleted.

90 changes: 0 additions & 90 deletions .claude/parts/ui-system.md

This file was deleted.

7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,9 @@ npm-debug.log*

.env.development
apps/private
**.pyc
**.pyc
__pycache__

chroma_db_codebase

temp-ui
6 changes: 6 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
"command": "/home/abby/.local/bin/serena-mcp-server",
"args": ["--context", "claude-code", "--project", "/home/abby/Escritorio/proyectos/personales/ADC-platform"],
"env": {}
},
"search_code_vector": {
"type": "stdio",
"command": "/home/abby/Escritorio/scripting/ai/rag/venv/bin/python",
"args": ["/home/abby/Escritorio/scripting/ai/rag/rag_server.py"],
"env": {}
}
},
"enabledMcpjsonServers": [],
Expand Down
42 changes: 10 additions & 32 deletions .serena/memories/task_completion_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,52 +3,30 @@
## Before Considering a Task Complete

### 1. Run TypeScript Check

```bash
npm run typecheck
```

This runs TypeScript compiler + ts-prune for dead code detection.

### 2. Run Linting

```bash
npm run lint
```

Must pass with zero warnings (`--max-warnings 0`).

### 3. Fix Linting Issues (if any)

```bash
npm run lint:fix
```

### 4. Test in Development Mode

### 3. Test in Development Mode
```bash
npm run dev
```

Verify hot reload works and no runtime errors.

### 5. Test in Production Mode (if applicable)

```bash
npm run start:prodtests
```

Verify production build works correctly.

## Critical Documentation Rule

From CLAUDE.md:
## Documentation Updates

> **Si durante una tarea modificas la estructura de carpetas, añades un nuevo servicio/app/provider, o cambias una decisión arquitectónica clave, DEBES actualizar el archivo `CLAUDE.md` y/o los archivos en `.claude/parts/` como parte de tus cambios.**
When modifying a module:
- Update its `README.md` if behavior changes (max 15 lines)
- `config.json` documents dependencies - update if needed

## What to Update When
When adding new modules:
- Create `README.md` in the module directory (ultra-brief)

- New app/service/provider/utility → Update relevant `.claude/parts/*.md`
- Architecture changes → Update `ARCHITECTURE.md`
- New commands → Update `CLAUDE.md` Commands table
- New concepts → Update `CLAUDE.md` Key Concepts table
Architecture changes:
- Update Serena memories for internal details
- Update `CLAUDE.md` only for fundamental concepts
Loading