aios-structure-build

Scaffolds and hash-verifies the frozen AIS-OS starter-kit baseline in an empty directory.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill aios-structure-build-sebaperiesdigit-create
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: aios-structure-build
Source: https://github.com/sebaperiesdigit-create/Peries-Skills-Master/tree/main/.claude/skills/aios-structure-build
Command: npx skills add https://github.com/sebaperiesdigit-create/Peries-Skills-Master --skill aios-structure-build-sebaperiesdigit-create

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Setting up a new AIS-OS (AI Operating System) project by hand is error-prone: files get missed, content drifts from the canonical baseline, and there is no proof the result matches the intended structure. This Skill scaffolds the exact frozen starter-kit tree into an empty directory and cryptographically verifies every file against a SHA-256 manifest before reporting success. ## Core Features & Use Cases - Deterministic scaffolding: Copies the bundled templates (CLAUDE.md, README.md, aios-intake.md, connections.md, decisions log, 3Ms framework reference, and the onboard/audit/level-up skills) byte-for-byte into the current working directory. - Cryptographic verification: Preflight-validates every bundled template against manifest.json using CRLF/CR-normalized SHA-256 hashes, then re-verifies the written tree and scans for unexpected paths. - Safe failure handling: Refuses to run in a non-empty directory (tolerating only pre-existing AIS-OS skill folders) and rolls back only the paths it created if any write or verification step fails. - Use Case: You want to start a fresh personal AIOS project. Open an empty folder in Claude Code, invoke the skill, and receive a verified baseline with a clear report of what was created and preserved. ## Quick Start Open an empty folder in Claude Code and type /aios-structure-build to scaffold and verify the AIS-OS starter-kit baseline.

Frequently Asked Questions about aios-structure-build

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new AIS-OS starter-kit project?▼

Open an empty folder in Claude Code and explicitly type /aios-structure-build. The bundled PowerShell script copies all template files into the current directory, verifies every file's SHA-256 hash against the manifest, and reports what was created.

What does the AIS-OS starter-kit baseline include?▼

The baseline includes CLAUDE.md, README.md, EXPANSIONS.md, LICENSE, aios-intake.md, connections.md, a decisions log, the 3Ms framework reference, empty context and archives folders, and three skills: onboard, audit, and level-up.

Can I run the build skill in a directory that already has files?▼

No. The target directory must be empty, except it tolerates pre-existing .claude/skills folders for aios-structure-build, aios-structure-validate, and aios-structure-organize. Any other existing item aborts the run with zero changes.

What happens if the AIS-OS scaffold fails partway through?▼

The script rolls back only the files and directories it created during that attempt, restoring the target to its pre-invocation state. Exit code 30 means rollback completed; exit code 31 means manual cleanup is needed.

Does the build skill require network access or other AIS-OS skills?▼

No. It is fully self-contained: all templates and the verification manifest ship inside the skill folder, it has no network dependency, and it does not require aios-structure-validate or aios-structure-organize to be installed.

Why does the skill verify SHA-256 hashes after writing files?▼

Hash verification guarantees the scaffolded tree is byte-identical to the frozen baseline. Hashes are computed after normalizing CRLF and lone CR line endings to LF, so verification is robust across platforms without altering the copied bytes.