refactor: rename pod crate to worker

This commit is contained in:
2026-06-26 00:05:57 +09:00
parent 4c677640f4
commit 6c59fe927b
194 changed files with 6637 additions and 6146 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ Does not own:
- generated memory records (`memory`)
- Ticket file lifecycle (`crates/ticket`, `.yoi/tickets/`)
- Pod orchestration decisions (`pod`, workflows executed by agents)
- Worker orchestration decisions (`worker`, workflows executed by agents)
- product CLI command shape (`yoi`)
## Design notes
+1 -1
View File
@@ -57,7 +57,7 @@ pub struct SkillRecord {
pub description: String,
pub body: String,
/// The skill directory (parent of `SKILL.md`). Carried so callers can
/// register `scripts/` / `references/` / `assets/` against the Pod's
/// register `scripts/` / `references/` / `assets/` against the Worker's
/// scope.
pub dir: PathBuf,
/// Path to the `SKILL.md` file itself. Used as the resolved path on
+1 -1
View File
@@ -2,7 +2,7 @@
//!
//! Workflows live under `<workspace>/.yoi/workflow/<slug>.md`. They are
//! human-authored Markdown documents with YAML frontmatter. The loader is
//! intentionally strict about malformed records because Pod startup should
//! intentionally strict about malformed records because Worker startup should
//! fail rather than silently ignoring a broken procedural instruction.
use std::collections::BTreeMap;