seed-workflow

Validate, seed, and verify Elohim content pipelines across environments.

5|1|Updated Aug 14, 2025
One-click install
npx skills add https://github.com/ethosengine/elohim --skill seed-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: seed-workflow
Source: https://github.com/ethosengine/elohim/tree/main/.claude/skills/seed-workflow
Command: npx skills add https://github.com/ethosengine/elohim --skill seed-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the validation, seeding, and verification of Elohim content pipelines, ensuring consistent quality and traceable seeding across environments.

Core Features & Use Cases

  • Schema and metadata validation: verifies required fields (id, title) and integrity checks before seeding.
  • Dry-run previews: shows proposed changes without writing to the DHT, enabling safe validation.
  • End-to-end seeding and verification: seeds DNA and blob data to the Holochain DHT, then performs post-seed validation and statistics collection.
  • Snapshot and migration support: manages state through snapshots and migrations to support disaster recovery and versioning.
  • Use Case: a developer validates new content, previews the seed, seeds to a local or dev environment, and then runs integrity checks to confirm success.

Quick Start

cd /projects/elohim/genesis/seeder

Step 1: Validate schema

npm run validate

Step 2: Preview changes

npm run seed:dry-run

Step 3: Seed to local

npm run seed

Step 4: Verify

npm run stats

Frequently Asked Questions about seed-workflow

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

FAQPage Schema
How do I automate content seeding and validation for a Holochain DHT?

Automating content seeding and validation involves verifying required schema fields, previewing changes via a dry-run, and writing DNA or blob data to the Holochain DHT before running post-seed integrity checks.

Can I preview content seeding changes before writing to the Holochain DHT?

Yes, you can preview content seeding changes using a dry-run. This mechanism shows proposed changes and validates schema integrity without actually writing any data to the DHT.

What is the best way to manage disaster recovery for Elohim content pipelines?

Managing disaster recovery for Elohim content pipelines relies on snapshot and migration support, capturing state to enable versioning and restoring data after failures.

Does the seeding workflow support schema validation for required fields?

Yes, the seeding workflow supports schema validation by enforcing required fields like id and title, ensuring metadata integrity checks pass before any seeding operations begin.

How do I verify a successful content seed in a development environment?

To verify a successful content seed in a development environment, run a post-seed validation process and collect statistics to confirm data integrity across the pipeline.

What are the limitations of seeding blob data to a local environment?

Seeding blob data to a local environment requires strict schema validation and dry-run previews first; without proper snapshots, recovering from failed migrations or corrupted DHT writes is limited.