DOCS/
EXCAVATION/
SKANI.JSON
skani.json
The heart of Skani. Tracks installed skills and versions for reproducible environments.
Structure
The skani.json file lives in your project root and contains the following structure:
➜~{
"version": "1.0.0",
"environment": {
"name": "my-project",
"created": "2024-02-12T00:00:00Z",
"updated": "2024-02-12T00:00:00Z"
},
"skills": [
{
"id": "omarchy",
"name": "Omarchy",
"version": "1.2.3",
"source": {
"type": "github",
"owner": "anomalyco",
"repo": "omarchy",
"ref": "v1.2.3",
"path": ".claude/skills/Omarchy"
},
"installedAt": "2024-02-12T10:30:00Z"
}
]
}
Fields
version
Version of the skani.json file format. Currently 1.0.0.
environment
Metadata about your project environment. Includes name, created, and updated timestamps.
skills
Array of installed skills. Each skill includes id, name, version, source URL, and installation timestamp.