@tuwebai/core
v0.1.7
Published
Core parser, schema, resolver and generators for the Agent DNA standard.
Maintainers
Readme
@agent-dna/core
Core open source de Agent DNA.
Que expone
parseImportedDnaresolveDnabuildYamlPreviewbuildJsonPreviewbuildAgentsPreviewbuildPlatformPreviewsinitialDna
Schema
JSON Schema fuente:
schema/agent-dna.schema.json
Uso
import {
parseImportedDna,
resolveDna,
buildAgentsPreview,
} from "@agent-dna/core";
const state = parseImportedDna(fileContent, "agent-dna.yaml");
const resolved = resolveDna(state, { team: true, project: true }, {
team: {},
project: {},
});
const agents = buildAgentsPreview(resolved);