Collection of operational skills for VaultMesh infrastructure including: - backup-sovereign: Backup and recovery operations - btc-anchor: Bitcoin anchoring - cloudflare-tunnel-manager: Cloudflare tunnel management - container-registry: Container registry operations - disaster-recovery: Disaster recovery procedures - dns-sovereign: DNS management - eth-anchor: Ethereum anchoring - gitea-bootstrap: Gitea setup and configuration - hetzner-bootstrap: Hetzner server provisioning - merkle-forest: Merkle tree operations - node-hardening: Node security hardening - operator-bootstrap: Operator initialization - proof-verifier: Cryptographic proof verification - rfc3161-anchor: RFC3161 timestamping - secrets-vault: Secrets management 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
54 lines
886 B
Smarty
54 lines
886 B
Smarty
# Bootstrap Audit Record Template
|
|
# Variables: {{TIMESTAMP}}, {{NODE_NAME}}, {{OPERATOR_NAME}}, {{DOMAIN}}
|
|
|
|
## Metadata
|
|
|
|
| Field | Value |
|
|
|-------|-------|
|
|
| Timestamp | {{TIMESTAMP}} |
|
|
| Node | {{NODE_NAME}} |
|
|
| Operator | {{OPERATOR_NAME}} |
|
|
| Domain | {{DOMAIN}} |
|
|
| Skill Version | 1.0.0 |
|
|
|
|
## Actions Performed
|
|
|
|
{{ACTIONS}}
|
|
|
|
## Artifacts Created
|
|
|
|
{{ARTIFACTS}}
|
|
|
|
## Verification Status
|
|
|
|
{{STATUS}}
|
|
|
|
## Evidence Hashes
|
|
|
|
| Artifact | BLAKE3 Hash |
|
|
|----------|-------------|
|
|
{{EVIDENCE_HASHES}}
|
|
|
|
## Signature Block
|
|
|
|
This record should be:
|
|
1. Signed with the operator's GPG key
|
|
2. Committed to the secrets.git repository
|
|
3. Anchored to LAWCHAIN (if applicable)
|
|
|
|
### GPG Signature Command
|
|
|
|
```bash
|
|
gpg --armor --detach-sign audit_record.md
|
|
```
|
|
|
|
### Verification Command
|
|
|
|
```bash
|
|
gpg --verify audit_record.md.asc audit_record.md
|
|
```
|
|
|
|
---
|
|
|
|
*Record generated by operator-bootstrap skill*
|