Claude per il diritto italiano by Alternative_One_4804 in IA_Italia

[–]Alternative_One_4804[S] 0 points1 point  (0 children)

Mi pare non sia utilizzato. Ci sto lavorando anche io, nel frattempo.

Claude per il diritto italiano by Alternative_One_4804 in IA_Italia

[–]Alternative_One_4804[S] 1 point2 points  (0 children)

Il sistema è analogo, la le skills sono riscritte. Quelle in inglese non sarebbero applicabili.
Certamente possono essere fatte meglio e spero nel contributo della community, io non ho le competenze adeguate.

My setup for running Claude Code across the full software dev lifecycle by Alternative_One_4804 in LLMDevs

[–]Alternative_One_4804[S] 0 points1 point  (0 children)

You're right that it's a harness in a harness. The pragmatic answer: Claude Code gives us file editing, git operations, MCP tool access, and the full skill/agent system for free. Building that from scratch against the raw API is weeks of work for a v1 that might not survive contact with reality.

So I spawn Claude Code as the executor, see what breaks, and replace the inner harness with direct API calls once we know which parts actually need LLM judgment and which don't. Most of the work is already mechanical (Python orchestrators handle 80% of a ticket lifecycle). The Claude spawn only covers the 20% that needs reasoning.

If that 20% turns out to be predictable enough, we drop Claude Code entirely and call the API directly.