- Add mermaid diagrams for agent concepts (reasoning loop, memory hierarchy, etc.) - Reorganize agent documentation pages with improved structure - Add new tutorial content and images - Update API documentation and OpenAPI specs - Add archival memory documentation - Improve getting started guides
24 lines
529 B
JSON
24 lines
529 B
JSON
{
|
|
"name": "docs",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/core/fern",
|
|
"projectType": "application",
|
|
"tags": [],
|
|
"targets": {
|
|
"dev": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "apps/core/fern",
|
|
"command": "fern docs dev"
|
|
}
|
|
},
|
|
"generate-openapi": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "apps/core/fern",
|
|
"command": "ts-node ./scripts/prepare-openapi.ts"
|
|
}
|
|
}
|
|
}
|
|
}
|