{"id":39763082,"url":"https://github.com/agentic-layer/documentation","last_synced_at":"2026-01-18T11:40:12.079Z","repository":{"id":311601594,"uuid":"1044210353","full_name":"agentic-layer/documentation","owner":"agentic-layer","description":"Agentic layer documentation","archived":false,"fork":false,"pushed_at":"2025-11-25T12:05:59.000Z","size":232,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-28T17:47:46.486Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agentic-layer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-25T10:48:44.000Z","updated_at":"2025-11-25T10:49:50.000Z","dependencies_parsed_at":"2025-08-25T13:29:00.165Z","dependency_job_id":"833a3270-ea33-432c-a007-ba6f93204415","html_url":"https://github.com/agentic-layer/documentation","commit_stats":null,"previous_names":["agentic-layer/documentation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agentic-layer/documentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentic-layer%2Fdocumentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentic-layer%2Fdocumentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentic-layer%2Fdocumentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentic-layer%2Fdocumentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agentic-layer","download_url":"https://codeload.github.com/agentic-layer/documentation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentic-layer%2Fdocumentation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28535174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-18T11:40:12.006Z","updated_at":"2026-01-18T11:40:12.064Z","avatar_url":"https://github.com/agentic-layer.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agentic Layer Documentation\n\nDocumentation platform for the Agentic Layer ecosystem.\n\n---\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n- [Contributing](#contributing)\n- [Project Structure](#project-structure)\n\n---\n\n## Prerequisites\n\nTo work with this documentation project, you'll need the following tools installed on your system:\n\n* **Antora** - Documentation site generator (latest stable version)\n* **Node.js** - Required for Antora and related tooling\n\n---\n\n## Getting Started\n\n```bash\n# Install dependencies\nnpm install\n\n# Build the documentation site using the local playbook\nnpm run build\n\n# Serve the built site locally (will be available at http://localhost:3000)\nnpm run serve\n\n# Build and serve in one command\nnpm run dev\n```\n\n## Contributing\n\nWe welcome contributions to improve the documentation! Here are the guidelines for contributors:\n\n### Architecture Documentation\nArchitecture documentation is located at `architecture/docs` and follows the arc42 template structure. Each section corresponds to a specific aspect of the system architecture. When adding or updating architecture documentation, ensure that you adhere to the arc42 guidelines.\n\n### User Guidlines\nDocumentation for user guidelines, tutorials, how-to guides, references, and explanations is located in the respective repositories `./docs/modules/ROOT/partials`. The pages in the `home` module aggregate this content. If you wish to add content from a new repository simply add it with the following syntax:\n\n``` yml\n# \u003cantora.name\u003e is defined in the antora.yml of the respective module\n\ninclude::\u003cantora.name\u003e:ROOT:partial$tutorials.adoc[]\n```\n\n### Documentation Standards\n\n* **Format**: All documentation is written in AsciiDoc format (.adoc files)\n* **Structure**: Follow the established Antora module structure\n* **Style**: Maintain consistency with existing documentation style and tone\n* **Navigation**: Update navigation files (nav.adoc) when adding new pages\n\n\n\n## Project Structure\n\nThis documentation project is organized using the Antora documentation framework with the following structure:\n\n```\ndocumentation/\n├── architecture/           # Architecture documentation module\n│   └── docs/\n│       ├── antora.yml     # Module configuration\n│       └── modules/       # Documentation modules\n│           ├── ROOT/\n│           ├── building-blocks/\n│           ├── constraints/\n│           ├── context/\n│           ├── crosscutting/\n│           ├── decisions/\n│           ├── deployment/\n│           ├── glossary/\n│           ├── introduction/\n│           ├── quality/\n│           ├── risks/\n│           ├── runtime/\n│           └── solution-strategy/\n└── home/                  # Main documentation hub module\n    └── docs/\n        ├── antora.yml     # Module configuration\n        └── modules/\n            └── ROOT/\n                ├── nav.adoc\n                └── pages/ # Aggregated content from various repositories\n                    ├── explanation.adoc\n                    ├── how-to-guides.adoc\n                    ├── index.adoc\n                    ├── reference.adoc\n                    └── tutorials.adoc\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagentic-layer%2Fdocumentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagentic-layer%2Fdocumentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagentic-layer%2Fdocumentation/lists"}