Aether is Ego Hygiene’s canonical first-party library of reusable AI specifications, skills, and agent source with deterministic validation and build tooling.
- Repository status: active, with canonical source in
library/organization/. - Publishing/install surfaces (
gh skill, release tags) are preview-dependent and may change CLI behavior. - Artifact lifecycle policy:
draft -> stable -> deprecated -> retired(seeARCHITECTURE.md). - Catalog records may also include
experimentalstate where explicitly defined by catalog contracts. - Only
stableartifacts are releasable per catalog policy.
Aether owns:
- First-party canonical specs, skills, and agents.
- Catalog/provenance schemas and deterministic validators.
- Distribution/projection build scripts.
Aether does not own:
- Org-wide deployment automation, CI baseline, templates, environment provisioning, shell command runtime tooling, lint implementation, release orchestration, or conformance enforcement in consumer repos.
See PURPOSE.md#4-what-aether-is-not.
Canonical source:
library/organization/specs/library/organization/skills/library/organization/agents/
Generated artifacts:
catalog/first-party/catalog.v1.jsondist/skills/dist/github/
.staging/ is non-canonical migration/provenance holding space and cannot be emptied without ADR-005 deletion-gate requirements (DECISIONS.md#adr-005).
Current canonical inventory snapshot (recompute with the commands shown):
- 23 specifications (
find library/organization/specs -name "*.spec.md") - 29 skills (
find library/organization/skills -name "SKILL.md") - 9 canonical agent profiles (
find library/organization/agents -name "AGENT.md")
Machine-readable catalog and provenance:
catalog/first-party/catalog.v1.jsoncatalog/external/approved-skills.v1.json
- Python 3.12+
- Git
- GitHub CLI (
gh) 2.96+ for skill publish/install flows
Install dev dependencies:
pip install -r requirements-dev.lockFrom repository root:
./aether distribution build --output-directory "dist"
./aether validate --format "text"
./aether catalog generate --check
./aether testPrimary validator:
./aether distribution build --output-directory "dist"
./aether validate --format "text"
./aether validate --format "json"Targeted validation scopes:
./aether validate --skills --format "text"
./aether validate --specifications --format "text"
./aether validate --catalog --format "text"
./aether validate --distribution --format "text"
./aether validate --provenance --format "text"
./aether validate --staging --format "text"
./aether validate --links --format "text"
./aether validate --evals --format "text"Catalog check:
python3 catalog/validate_catalog.pyTest suite:
./aether testBuild deterministic first-party skill distributions:
./aether distribution build --output-directory "dist"
./aether distribution build --output-directory "dist" --checkUnderlying generators remain available when a narrower check is needed:
python3 library/organization/skills/build-distributions.py
python3 library/organization/skills/build-distributions.py --check
python3 library/organization/agents/build-projections.py
python3 library/organization/agents/build-projections.py --checkInspect generated output:
find dist/skills -maxdepth 2 -type f | sort
find dist/github -maxdepth 4 -type f | sortValidate publishability (no release write):
gh skill publish "dist" --dry-runInstall from local build output:
gh skill install "./dist" "create-purpose-document" --from-localInstall from repository default ref:
gh skill install "egohygiene/aether" "create-purpose-document"Pin by release tag (or commit SHA):
gh skill install "egohygiene/aether" \
"create-purpose-document" \
--pin "v1.0.0"Update skills:
gh skill update --dry-run
gh skill update --all
gh skill update --unpinInspect installed paths (for manual removal when needed):
gh skill list --json skillName,path,scope,pinnedAt present, GitHub CLI exposes update but no dedicated remove subcommand; remove by deleting the listed installed skill directory at the reported path.
- Repository release tags pin installable snapshots.
- Artifact versions are per-record metadata in the first-party catalog.
- Breaking changes require major version increments in artifact metadata and release documentation.
- Only stable artifacts are eligible for release manifests.
- Release publication is explicit through
.github/workflows/release-first-party-skills.yml; PR validation stays read-only in.github/workflows/pr-validation.yml.
See CHANGELOG.md and docs/release-and-pinning-guide.md.
External skill records must be reconstructable from staged provenance evidence and validated against schema:
catalog/external/approved-skills.v1.jsoncatalog/schemas/aether.external-source-record.v1.schema.json.staging/manifests/skills-lock.json
Policy and review workflow: docs/external-source-review-guide.md.
- Treat all generated or imported agent/skill artifacts as executable instruction surfaces.
- Review tools, links, scripts, and external references before promotion or installation.
- Never commit credentials/secrets in frontmatter, templates, eval fixtures, or hooks.
See SECURITY.md and docs/agent-and-hook-safety-guide.md.
- Edit canonical source only (
library/organization/,catalog/schemas/contracts). - Run deterministic validation/build checks.
- Regenerate derived artifacts when required.
- Submit focused PRs with clear scope and evidence.
Detailed process: CONTRIBUTING.md.
Aether interfaces with neighboring repos/systems but does not replace them:
egohygiene/.github: org agent deployment surfaces- Empathy: repository baselines
- Holon: repository templates
- Realm: dev environment provisioning
- Mantle: shell command runtime
- Egolint: lint implementation
- Relay: GitHub Actions/workflow automation
- PACE: conformance enforcement
- Consumer repositories: local policy/overrides and runtime adoption
Consumer-local instructions override Aether defaults in consumer context.
- License:
LICENSE - Support:
SUPPORT.md