No description
Find a file
AgentePotente 2334e70acd Aggiunti README.md e AGENTS.md
README.md (presentazione sintetica):
- Cos'è framework-translator
- Quick start OpenClaw (installazione via chat con zip)
- Installazione manuale
- Link documentazione
- Tabella test eseguiti

AGENTS.md (istruzioni per agenti LLM):
- Checklist installazione in 5 step
- Verifica pacchetto
- Sposta in workspace
- Verifica installazione
- Leggi SKILL.md
- Conferma all'utente
- Gestione errori

Entrambi i file essenziali per:
- Nuovi utenti (README.md)
- Agenti che installano skill (AGENTS.md)
2026-03-07 11:51:33 +01:00
references Initial commit: framework-translator skill (LLM-native approach) 2026-03-07 10:14:37 +01:00
scripts Initial commit: framework-translator skill (LLM-native approach) 2026-03-07 10:14:37 +01:00
test Riordino repository: test/ con struttura documentata 2026-03-07 11:41:20 +01:00
.gitignore Riordino repository: test/ con struttura documentata 2026-03-07 11:41:20 +01:00
AGENTS.md Aggiunti README.md e AGENTS.md 2026-03-07 11:51:33 +01:00
PIANO_SVILUPPO.md Initial commit: framework-translator skill (LLM-native approach) 2026-03-07 10:14:37 +01:00
README.md Aggiunti README.md e AGENTS.md 2026-03-07 11:51:33 +01:00
RELEASE.md Documentazione release v0.2-test 2026-03-07 11:16:42 +01:00
SKILL.md Aggiornato SKILL.md: Riferimenti a nuova struttura test/ 2026-03-07 11:42:02 +01:00

framework-translator

Trasforma framework testuali complessi in AgentSkills pronte all'uso.


🎯 Cos'è

Framework-translator è una skill per agenti LLM che converte framework documentati (multi-agente, workflow, knowledge base) in suite di AgentSkills eseguibili e standardizzate.

Input: Framework testuale (es. orto_v1/ con 12 agenti, 6 workflow, documentazione)
Output: Suite di AgentSkills (es. orto-skills/ con 7 skills + 11 references)


🚀 Quick Start (OpenClaw)

Installazione via Chat

  1. Scarica il pacchetto:

    git clone ssh://forgejo@git.noelab.it/Robots/framework-translator.git
    cd framework-translator
    zip -r framework-translator.zip .
    
  2. Allega a OpenClaw:

    • Apri chat con il tuo agente OpenClaw
    • Allega framework-translator.zip
    • Scrivi: "Installa questa skill nel tuo workspace"
  3. L'agente eseguirà:

    unzip framework-translator.zip -d ~/.openclaw/workspace/
    
  4. Verifica:

    cd ~/.openclaw/workspace/framework-translator
    ls -la
    

Installazione Manuale

# Clone
git clone ssh://forgejo@git.noelab.it/Robots/framework-translator.git
cd framework-translator

# Sposta in workspace OpenClaw (opzionale)
cp -r . ~/.openclaw/workspace/framework-translator/

# Verifica
ls -la ~/.openclaw/workspace/framework-translator/

📖 Documentazione

File Contenuto
SKILL.md Istruzioni complete per LLM (Fasi 1-5)
test/README.md Come eseguire test su nuovi framework
RELEASE.md Note release (v0.2-test attuale)
AGENTS.md Istruzioni per agenti LLM (installazione)

🧪 Test Eseguiti

Test Framework Skills References Status
#1 orto_v1orto-skills 7/9 (78%) 11/14 (79%) v0.2-test

Dettagli: Vedi test/README.md


🛠️ Uso

Trasformare un Framework

cd ~/.openclaw/workspace/framework-translator

# Chiedi all'agente:
"Esegui framework-translator su /path/to/framework"

L'agente seguirà SKILL.md per:

  1. Analizzare il framework
  2. Proporre mappatura (tua approvazione)
  3. Estrarre knowledge
  4. Generare skills
  5. Creare pacchetto installabile

Output: test/<framework-name>/ con skills + references


📦 Struttura Repository

framework-translator/
├── README.md              # Questo file
├── SKILL.md               # Istruzioni LLM (Fasi 1-5)
├── AGENTS.md              # Istruzioni installazione agenti
├── RELEASE.md             # Note release
├── scripts/               # Script meccanici (bash)
├── test/                  # Test eseguiti
│   ├── README.md
│   └── orto/              # Test: orto_v1 → orto-skills v0.2
└── ...


Licenza: MIT
Autore: AgentePotente (via framework-translator skill)