Update antfarm, ashboard, dashboard +3 more (+3 ~6)

This commit is contained in:
Echo
2026-02-10 12:52:23 +00:00
parent c1d4ed1b03
commit c7bea57cd3
9 changed files with 265 additions and 30 deletions

21
memory/2026-02-10.md Normal file
View File

@@ -0,0 +1,21 @@
# 2026-02-10
## Dashboard ANAF - Detalii Modificări
**Context:** Marius a cerut să vadă ce modificări detectează ANAF Monitor în dashboard, nu doar mesaj generic "Modificări detectate".
**Implementare:**
1. **monitor_v2.py** - modificat `update_dashboard_status()` să salveze detalii în `status.json`:
- Nume pagină modificată
- URL către pagina ANAF
- Rezumat modificări (ex: "Soft A: 09.02.2026 → 10.02.2026")
2. **dashboard/index.html** - modificat `loadAnafStatus()` să afișeze detaliile:
- Link-uri clickabile către paginile ANAF
- Lista modificărilor pentru fiecare pagină
- Expandabil în secțiunea ANAF Monitor
**Modificare reală detectată astăzi:**
- D100 (Declarația 100) - Soft A: 09.02.2026 → 10.02.2026
**Status:** Implementat, netestat în browser. Așteaptă commit.

View File

@@ -1,5 +1,48 @@
{
"notes": [
{
"file": "notes-data/tools/antfarm-workflow.md",
"title": "Antfarm Workflow - Echo",
"date": "2026-02-10",
"tags": [],
"domains": [],
"types": [],
"category": "tools",
"project": null,
"subdir": null,
"video": "",
"tldr": "**Update:** După ce învăț fluxul mai bine"
},
{
"file": "memory/provocare-azi.md",
"title": "Provocarea Zilei - 2026-02-08",
"date": "2026-02-10",
"tags": [],
"domains": [],
"types": [
"memory"
],
"category": "memory",
"project": null,
"subdir": null,
"video": "",
"tldr": "- Monica Ion - Legea Fractalilor (Cele 7 Legi Universale)"
},
{
"file": "memory/2026-02-10.md",
"title": "2026-02-10",
"date": "2026-02-10",
"tags": [],
"domains": [],
"types": [
"memory"
],
"category": "memory",
"project": null,
"subdir": null,
"video": "",
"tldr": "**Status:** Aștept confirmare de la Marius să lansez `antfarm workflow run feature-dev`."
},
{
"file": "notes-data/coaching/2026-02-09-seara.md",
"title": "Gândul de Seară - Duminică, 9 Februarie 2026",
@@ -813,21 +856,6 @@
"video": "https://moltbot.tailf7372d.ts.net/echo/files.html#memory/kb/articole/monica-ion/cele-7-legi-universale.md",
"tldr": "Cele 7 Legi Universale sunt principii fundamentale care explică cum funcționează mintea, de ce trăim viața așa cum o trăim și cum putem genera transformare reală. Fiecare lege este susținută de istori..."
},
{
"file": "memory/provocare-azi.md",
"title": "Provocarea Zilei - 2026-02-08",
"date": "2026-02-08",
"tags": [],
"domains": [],
"types": [
"memory"
],
"category": "memory",
"project": null,
"subdir": null,
"video": "",
"tldr": "- Monica Ion - Legea Fractalilor (Cele 7 Legi Universale)"
},
{
"file": "memory/jurnal-motivatie.md",
"title": "Jurnal - Drumul spre regăsirea motivației",
@@ -3346,7 +3374,7 @@
}
],
"stats": {
"total": 194,
"total": 196,
"by_domain": {
"work": 59,
"health": 34,
@@ -3365,9 +3393,9 @@
"projects": 85,
"reflectii": 3,
"retete": 1,
"tools": 5,
"tools": 6,
"youtube": 42,
"memory": 16
"memory": 17
}
},
"domains": [

View File

@@ -0,0 +1,87 @@
# Antfarm Workflow - Echo
**Instalat:** github.com/snarktank/antfarm
**CLI:** `antfarm` (în PATH, global)
**Dashboard:** https://moltbot.tailf7372d.ts.net:3333
**Docs:** ~/clawd/antfarm/README.md, ~/clawd/antfarm/docs/creating-workflows.md
---
## Flux rapid (pentru Echo)
### 1. Primesc request de la Marius
**EX:** "Vreau să construiesc un Habit tracker în dashboard"
### 2. Lansez direct workflow-ul cu promptul lui Marius
```bash
cd ~/clawd
antfarm workflow run feature-dev "<prompt exact de la Marius>"
```
**NU:**
- ✗ Verific dacă e instalat (e instalat, permanent)
- ✗ Fac eu requirements/acceptance criteria (planner-ul face asta)
- ✗ Complicez task string-ul (simplitate = mai bine)
**DA:**
- ✓ Trimit prompt-ul EXACT cum îl primesc de la Marius
- ✓ Planner-ul descompune în stories automat
- ✓ Developer-ul decide tehnologii/structură
### 3. Monitorez progres
```bash
antfarm workflow status <run-id sau substring>
antfarm workflow runs # listă toate
```
### 4. Raportez când e gata
Agenții lucrează autonom (polling 15 min). Raportez când:
- Stories finalizate
- Erori care necesită intervenție
- PR creat pentru review
---
## Workflows disponibile
| Workflow | Când să-l folosesc |
|----------|-------------------|
| `feature-dev` | Features noi, refactoring, îmbunătățiri |
| `bug-fix` | Bug-uri cu pași de reproducere |
| `security-audit` | Audit securitate codebase |
---
## Comenzi utile
```bash
# Status rapid
antfarm workflow status <query>
# Force trigger agent (skip 15min wait)
cron action=run jobId=antfarm/feature-dev/developer
# Logs
antfarm logs 50
# Resume dacă failuit
antfarm workflow resume <run-id>
# Dashboard
antfarm dashboard status
```
---
## Reguli importante
1. **Task string = prompt exact de la Marius** (nu complica)
2. **Planner face requirements** (nu tu)
3. **Agenții sunt autonomi** (polling 15 min, nu trebuie să-i controlezi)
4. **Monitor dashboard** (https://moltbot.tailf7372d.ts.net:3333)
5. **Raportează doar când e relevant** (finalizare, erori, PR)
---
**Creat:** 2026-02-10
**Update:** După ce învăț fluxul mai bine