Skip to content

Repository Structure

Jeremy Longworth edited this page Sep 4, 2026 · 1 revision

Repository Structure

AgentLogistics uses small, reviewable packages. Empty future directories are not committed.

Top-Level Layout

AgentLogistics/
|-- .github/
|-- docs/
|   |-- architecture/
|   |-- development/
|   |-- evaluation/
|   `-- standards/
|-- scripts/
|-- shared/
|-- skills/
|-- skillsets/
|-- specializations/
|-- tests/
|-- AGENTS.md
|-- CHANGELOG.md
|-- CODE_OF_CONDUCT.md
|-- CONTRIBUTING.md
|-- LICENSE
|-- README.md
|-- ROADMAP.md
`-- SECURITY.md

skills/

Atomic skill packages. Each package handles one bounded logistics task.

Standard shape:

skills/<domain-family>/<skill-name>/
|-- SKILL.md
|-- agents/openai.yaml
`-- references/

skillsets/

Professional role compositions. Skillsets route across existing atomic skills and do not duplicate the underlying procedures.

specializations/

Jurisdiction-specific, industry-specific, mode-specific, or source-sensitive logistics material. Specializations must preserve qualified-review boundaries.

shared/

Reusable formulas, glossaries, schemas, and templates used by active skills.

tests/

Scenarios, fixtures, routing expectations, and evaluation reports.

scripts/

Local validation scripts. The main wrapper is:

.\scripts\validate-all.ps1

Clone this wiki locally