diff --git a/.config/hooks/pre-push b/.config/hooks/pre-push index b55df1f12..32833554a 100755 --- a/.config/hooks/pre-push +++ b/.config/hooks/pre-push @@ -9,14 +9,27 @@ ERRORS=0 echo "pre-push: running lint checks..." # --- Detect which directories have changes vs remote --- +# Prefer origin/ as the baseline (what the remote already has), +# but fall back to origin/main for first-push of a new branch — otherwise +# every check runs against nothing and the hook treats the whole repo as +# changed, spending tens of seconds on linters and JSON validation that +# have no diff to cover (e.g. pushing a wiki-only branch rebuilds GDScript +# and runs clippy + ruff + validates all 2762 JSON files). BRANCH=$(git branch --show-current) -REMOTE_REF="origin/$BRANCH" -if git rev-parse --verify "$REMOTE_REF" >/dev/null 2>&1; then +if git rev-parse --verify "origin/$BRANCH" >/dev/null 2>&1; then + REMOTE_REF="origin/$BRANCH" +elif git rev-parse --verify "origin/main" >/dev/null 2>&1; then + REMOTE_REF="origin/main" +else + REMOTE_REF="" +fi + +if [ -n "$REMOTE_REF" ]; then CLIENT_CHANGED=$(git diff --name-only "$REMOTE_REF"..HEAD -- client/ 2>/dev/null | wc -l) SERVER_CHANGED=$(git diff --name-only "$REMOTE_REF"..HEAD -- server/ 2>/dev/null | wc -l) TOOLING_CHANGED=$(git diff --name-only "$REMOTE_REF"..HEAD -- tooling/ pyproject.toml 2>/dev/null | wc -l) else - # New branch or no remote ref — fall through to directory checks + # No remote at all (e.g. fresh clone before first fetch) — be safe, run everything CLIENT_CHANGED=1 SERVER_CHANGED=1 TOOLING_CHANGED=1 @@ -114,7 +127,12 @@ else fi # --- JSON syntax validation --- -if git rev-parse --verify "$REMOTE_REF" >/dev/null 2>&1; then +# Use the same REMOTE_REF the directory-change detection above settled on +# (origin/ preferred, origin/main fallback). Without this, a first +# push of a new branch falls through to "validate every JSON in the repo," +# which on this repo means 2762 Python parses — tens of seconds of churn +# for a push that might not have touched any JSON at all. +if [ -n "$REMOTE_REF" ]; then JSON_FILES=$(git diff --name-only "$REMOTE_REF"..HEAD -- '*.json' 2>/dev/null || true) else JSON_FILES=$(git ls-files '*.json') diff --git a/decisions/content.md b/decisions/content.md index 610e05fc1..a5dd399dd 100644 --- a/decisions/content.md +++ b/decisions/content.md @@ -607,6 +607,15 @@ How narrative, NPCs, and world content are created: content tiers, NPC generatio - **Raised by:** Miri (Sprint 31, ticket #773) - **Dissent:** None. +### D-193: Lattice Commission — canonical long-form of the Commission +- **Date:** 2026-04-21 +- **Decision:** The Concord Assembly's regulatory authority is formally named **"the Lattice Commission"**. In-prose short form remains "the Commission" (unambiguous in context). Drift forms that appeared in earlier copy reviews — "Concord Commission" and "Assembly Commission" — are **non-canonical** and must be corrected wherever they appear. The long-form is required for institutional POI signage, tractus fee legal text, wiki page headers, and any formal/legal context. +- **Rationale:** The Commission's regulated domain — implant hardware, medical-grade replacements, pharmaceutical production, and safety-critical manufactured goods that feed the Lattice — is what authorizes and scopes its jurisdiction. Naming it after the regulated domain (rather than the parent Assembly) mirrors how real-world regulatory bodies are often named by what they regulate (FDA, FAA, NRC) rather than by their chartering body. It also disambiguates from "Concord" which otherwise appears in the Concord Assembly itself, the Concord's member systems, etc. The Commission has no authority in Compact member systems — its identity is Lattice-scoped, not Concord-scoped. +- **Affects:** Wiki content (all `wiki/factions/`, `wiki/technology/`, `wiki/corporations/` pages that reference the Commission), marker POI naming (e.g. `"Lattice Commission — Sirius Office"`), formal legal text in tractus fee documentation, institutional signage, institution templates in `wiki/_templates/`, dialogue pools, copy guides. +- **Resolves:** [Q-095](questions-content.md#q-095-commission-formal-name--authoritative-designation) +- **Raised by:** Copy review (Sprint 35, PR #127); resolved by Jeroen on 2026-04-21 +- **Dissent:** None. + --- -*46 decisions. Last updated: 2026-04-05 (D-168 Iserlohn IP evaluation filed)* +*47 decisions. Last updated: 2026-04-21 (D-193 Lattice Commission name resolved)* diff --git a/decisions/questions-content.md b/decisions/questions-content.md index 68b1dc276..0fe20e9b4 100644 --- a/decisions/questions-content.md +++ b/decisions/questions-content.md @@ -229,12 +229,13 @@ Narrative, NPCs, dialogue, templates, setting, worldbuilding, and storyteller me --- ### Q-095: Commission formal name — authoritative designation -- **Status:** Open +- **Status:** Resolved — see [D-193](content.md#d-193-lattice-commission--canonical-long-form-of-the-commission) (2026-04-21) +- **Resolution:** Canonical long-form is **"the Lattice Commission"**. Short form "the Commission" remains standard in-prose. "Concord Commission" and "Assembly Commission" drift forms are non-canonical. - **Question:** What is the full formal name of the Concord Assembly's regulatory authority? In-prose use is "the Commission", but several drift forms have appeared in copy reviews ("Concord Commission", "Assembly Commission", "Lattice Commission"). A canonical long-form is needed for formal/legal contexts, institutional signage, and wiki headers. - **Context:** The Commission certifies implant hardware, medical equipment, pharmaceutical production, and safety-critical manufactured goods under tractus-denominated fees. It has no authority in Compact member systems. Current glossary guidance is to use "the Commission" until the full name is resolved, but authors writing institutional POIs and formal documents need a decision. -- **Affects:** Wiki content, marker POI naming (e.g. `"Commission — Sirius Office"`), formal legal text in tractus fee documentation, institutional signage. +- **Affects:** Wiki content, marker POI naming (e.g. `"Lattice Commission — Sirius Office"`), formal legal text in tractus fee documentation, institutional signage. - **Source:** Sprint 35 copy review (PR #127) --- -*25 questions (10 resolved, 2 partially resolved, 13 open). Last updated: 2026-04-14 (Q-095 added — Commission formal name)* +*25 questions (11 resolved, 2 partially resolved, 12 open). Last updated: 2026-04-21 (Q-095 resolved — D-193 Lattice Commission)* diff --git a/decisions/questions.md b/decisions/questions.md index 51df7790e..81b1fa3d1 100644 --- a/decisions/questions.md +++ b/decisions/questions.md @@ -17,9 +17,9 @@ Tracked questions awaiting discussion or resolution. Split by domain, mirroring |--------|-------|----------|---------|------| | Architecture | 46 | 6 | 1 | 39 | | Perception | 9 | 5 | 0 | 4 | -| Content | 25 | 10 | 2 | 13 | +| Content | 25 | 11 | 2 | 12 | | Scope | 17 | 6 | 2 | 9 | -| **Total** | **97** | **27** | **5** | **65** | +| **Total** | **97** | **28** | **5** | **64** | *Updated 2026-04-05: Full recount. Q-002, Q-004, Q-005, Q-007 closed as resolved (D-117/D-166). Architecture index corrected (was 13, actually 46 — Q-060 through Q-094 were missing from index).* @@ -35,4 +35,4 @@ Tracked questions awaiting discussion or resolution. Split by domain, mirroring When in doubt about where a question belongs: if it constrains **how we build**, it's architecture. If it defines **what the player observes or knows**, it's perception. If it defines **narrative, NPCs, dialogue, or setting**, it's content. If it defines **what we ship or how big it is**, it's scope. -*97 questions. Last updated: 2026-04-14 (Q-095 added — Commission formal name).* +*97 questions. Last updated: 2026-04-21 (Q-095 resolved — D-193 Lattice Commission).* diff --git a/wiki/GOVERNANCE.md b/wiki/GOVERNANCE.md index 3f420e0b8..1a833a5d2 100644 --- a/wiki/GOVERNANCE.md +++ b/wiki/GOVERNANCE.md @@ -78,10 +78,10 @@ No nesting within flat categories. Use `cross_refs` in frontmatter for relations ## Scale Considerations -The spatial hierarchy is designed to scale from 1 star system (v0.1) to 500+ (full game): +The spatial hierarchy is designed to scale from a single starting system to 500+ (full game): - Each system is a self-contained directory tree -- Cross-system references use full slug paths (e.g., `star-systems/van-maanens-star/sova/transit`) +- Cross-system references use full slug paths (e.g., `star-systems/{system-slug}/{station-slug}/{district-slug}`) - Characters, factions, and other flat categories remain at wiki root — they are not nested per system - Characters reference their home district via `home_district` frontmatter field @@ -89,9 +89,9 @@ The spatial hierarchy is designed to scale from 1 star system (v0.1) to 500+ (fu ## Naming Conventions -- **File slugs:** lowercase, hyphenated (e.g., `kael-davan.md`, `the-last-shift.md`) -- **Directory slugs:** lowercase, hyphenated (e.g., `van-maanens-star/`, `sova/`, `transit/`) -- **Canonical IDs:** match content schema format (e.g., `npc:kael-davan`) +- **File slugs:** lowercase, hyphenated (e.g., `vuurkloof.md`, `freight-exchange.md`) +- **Directory slugs:** lowercase, hyphenated (e.g., `vuurkloof/`, `{station-slug}/`, `{district-slug}/`) +- **Canonical IDs:** match content schema format (e.g., `npc:{character-slug}`) - **Display names:** title case, as they appear in-game --- diff --git a/wiki/_templates/character-exemplar.md b/wiki/_templates/character-exemplar.md index 8444641b4..fcb136a6e 100644 --- a/wiki/_templates/character-exemplar.md +++ b/wiki/_templates/character-exemplar.md @@ -1,34 +1,32 @@ --- -title: "Kael Davan" -description: "EXEMPLAR — Tier 1 FRIEND (smuggler), dock worker entangled in smuggling ring. Use as reference for generator output quality." -slug: kael-davan -canonical_id: "npc:kael-davan" +title: "" +description: "EXEMPLAR — Tier 1 NPC quality target for generator pipeline (D-122)" +slug: "" +canonical_id: "" category: character status: exemplar -created: 2026-02-12 -updated: 2026-03-13 +created: YYYY-MM-DD +updated: YYYY-MM-DD tier: 1 -pattern: "FRIEND" -motivation: "OPERATOR" -social_sites: [logistics-hub, smuggling-ring] +pattern: "" +motivation: "" +social_sites: [] entanglement: "Entangled" -triangles: [hub-power, worried-partner] -home_district: transit +triangles: [] +home_district: "" tags: [generator-exemplar] decision_refs: [D-024, D-034, D-122] -cross_refs: [nils-davan, naia-tamm, sera-venn, voss, renn] +cross_refs: [] --- -# Kael Davan — THE FRIEND (Smuggler) +# {Name} — {Pattern} ({Role}) -**Tier 1 Production-Level NPC** | Logistics Hub + Smuggling Ring | Entangled +**Tier 1 Production-Level NPC** | {social_sites} | Entangled --- ## Core Identity -**Name**: Kael Davan -**Age**: 34 -**Role**: Dock worker, Sova Transit District Logistics Hub -**System Origin**: Van Maanen's Star, born on Station Sova -**Cultural Group**: Van Maanen's Star culture (compact names, first-name-primary, pragmatic, mind-your-business ethos) -**Lattice Tier**: Baseline -**Employer**: Sova Logistics Consortium (legitimate cover); The Arrangement (smuggling ring, informal) +**Name**: {full name} +**Age**: {age} +**Role**: {occupation/function} +**System Origin**: {home system and station} +**Cultural Group**: {cultural group slug} +**Lattice Tier**: {Baseline | Enhanced | Analytical} +**Employer**: {employer(s)} --- @@ -58,290 +56,237 @@ Key quality markers this exemplar demonstrates: ### 1. Want -**Primary**: Protect the operation and the people in it. +**Primary**: {1-line want statement} -Kael didn't join the ring for ideology or ambition. He joined because Nils (his older sibling) asked, because the money helped, and because it felt manageable. Two years in, Kael is good at it — efficient, careful, reliable. But the operation is escalating (higher volume, tighter margins, more risk), and Kael's Want is shifting from "keep things running" to "keep people safe." +{Expansion: why they want this, how it manifests, trajectory.} -**Secondary**: Protect Naia (partner) from the truth and the consequences. - -Naia doesn't know about the smuggling. Kael's late nights and evasive answers are creating anxiety at home. Kael Wants to shield Naia from danger, but the shielding itself is the danger. +**Secondary**: {1-line secondary want — often in tension with primary} --- ### 2. Secret / Vulnerability -**Surface secret** (smuggler knows, detective suspects): Ring member. Handles physical cargo — routing flagged containers, managing dock-side handoffs. +**Surface secret** (some know, others suspect): {what is partially visible} -**Deep secret** (nobody knows except the unknown contact): Kael is trying to **exit the ring**. Naia's worry has become unbearable. Kael contacted someone from a different district (not Sabel, not anyone the ring knows) who's offered to help Kael get out — for a price. The unknown contact is leverage (they know Kael is in the ring), extraction support (they have connections), and a massive security breach (unauthorized contact is grounds for ring elimination). +**Deep secret** (nobody knows): {what is entirely concealed} -**Vulnerability**: The exit attempt. If Nils finds out, Kael is out — violently. If the smuggler (if playing ring-member path) finds out, trust collapses. If the detective finds out, Kael is the perfect informant (desperate, motivated, already halfway to cooperation). +**Vulnerability**: {what breaks them — the lever that can be pulled} --- ### 3. Relationships -**Relationship 1: Nils Davan** (older sibling, ring coordinator) -- **Type**: Blood loyalty, complicated by power dynamic -- **History**: Nils brought Kael into the ring. "It's just moving containers. You're good at logistics. We take care of our own." -- **Current tension**: Nils is pushing for higher volume. Kael thinks it's too fast, too risky. Kael can't say no to Nils (family), but resents being pushed. -- **Mechanical relevance**: If Kael's exit attempt is discovered, Nils is the primary threat. +**Relationship 1: {Name}** ({connection type}) +- **Type**: {relationship nature} +- **History**: {how it formed} +- **Current tension**: {what is straining it} +- **Mechanical relevance**: {how this relationship matters to gameplay} -**Relationship 2: Naia** (partner, teacher, civilian) -- **Type**: Domestic partnership, 6 years -- **History**: Met at a community event. Naia teaches station kids, represents ordinary life, stability, the future Kael wants but smuggling threatens. -- **Current tension**: Naia knows something's wrong. The late nights, the evasive answers, the money that doesn't quite track. Naia has confided in Sera (friend, Commission field tech). Kael is oblivious to how much anxiety he's causing. -- **Mechanical relevance**: Naia is Kael's emotional anchor and his vulnerability. Threaten Naia, Kael breaks. +**Relationship 2: {Name}** ({connection type}) +- **Type**: {relationship nature} +- **History**: {how it formed} +- **Current tension**: {what is straining it} +- **Mechanical relevance**: {how this relationship matters to gameplay} -**Relationship 3: The Smuggler** (if smuggler is playing ring-member path) -- **Type**: Close colleague, trusted friend, shared risk -- **History**: Work together on legitimate shifts AND ring operations. Cover for each other. Share lunch, drinks at Lera's, the easy camaraderie of people who've been through things together. -- **Current tension**: Kael is lying to the smuggler. The unauthorized contact, the exit attempt — all of it is concealed. The smuggler trusts Kael completely, which makes the betrayal worse when discovered. -- **Mechanical relevance**: THE FRIEND. The relationship phase arc (warmth → trust → doubt → conflict) plays out here. +**Relationship 3: {Name/Player}** ({connection type}) +- **Type**: {relationship nature} +- **History**: {how it formed} +- **Current tension**: {what is straining it} +- **Mechanical relevance**: {how this relationship matters to gameplay} --- ### 4. Tolerance Threshold -**Moderate** — Kael can handle pressure, but has limits. +**{Low | Moderate | High}** — {1-line summary} -**What Kael tolerates**: -- Routine smuggling operations (manageable risk) -- Voss's resentment and Nils's demands (family and operational necessity) -- Lying to Naia (hates it, but does it to protect) +**What they tolerate**: {list} -**What pushes Kael toward breaking**: -- Escalating volume (feels like the operation is spiraling) -- Naia's increasing worry (guilt accumulation) -- The detective's investigation (paranoia about exposure) +**What pushes them toward breaking**: {list} -**What breaks Kael**: -- Direct threat to Naia (if the ring or the detective uses Naia as leverage, Kael flips immediately) -- Nils discovering the exit attempt (Kael either runs or fights, no middle ground) +**What breaks them**: {list — the hard limits} --- ### 5. Daily Routine -**06:00 - 06:30**: Arrive at Logistics Hub, shift startup -**06:30 - 10:30**: Morning shift, freight handling (legitimate work) -**10:30 - 11:00**: Break room, lunch with smuggler (if applicable) or other dock workers -**11:00 - 14:00**: Afternoon shift -**14:00 - 14:30**: Shift end, sometimes lingers for "overtime" (ring operations during transition window) -**14:30 - 16:00**: Off-shift, heads home or to The Last Shift (bar) -**16:00 - 22:00**: Home with Naia, or occasional ring coordination meetings (Corridor B-7, back room) -**22:00+**: Late-night ring operations (1-2x per week, during night shift transition) +{Time-stamped routine. Mark ring/operation deviations as tells.} **Routine deviations** (tells): -- Increased lattice checking (nervous, expecting contact from exit coordinator) -- Shortened social interactions (distracted, avoiding prolonged conversation) -- Late arrivals home (Naia notices, worries) -- Unauthorized presence in Corridor B-7 (the contradiction discovery moment for smuggler) +- {deviation}: {what it signals} --- ### 6. Information Inventory **Knows** (KnowsDetails or Direct): -- Ring structure: Nils coordinates, Voss provides scheduling cover, Renn handles courier work, Lera provides handoff point, Devra manages external contacts -- Smuggling routes: freight bay → service corridor → temp storage → bar back room -- Shift schedules and coverage gaps (operational knowledge) -- Manifest doctoring process (Maret processes, Voss approves) -- Drin's compromise (gambling debt to Harek, looks away during inspections) -- Naia's worry (knows Naia suspects something, doesn't know Naia talked to Sera) +- {fact}: {what they know about it} **Doesn't know**: -- The detective is investigating (unless playing detective path and Kael has been flagged) -- Sera is sitting on unreported evidence about Kael's manifest discrepancies (protects Naia by not reporting) -- Pell is considering turning informant (internal ring threat) -- The full supply chain (Kael knows cargo comes from Sabel off-station, doesn't know upstream Syndic sources) +- {fact}: {the gap in their knowledge} --- ### 7. Contentment -**Moderate-low** (D-024 thematic axis). +**{Level descriptor}** ({D-024 thematic axis}). -Kael is *comfortable enough to function* but not happy. The smuggling pays well, the work is manageable, the team (Nils, smuggler, Renn) is solid. But the guilt about lying to Naia is corrosive. The escalating volume makes every shift feel riskier. The exit attempt is itself a contentment signal: Kael wants out because "enough" isn't enough anymore — the cost is too high. - -**Contentment trajectory**: Declining. Two years ago, Kael was moderate (the operation was stable, Naia didn't suspect). Now, Kael is low and falling. The exit attempt is a desperate grab for a future that doesn't involve looking over his shoulder. +{Expansion: why they're at this level, what's raising or lowering it, trajectory.} --- ### 8. Personality Traits -**Primary: Loyal** — to people, not institutions. Kael's loyalty is personal (Nils, Naia, the smuggler) and situational (the ring, because the people he cares about are in it). If forced to choose between the ring and a person, Kael chooses the person. +**Primary: {Trait}** — {how it manifests} -**Secondary: Protective** — defaults to shielding others from consequences. Lies to Naia to protect. Tries to exit the ring to protect Naia from future fallout. Would cover for the smuggler even at personal cost. +**Secondary: {Trait}** — {how it manifests} -**Tertiary: Pragmatic** — doesn't waste words, doesn't dramatize. Handles problems as they arise. The exit attempt is Kael being pragmatic: "This situation is unsustainable. I need a way out. I'll find one." +**Tertiary: {Trait}** — {how it manifests} --- ### 9. Tell System -**Observable behavioral changes that signal Kael's internal state:** - | Tell | Trigger | Observable To | Mechanical Flag | |------|---------|---------------|-----------------| -| **Increased lattice checking** | Expecting contact from exit coordinator | Smuggler (if observant), Detective (if tracking behavioral patterns) | `behavior_flags: lattice_checking` | -| **Shortened social interactions** | Distracted, avoiding prolonged conversation where lies might surface | Smuggler, Naia, bar regulars | `behavior_flags: distracted,evasive` | -| **Looks left before answering** | Lying or deflecting (Kael's personal tell, smuggler knows this from history) | Smuggler (recognizes the tell from experience) | `tell_observed: looks_left_when_lying` | -| **Unauthorized spatial presence** | Meeting unknown contact in Corridor B-7 (restricted area, not part of normal routine) | Smuggler (direct observation), Detective (if surveillance active) | `contradiction_flagged: meeting_unknown_contact` | +| {tell description} | {what causes it} | {who can observe} | `behavior_flags: {flag}` | -**Tell progression** (smuggler's perspective): -1. **Week 1-2** (baseline): Kael is normal. Reliable, warm, punctual. -2. **Week 3** (first crack): Kael checks lattice more often. Smuggler monologue: "Kael's distracted today. Probably nothing." -3. **Week 4** (pattern): Shortened lunch conversations. Kael excuses himself early. Smuggler monologue: "Kael's been quiet lately." -4. **Week 5** (the observation): Smuggler sees Kael in Corridor B-7, talking to unknown person. THE FRIEND contradiction discovered. Smuggler monologue: "That wasn't anyone from our rotation. Kael, what are you doing?" +**Tell progression**: +1. **Phase 1** (baseline): {normal behavior} +2. **Phase 2** (first crack): {first observable deviation} +3. **Phase 3** (pattern): {repeated tell} +4. **Phase 4** (contradiction): {the observable contradiction — THE moment} --- ### 10. Skill Set -**Occupational**: Freight logistics, cargo handling, manifest reading, shift coordination. - -**Ring-relevant**: Container routing, timing coordination (knows when surveillance gaps occur), physical cargo movement (lifts, secures, reroutes). - -**Combat tag**: **No**. Kael is not combat-trained. If cornered, Kael runs or capitulates. Violence is not part of Kael's skill set or personality. - -**Lattice capability**: Baseline tier. No enhanced perception, no analytical overlays. Kael uses lattice for communication, shift schedules, and routine queries. +**Occupational**: {skills} +**Ring-relevant**: {operational skills, if applicable} +**Combat tag**: **{Yes | No}** +**Lattice capability**: {tier and functional description} --- ## Backstory -Born on Station Sova. Grew up in the freight district — child of logistics workers, pragmatic Van Maanen's Star upbringing. Joined Sova Logistics Consortium at 22, worked the docks for a decade before Nils (older sibling, always more ambitious) brought him into the ring. "It's just moving containers, Kael. You're good at this. We take care of our own." Two years in, Kael is good at it — efficient, careful, trusted. But the operation is escalating, Naia is worried, and Kael realizes he's in deeper than he intended. The exit attempt is Kael trying to reclaim a future that doesn't end in a cell or worse. +{2-3 sentences: origin, how they ended up in this situation, what they want that got them here.} --- ## Voice Sample -**Mood: Casual (baseline, smuggler interaction)** -- *"Shift's looking smooth today. Freight's on schedule, no surprises. Let's keep it that way."* +**Mood: Casual (baseline)** +- *"{line}"* -**Mood: Protective (deflecting Naia's worry)** -- *"I'm fine, Naia. Just work stuff. Long shifts, you know how it is. Don't worry about me."* +**Mood: Protective / Deflecting** +- *"{line}"* -**Mood: Evasive (post-contradiction, smuggler pressing)** -- *"It's nothing. Just a thing. Don't worry about it."* [Looks left before answering — the tell] +**Mood: Evasive (post-contradiction)** +- *"{line}"* [{the tell, if visible}] -**Mood: Desperate (if cornered by detective or Nils)** -- *"You don't understand. I'm trying to protect someone. If I don't get out, they're at risk. I can't— I can't keep doing this."* - -**Mood: Warm (to smuggler, early game)** -- *"There you are. Good — I was starting to worry. Ready for another day of making the galaxy's freight move?"* [Slight smile, genuine relief] +**Mood: Desperate (cornered)** +- *"{line}"* --- ## Dual-Lens Notes -### How the Smuggler Sees Kael +### How Archetype A Sees {Name} -**Access tier**: Insider + Peer (if ring-member path) OR Peer (if non-ring civilian smuggler) -**Relationship**: Friendly (baseline) → PersonOfInterest (post-contradiction) -**Monologue tone (baseline)**: Fond, casual. *"Kael's here. Good — always reliable."* -**Monologue tone (post-contradiction)**: Conflicted, analytical. *"Kael's lying to me. I know his tells. What are you hiding?"* +**Access tier**: {tier} +**Relationship**: {state → state} +**Monologue tone (baseline)**: {register descriptor}. *"{example line}"* +**Monologue tone (post-contradiction)**: {register shift}. *"{example line}"* -**What the smuggler knows that the detective doesn't**: Kael is a ring member (if smuggler is also in the ring). Kael's personal tell (looks left when lying). Kael's relationship with Naia. The unauthorized meeting is a *betrayal of operational security*, not just suspicious behavior. +**What Archetype A knows that Archetype B doesn't**: {information asymmetry} -**Emotional weight**: Maximum. Kael is THE FRIEND. The color shift from green to amber is the moment the smuggler realizes trust has been compromised. +**Emotional weight**: {Low | Medium | High | Maximum} — {why} --- -### How the Detective Sees Kael +### How Archetype B Sees {Name} -**Access tier**: Public (baseline) → Authority (if investigation escalates and detective pressures Kael) -**Relationship**: Unknown → Known → PersonOfInterest (if tells accumulate) -**Monologue tone (baseline)**: Clinical, observational. *"Dock worker. Davan, K. Unremarkable on paper."* -**Monologue tone (post-tells)**: Analytical suspicion. *"Davan's nervous. Lattice activity spiked. Behavioral pattern suggests concealment."* +**Access tier**: {tier} +**Relationship**: {state → state} +**Monologue tone (baseline)**: {register descriptor}. *"{example line}"* +**Monologue tone (post-contradiction)**: {register shift}. *"{example line}"* -**What the detective knows that the smuggler doesn't**: Manifest discrepancies tied to Kael's shifts (if Sera has shared or detective has analyzed logs). Naia's worry (if detective talks to Naia or Sera). Kael as a pressure point — partner at risk, potential informant. +**What Archetype B knows that Archetype A doesn't**: {information asymmetry} -**Emotional weight**: Low initially (just another dock worker). High if Kael becomes the key to cracking the ring (the detective's professional satisfaction vs. Kael's desperation creates tension, but not personal betrayal). +**Emotional weight**: {Low | Medium | High | Maximum} — {why} --- ## Triangle Roles -### Hub Power (Voss - Kael - Nils) +### {Triangle Name} ({NPC 1} - {Name} - {NPC 3}) -**Kael's function**: The executor. Kael handles the physical work — routing containers, managing dock-side operations. Caught between Voss (shift supervisor, resentful of being managed) and Nils (ring coordinator, Kael's sibling, pushing for escalation). +**{Name}'s function**: {role in the triangle} -**Pressure**: Voss complains to Kael about Nils. Nils gives Kael orders. Kael has to keep both satisfied while doing the actual smuggling work. +**Pressure**: {what forces are acting on this character through the triangle} -**Player relevance**: Smuggler (if in ring) helps Kael navigate this. Detective sees Kael as efficient and wonders why Voss seems nervous around him. - ---- - -### Worried Partner (Naia - Kael - Sera) - -**Kael's function**: The oblivious cause. Kael's smuggling (late nights, evasive answers) is making Naia worried. Naia confides in Sera. Sera knows enough to connect Kael to the investigation but hasn't reported (loyalty to Naia). Kael doesn't know Naia talked to Sera. - -**Pressure**: Naia's worry is escalating. If Naia confronts Kael directly, Kael has to lie or confess. If Sera reports, Naia's life explodes. Kael is trying to exit the ring to stop the worry, but the exit attempt is itself creating more risk. - -**Player relevance**: Smuggler (if Kael's friend) knows why Kael is busy, can't tell Naia. Detective (if Sera's friend) might hear about Naia's worry from Sera, creating a path to Kael. +**Player relevance**: {how each archetype engages with this triangle through this character} --- ## Contradiction Arc -### Phase 1: Comfort (Friendly, baseline) +### Phase 1: {Name} (Friendly, baseline) -**Timing**: 0-10 minutes (game start) -**Observable behavior**: Kael is warm, reliable, present. Greets the smuggler with genuine affection. -**Monologue (smuggler)**: *"Kael's already at the dock. Good. The day's better when he's on shift."* -**Color**: Soft green (Friendly) -**Tell**: None — baseline normal. +**Timing**: {minutes} +**Observable behavior**: {what is visible} +**Monologue (Archetype A)**: *"{line}"* +**Color**: {relationship color} +**Tell**: {none | which tell} -### Phase 2: First Crack (still Friendly, but flags accumulating) +### Phase 2: First Crack -**Timing**: 10-15 minutes -**Observable behavior**: Kael checks lattice more often than usual. Excuses himself from lunch early. -**Monologue (smuggler)**: *"Kael's distracted today. Probably nothing."* -**Color**: Still green, but `behavior_flags` update to `"lattice_checking,distracted"`. -**Tell**: **Increased lattice checking** (observable if smuggler pays attention). +**Timing**: {minutes} +**Observable behavior**: {first deviation from baseline} +**Monologue (Archetype A)**: *"{line}"* +**Tell**: {which tell fires} -### Phase 3: The Observation (Friendly → PersonOfInterest) +### Phase 3: The Observation ({Friendly} → {PersonOfInterest}) -**Timing**: 15-20 minutes -**Trigger**: The smuggler sees Kael in Corridor B-7 talking to an unknown person. -**Monologue (smuggler)**: *"That wasn't anyone from our rotation. And Kael didn't tell me about a meeting. What's going on?"* -**Color shift**: Soft green → amber. **This is the emotional moment.** +**Timing**: {minutes} +**Trigger**: {what the player observes} +**Monologue (Archetype A)**: *"{line}"* +**Color shift**: {color A → color B}. **This is the emotional moment.** -### Phase 4: Confrontation Opportunity (PersonOfInterest, dialogue shift) +### Phase 4: Confrontation Opportunity -**Timing**: 20-25 minutes -**Trigger**: Smuggler can ask Kael about the meeting. -**Kael's response** (deflection): *"Just a thing. Don't worry about it."* [Looks left — **the tell**] -**Monologue (smuggler)**: *"He looked left. He always looks left when he's making something up. Kael is lying to me."* +**Timing**: {minutes} +**Trigger**: {player action that opens dialogue} +**{Name}'s response**: *"{deflection line}"* [{tell, if visible}] +**Monologue**: *"{player's recognition line}"* -### Phase 5: New Equilibrium (PersonOfInterest, contaminated trust) +### Phase 5: New Equilibrium -**Timing**: 25-30 minutes -**Observable behavior**: Kael acts normal again. But the smuggler is now **watching**. -**Monologue (smuggler)**: *"Same old Kael. Laughing at the same jokes. ...What are you not telling me?"* +**Timing**: {minutes} +**Observable behavior**: {surface normalcy, new underlying state} +**Monologue**: *"{player's contaminated-trust line}"* **Dialogue branches**: -- **Path A (understanding)**: Smuggler confronts gently. Kael might confess. Tone shifts to sympathetic. -- **Path B (betrayal)**: Smuggler reports to Nils. Kael turns hostile. -- **Path C (observation)**: Smuggler watches silently. Tension simmers. +- **Path A ({choice})**: {outcome} +- **Path B ({choice})**: {outcome} +- **Path C ({choice})**: {outcome} --- ## Authoring Notes -- **Kael's voice**: Direct, practical, short sentences. Doesn't waste words. Uses first names. Warm to people he trusts, evasive when hiding something. -- **The tell** (looks left when lying) must be established early in casual dialogue so the smuggler (and player) recognize it during the contradiction. -- **Naia references**: Kael mentions Naia in casual conversation ("Naia's got a school event tonight, so I'm heading home early"). Establishes the relationship before it becomes load-bearing. -- **Ring operations dialogue** (if smuggler is in ring): Matter-of-fact, operational. "Container 4471 is flagged. I'll reroute it during shift transition." No drama, no theatrics. -- **Deflection dialogue** (post-contradiction): Kael doesn't lie outright. Kael deflects: "It's handled." "Don't worry about it." "Just work stuff." The evasion itself is the tell. -- **Dual-lens discipline**: Every Kael line must work for BOTH the smuggler (who knows Kael personally) AND the detective (who reads Kael analytically). The same sentence lands differently per character. +- **Voice**: {speech pattern, sentence length, vocabulary register} +- **The tell**: {which tell, why it works, how to establish it early} +- **{Key relationship} references**: {how to seed this relationship in casual dialogue} +- **Operational dialogue**: {register for work/role-specific lines} +- **Deflection dialogue**: {how they evade rather than lie outright} +- **Dual-lens discipline**: {what must work for both archetypes — and why} --- ## Pattern / Motivation -**Pattern (System A):** FRIEND — Trust anchor whose relationship with the player is the emotional core. The FRIEND pattern means betrayal carries maximum emotional weight. -**Motivation (System B):** OPERATOR — Runs ring cargo at the dock level. Routes containers, manages handoffs, coordinates timing. - -**Composition read:** FRIEND + OPERATOR creates the identity betrayal: "I was your friend AND your co-conspirator." The player trusted Kael as a person (FRIEND) while relying on Kael as a functional colleague (OPERATOR). When the contradiction surfaces, the betrayal cuts both relationships simultaneously. +**Pattern (System A):** {PATTERN} — {what this pattern means for the character} +**Motivation (System B):** {MOTIVATION} — {what this motivation drives} +**Composition read:** {how pattern + motivation interact to define the character's dramatic function} diff --git a/wiki/_templates/character.md b/wiki/_templates/character.md index 52ffa2d4b..ec50785d1 100644 --- a/wiki/_templates/character.md +++ b/wiki/_templates/character.md @@ -1,8 +1,8 @@ --- -title: "" # Display name (e.g., "Kael Davan") -description: "" # One-line summary for context filtering (e.g., "Tier 1 detective NPC, central to Hub Power triangle") -slug: "" # URL-safe identifier (e.g., "kael-davan") -canonical_id: "" # e.g., "npc:kael-davan" +title: "" # Display name (e.g., "Brek Kost") +description: "" # One-line summary for context filtering (e.g., "Tier 2 shift supervisor NPC, anchor for workplace triangle") +slug: "" # URL-safe identifier (e.g., "brek-kost") +canonical_id: "" # e.g., "npc:brek-kost" category: character status: proposed # proposed | draft | canonical created: YYYY-MM-DD diff --git a/wiki/_templates/cultural-group.md b/wiki/_templates/cultural-group.md index ba3ea003b..bfece8dde 100644 --- a/wiki/_templates/cultural-group.md +++ b/wiki/_templates/cultural-group.md @@ -1,7 +1,7 @@ --- -title: "" # Display name (e.g., "Van Maanen's Star Culture") -description: "" # One-line summary for context filtering (e.g., "Industrial frontier culture valuing self-reliance and practical skills") -slug: "" # URL-safe identifier (e.g., "van-maanens-star-system") +title: "" # Display name (e.g., "Vuurkloof Culture") +description: "" # One-line summary for context filtering (e.g., "Geothermal frontier culture valuing engineering precision and thermal pragmatism") +slug: "" # URL-safe identifier (e.g., "vuurkloof") category: cultural-group status: proposed # proposed | draft | canonical created: YYYY-MM-DD diff --git a/wiki/_templates/district.md b/wiki/_templates/district.md index 9e693b78c..1c67b9e20 100644 --- a/wiki/_templates/district.md +++ b/wiki/_templates/district.md @@ -1,6 +1,6 @@ --- -title: "" # Display name (e.g., "Sova Transit District") -description: "" # One-line summary for context filtering (e.g., "Main logistics hub of Station Sova, 12 social sites, high NPC density") +title: "" # Display name (e.g., "Dockside Commercial Quarter") +description: "" # One-line summary for context filtering (e.g., "Mixed-use commercial district adjacent to freight terminal, 8 social sites") slug: "" # URL-safe identifier (e.g., "transit") category: district status: proposed # proposed | draft | canonical diff --git a/wiki/_templates/faction.md b/wiki/_templates/faction.md index 5d46b975c..3a6f9f7d9 100644 --- a/wiki/_templates/faction.md +++ b/wiki/_templates/faction.md @@ -38,7 +38,7 @@ cross_refs: [] --- -## Members (v0.1) +## Members {Table or list of known members with roles and links.} diff --git a/wiki/_templates/institution.md b/wiki/_templates/institution.md index 513b28bd8..2438f41db 100644 --- a/wiki/_templates/institution.md +++ b/wiki/_templates/institution.md @@ -1,5 +1,5 @@ --- -title: "" # Display name (e.g., "Van Maanen's Star Administrator's Office") +title: "" # Display name (e.g., "Lattice Commission — Regional Liaison Office") description: "" # One-line summary for context filtering (e.g., "Local government office overseeing system-level administration and permits") slug: "" # URL-safe identifier category: institution @@ -36,9 +36,9 @@ cross_refs: [] --- -## Presence in v0.1 +## Local Presence -{How this institution manifests in the Sova Transit District. NPCs, locations, systems.} +{How this institution manifests at the local level. NPCs, locations, systems.} --- diff --git a/wiki/_templates/star-system.md b/wiki/_templates/star-system.md index e371e26cb..4809d51ae 100644 --- a/wiki/_templates/star-system.md +++ b/wiki/_templates/star-system.md @@ -1,7 +1,7 @@ --- -title: "" # Display name (e.g., "Van Maanen's Star") -description: "" # One-line summary for context filtering (e.g., "Industrial frontier system, home to Station Sova, first playable location") -slug: "" # URL-safe identifier (e.g., "van-maanens-star") +title: "" # Display name (e.g., "Vuurkloof") +description: "" # One-line summary for context filtering (e.g., "Geothermal frontier system, through-route topology, south_reach corridor") +slug: "" # URL-safe identifier (e.g., "vuurkloof") category: star-system status: proposed # proposed | draft | canonical created: YYYY-MM-DD diff --git a/wiki/_templates/station.md b/wiki/_templates/station.md index ab991ca89..871a0a4bb 100644 --- a/wiki/_templates/station.md +++ b/wiki/_templates/station.md @@ -1,6 +1,6 @@ --- -title: "" # Display name (e.g., "Station Sova") -description: "" # One-line summary for context filtering (e.g., "Primary logistics station in Van Maanen's Star, 3 districts, mixed-use") +title: "" # Display name (e.g., "Vuurkloof Horizon") +description: "" # One-line summary for context filtering (e.g., "Primary transit station in Vuurkloof, 2 districts, horizon-adjacent") slug: "" # URL-safe identifier (e.g., "sova") category: station status: proposed # proposed | draft | canonical diff --git a/wiki/authoring/base-text-authoring-guide.md b/wiki/authoring/base-text-authoring-guide.md index 59542eb09..e13722542 100644 --- a/wiki/authoring/base-text-authoring-guide.md +++ b/wiki/authoring/base-text-authoring-guide.md @@ -101,7 +101,7 @@ If you're unsure whether a line is Factual: if it contains a number, a named qua Base text must not contain culture-specific vocabulary. The culture injectors add that layer at voicing time. Base text is the semantic skeleton. **What to avoid:** -- Van Maanen's Star oath vocabulary: `"void take it"`, `"blood and void"` — these go in voice_examples, not base text +- Culture-specific oath vocabulary: e.g. `"void take it"`, `"blood and void"` — these go in voice_examples, not base text - Culture-specific greetings or farewells - Slang that implies a particular register @@ -129,9 +129,7 @@ Before committing, run through: --- -## Examples from the Van Maanen's Star zones (reference) - -These lines passed elevation review (Sprint 26): +## Examples of elevated base text (Sprint 26 elevation review) **Strong — moment-specific, role-grounded:** - `"kneels at the base of a struggling plant and parts the soil with two fingers"` diff --git a/wiki/authoring/cultural-generation-guide.md b/wiki/authoring/cultural-generation-guide.md index d9c42e1f7..0b53f57cb 100644 --- a/wiki/authoring/cultural-generation-guide.md +++ b/wiki/authoring/cultural-generation-guide.md @@ -10,7 +10,7 @@ This guide provides the framework for generating culturally consistent content in The Settled Reach. Every named district, NPC, and piece of authored dialogue reflects a specific cultural context. This guide codifies how to derive that context from first principles so that any content author — writing a dockworker or a station administrator, a bar greeting or a confrontation line — can produce work that feels like it belongs. -The Sova Transit District in Van Maanen's Star is the first concrete instance of this framework. All examples in this guide are drawn from Sova. Subsequent settings use the same framework applied to different parameters. +The worked examples in this guide use a mid-Reach freight district as the reference context. Subsequent settings use the same framework applied to different parameters. --- @@ -31,7 +31,7 @@ This determines the age of institutions, the density of infrastructure, and the | **Frontier** | Sparse, improvised | Light. Syndic representatives, occasional Commission audit | Independent-to-resistant. Authority is a distant abstraction. | Improvised. Tight-knit. Self-reliant. | | **Deep Frontier** | Minimal | Nominal or none | Sovereign. Authority is whatever the community enforces. | Harsh. Communal. Rules of necessity. | -**Sova Transit District:** Mid-Reach. Commission presence is intermittent — enough to maintain order, not enough to catch everything. The district's residents are pragmatic about authority: they comply when observed, continue as normal when not. +**Mid-Reach freight district:** Mid-Reach. Commission presence is intermittent — enough to maintain order, not enough to catch everything. The district's residents are pragmatic about authority: they comply when observed, continue as normal when not. --- @@ -49,7 +49,7 @@ Economic base determines daily rhythms, vocabulary, and the social pressures tha | **Service** | Tourist/commercial traffic. | Tips, regulars, reputation management. | Income dependent on traffic volume. Reputation fragile. | Blackmail. Theft. Information sale. | | **Research** | Project deadlines. Funding cycles. | Research progress, institutional politics, publication credit. | Competitive, status-driven, secrecy around results. | Data theft. Fabrication. Factions. | -**Sova Transit District:** Freight primary. The span gate transit schedule structures everything. NPC routines, the ring's operational calendar, and social patterns (when the bar fills, when corridors are quiet) all derive from freight rhythm. +**Mid-Reach freight district:** Freight primary. The span gate transit schedule structures everything. NPC routines, the ring's operational calendar, and social patterns (when the bar fills, when corridors are quiet) all derive from freight rhythm. --- @@ -66,7 +66,7 @@ Settlement age determines architectural character, generational memory, and whet | **Mature** | Mixed construction eras clearly visible. Original structure heavily modified. Strong local character in older sections. | Distinct local identity. People think of themselves as "from here." | Distant. The origin is history, not memory. | Local pride. Skepticism of core-system assumptions. | | **Old** | Accretive. Original construction may be invisible under layers. Idiosyncratic. | Deeply rooted identity. History is ambient. | Institutional. Stories are embedded in place-names and customs. | The origin system is foreign. "We are our own thing." | -**Sova Transit District:** Established-to-Mature. The district is ~40 years old on a station settled ~180 years ago. The district itself shows layered construction — prefab base, retrofitted sections, personalized details. Local identity is present but not deep. Workers think of themselves as Sova people, not Van Maanen's Star people; but they don't have the rootedness of a settlement in its third or fourth generation. +**Mid-Reach freight district:** Established-to-Mature. The district is ~40 years old on a station settled ~180 years ago. The district itself shows layered construction — prefab base, retrofitted sections, personalized details. Local identity is present but not deep. Workers think of themselves as Sova people, not Vuurkloof people; but they don't have the rootedness of a settlement in its third or fourth generation. --- @@ -80,7 +80,7 @@ This determines: - **Relationship to technology** — whether lattice use is stigmatized, normalized, or a source of pride - **Attitudes toward the Commission** — reverence, compliance, resentment, or active evasion -**Van Maanen's Star Cultural Profile (established, working-class mid-Reach):** +**Vuurkloof Cultural Profile (established, working-class mid-Reach):** - **Names:** Compact, consonant-heavy, first-name-primary in social contexts. Family names exist but are used formally (official documents, institutional contexts, introductions to strangers). Nicknames common among colleagues. Off-system names (longer vowels, different consonant clusters) stand out subtly but aren't cause for suspicion — just quietly noted. @@ -112,7 +112,7 @@ Every location has a set of institutions that structure daily life. Understandin | **Station Administration** | Local governance | Immediate authority. Maintenance schedules, district regulations, housing allocation. | | **Medical Services** | Re-embodiment and healthcare | Presence varies by wealth. Clinics in working districts, full services in affluent ones. | -**Sova Transit District institutional profile:** +**Mid-Reach freight district institutional profile:** - Syndic logistics consortium: the main employer, highly visible in daily operations - Station Administration: present through maintenance schedules, posted notices, the occasional administrator in the corridors - Lattice Commission: intermittent. A kiosk in the logistics hub lobby, field investigators who visit quarterly (usually) @@ -125,16 +125,16 @@ Every location has a set of institutions that structure daily life. Understandin ### 2.1 Naming Conventions -Naming conventions follow from Dimension 4 (Cultural Reference Point). The table below captures Van Maanen's Star standard, which serves as the v0.1 model. +Naming conventions follow from Dimension 4 (Cultural Reference Point). The table below captures Vuurkloof standard as the canonical worked example. -**Van Maanen's Star naming rules:** -- **First names:** 1-2 syllables, consonant-forward, no double vowels in typical form. Examples: Kael, Voss, Drin, Lera, Torek, Maret, Naia, Sera, Nils, Kosse, Pael, Tev, Ren, Resha, Harek, Sess, Devra. -- **Family names:** 1-2 syllables, similar phoneme pattern. Examples: Davan, Lintar, Sessik, Korr. -- **Social usage:** First name in most contexts. "Supervisor Voss" for institutional address. Full name only in formal or hostile contexts. -- **Nicknaming:** Common among colleagues. A name like "Renn" might be short for something nobody uses. -- **Off-system names:** Slightly softer vowels, longer syllable count, different consonant clusters. Example: Olin, Sabel. These stand out quietly — the detective's lattice may flag them as non-Van Maanen's Star-origin before the detective consciously registers why. +**Vuurkloof naming rules:** +- **First names:** 1-2 syllables, consonant-forward, no double vowels in typical form. Pattern examples: Brek, Solt, Drav, Vesk, Tren, Morva. *Author naming examples against the active district roster — don't re-use existing NPC names.* +- **Family names:** 1-2 syllables, similar phoneme pattern. Pattern examples: Valen, Kost, Terst, Morek. +- **Social usage:** First name in most contexts. "Supervisor {Surname}" for institutional address. Full name only in formal or hostile contexts. +- **Nicknaming:** Common among colleagues. A short form might be all anyone uses. +- **Off-system names:** Slightly softer vowels, longer syllable count, different consonant clusters. Examples: Olin, Renhai. These stand out quietly — the player character's lattice may flag them as non-local-origin before consciously registering why. -**IP check:** Van Maanen's Star names are constructed to feel plausibly human-future without mapping to any existing franchise. They are NOT Hamilton Commonwealth names (conspicuously contemporary English, which is Hamilton's signature device). They are NOT Banks Culture names (often whimsical or elaborate). They are NOT Firefly or Star Wars (no Earth-ethnic-name echoes). They suggest cultural drift across 180 years of mid-Reach settlement. +**IP check:** Vuurkloof names are constructed to feel plausibly human-future without mapping to any existing franchise. They are NOT Hamilton Commonwealth names (conspicuously contemporary English, which is Hamilton's signature device). They are NOT Banks Culture names (often whimsical or elaborate). They are NOT Firefly or Star Wars (no Earth-ethnic-name echoes). They suggest cultural drift across 180 years of mid-Reach settlement. --- @@ -142,16 +142,16 @@ Naming conventions follow from Dimension 4 (Cultural Reference Point). The table Economic base (Dimension 2) determines the vocabulary of daily life. Workers in a freight hub speak differently from workers in a mining operation or a research station. This vocabulary should permeate every NPC's dialogue — not as jargon dumps, but as the ambient language of their daily reality. -**Sova Transit District — Freight Economic Vocabulary:** +**Mid-Reach freight district — Economic Vocabulary:** -See companion document: **Sova Texture Appendix (#302)** for the full slang glossary. +See companion document: **Freight District Texture Appendix** for the full slang glossary. Core vocabulary patterns for freight: - Work = "shift" (not "rotation," not "duty," not "tour") - The gate = "the gate" casually, "the span gate terminal" institutionally — never "the span gate" in casual speech - Cargo containers = "containers" or "cans" (informal) — never "pods" - Cargo manifests = "manifests" (precise), "paperwork" (dismissive), "the file" (when being evasive) -- Credits = "marks" in casual conversation (a Van Maanen's Star local usage) +- Credits = "marks" in casual conversation (a Vuurkloof local usage) - Off-shift time = "off-book" among the ring; just "after" for civilians ("see you after") - Lattice communication = "pinging" (sending), "a ping" (notification) @@ -161,7 +161,7 @@ Core vocabulary patterns for freight: The freight rhythm (span gate schedules, shift rotations) structures social life. Content authors should use these rhythms as temporal anchors for dialogue and monologue. -**Sova Transit social rhythm:** +**Mid-Reach freight district social rhythm:** | Time | Activity | Social Atmosphere | |---|---|---| @@ -170,7 +170,7 @@ The freight rhythm (span gate schedules, shift rotations) structures social life | 1200-1400 | Midday break | Break room social time, bar has light lunch trade | | 1400-1600 | Afternoon freight cycle | Quieter, post-lunch pace | | 1600-1800 | Evening shift change | Second major transition, people heading to or from | -| 1800-2200 | Peak bar hours | The Last Shift fills up. Main social time of the day. | +| 1800-2200 | Peak bar hours | The bar fills up. Main social time of the day. | | 2200-0200 | Late night | Bar quiet (late regulars only). Corridors quieter. Ring operations typical timing. | | 0200-0600 | Deep night | Minimal staffing. Maintenance windows. Skeleton shift. | @@ -180,7 +180,7 @@ The freight rhythm (span gate schedules, shift rotations) structures social life Dimension 3 (Reach Position) determines how NPCs speak about, around, and to authority figures. This affects dialogue at every trust tier. -**Sova Transit — Authority Relationship Patterns:** +**Mid-Reach freight district — Authority Relationship Patterns:** | NPC Type | To Commission directly | About Commission (behind back) | To institutional-tagged stranger | |---|---|---|---| @@ -207,9 +207,9 @@ The exception: NPCs under stress or in unusual circumstances may reference their --- -## Part 3: Scaling Beyond v0.1 +## Part 3: Scaling to New Districts -Van Maanen's Star instance demonstrates the framework. Future settings apply the same five dimensions with different parameters. The cultural output — naming conventions, vocabulary, social norms, authority attitudes — follows from the parameters, not from free-form invention. +The mid-Reach freight district example demonstrates the framework. Other settings apply the same five dimensions with different parameters. The cultural output — naming conventions, vocabulary, social norms, authority attitudes — follows from the parameters, not from free-form invention. **Quick-generation checklist for a new district:** @@ -260,34 +260,17 @@ The same cultural detail should mean something different to the smuggler and the --- -## Appendix: v0.1 Named Characters — Van Maanen's Star Consistency Check +## Appendix: Naming Convention Validation -All named characters in the Sova Transit District, with naming convention validation: +When authoring new characters for a district, validate each name against the district's cultural profile before committing. The validation table format (per district): | Name | Convention Check | Role | Notes | |---|---|---|---| -| Kael Davan | Van Maanen's Star standard | Dock worker, ring member, smuggler's FRIEND | Full name used in formal contexts | -| Sera Venn | Van Maanen's Star standard | Commission field tech, detective's FRIEND | "Venn" slightly softer than typical Van Maanen's Star surname — deliberate: she's institutional, slightly apart | -| Lera Sessik | Van Maanen's Star standard | Bar owner, The Last Shift | "Lera's" informal name. Never Lera Sessik to regulars. | -| Torek Lintar | Van Maanen's Star standard | Dock inspector, compromised | Full name used when the detective runs his file | -| Voss | Van Maanen's Star standard | Logistics supervisor | Single name in social use. Probably Voss-something officially. | -| Drin | Van Maanen's Star standard | Maintenance tech, flat NPC | Single name. Been here long enough nobody uses a surname. | -| Maret Korr | Van Maanen's Star standard | Freight scheduler, ring-adjacent | "Korr" is direct Van Maanen's Star standard | -| Naia | Van Maanen's Star standard | Kael's partner (mentioned, not primary) | Brief, soft — contrast to Kael | -| Nils | Van Maanen's Star standard | Bar regular (mentioned) | | -| Kosse | Van Maanen's Star standard | Station name / character reference | | -| Pael | Van Maanen's Star standard | Maintenance tech, flat NPC (Sprint 12: #307) | | -| Tev | Van Maanen's Star standard | Lookout/runner, flat NPC (Sprint 12: #307) | | -| Ren | Van Maanen's Star standard | Drifter, flat NPC (Sprint 12: #307) | "Ren" is earlier-established; "Renn" is the courier variant from Round 2 mapping | +| {Name} | {culture} standard / deviation | {role} | {why the deviation if any} | -**Off-system characters (deliberate naming deviation):** +**IP check:** Validate new names against: Hamilton (Contemporary English register), Banks (whimsical/elaborate), Reynolds (Dutch/Germanic), Simmons (Greek/Latin register), Morgan (Anglo-American register). Flag any cluster that maps too directly to an existing franchise voice. -| Name | Deviation | Role | Purpose of Deviation | -|---|---|---|---| -| Resha | Softer vowel pattern | New hire | Implies off-system origin — explains why they ask too many questions | -| Sabel | Different phoneme cluster | Ring fence/buyer, external contact | External contact should sound external | - -**IP check:** All Van Maanen's Star names validated against Hamilton (Contemporary English — cleared), Banks (whimsical/elaborate — cleared), Reynolds (Dutch/Germanic — cleared), Simmons (Greek/Latin register — cleared), Morgan (Anglo-American register — cleared). No franchise overlap found. +*v0.1 named-character validation table removed — cited NPCs no longer in v0.2 pipeline (D-122). Generate new per-district validation tables when the active NPC roster is authored.* --- diff --git a/wiki/authoring/culture-authoring-guide.md b/wiki/authoring/culture-authoring-guide.md index fca9ac48a..472645c25 100644 --- a/wiki/authoring/culture-authoring-guide.md +++ b/wiki/authoring/culture-authoring-guide.md @@ -13,7 +13,7 @@ Every NPC in The Settled Reach is voiced through their culture. The voice pipeli This guide explains how to author a new culture RON file from scratch. The target: one experienced author can produce a complete, Spike-validated culture profile in approximately one working day. Three reference cultures exist in `content/global/`: -- `culture-van-maanens-star.ron` — Mid-Reach, freight, working-class pragmatic (the Spike 1/2 reference) +- `culture-van-maanens-star.ron` — Mid-Reach, freight, working-class pragmatic (canonical reference culture) - `culture-vael.ron` — Core-adjacent, administrative/research, institutional-formal - `culture-osse.ron` — Deep Frontier, extraction industry, terse-utilitarian @@ -55,7 +55,7 @@ Write a one-sentence register description. This becomes `speech.register` in the **Examples:** | Culture | Register | |---|---| -| Van Maanen's Star | direct, minimal pleasantries, gets to the point | +| Vuurkloof | direct, minimal pleasantries, gets to the point | | Vael | complete sentences, institutional framing, measured, precise | | Osse | terse, functional, equipment vocabulary, economy of language | @@ -127,7 +127,7 @@ The not-list prevents register leakage. Write it by asking: what does this cultu | Culture | NEVER block content | |---|---| -| Van Maanen's Star | Corporate/institutional language, effusive or polished register, deference to unearned rank, family names in casual use, verbosity | +| Vuurkloof | Corporate/institutional language, effusive or polished register, deference to unearned rank, family names in casual use, verbosity | | Vael | Void-adjacent exclamations (frontier register), casual contractions, sentence fragments, direct emotional expression, physical labor as value ground | | Osse | Institutional framing or courtesy protocols, formal complete sentences, Commission-world vocabulary, Core-system exclamations, elaboration where a number suffices | @@ -147,7 +147,7 @@ Each numbered instruction should target a DIFFERENT speech dimension so trait mo - Instruction 7 → trust signal (how the culture verifies credibility) - Instruction 8 → not-list (what this voice never does) -**Test before committing:** Read the persona out loud. Can you imagine an NPC responding to you from this profile? Would a speaker from this culture be clearly distinct from Van Maanen's Star if you heard both without labels? +**Test before committing:** Read the persona out loud. Can you imagine an NPC responding to you from this profile? Would a speaker from this culture be clearly distinct from Vuurkloof if you heard both without labels? --- @@ -163,19 +163,19 @@ Example pairs are the model's pattern anchors — small LLMs are pattern matcher **Rules for example pairs:** 1. Cover the range: neutral, positive relationship, refusal/deflection, high-affect 2. Output should be short (1-2 sentences). Long outputs lose the pattern. -3. Each output must be recognizably THIS culture — read them side by side with Van Maanen's Star examples. They should sound like different people. +3. Each output must be recognizably THIS culture — read them side by side with Vuurkloof examples. They should sound like different people. 4. Do not use real NPC names in examples — use generic role references ### Cross-cultural contrast test -Before finalizing examples, run this test. Take the same three base-text inputs and write outputs in Van Maanen's Star, Vael, and Osse voices. If the outputs are hard to distinguish, the culture persona needs sharpening. +Before finalizing examples, run this test. Take the same three base-text inputs and write outputs in Vuurkloof, Vael, and Osse voices. If the outputs are hard to distinguish, the culture persona needs sharpening. **Example inputs for the test:** - "declines to answer a question about an overnight run" - "acknowledges a colleague's greeting while continuing to work" - "thanks a colleague for covering a shift" -| Input | Van Maanen's Star | Vael | Osse | +| Input | Vuurkloof | Vael | Osse | |---|---|---|---| | Declines question | "Look, that's not mine to say." | "I'm not in a position to speak to that. You'd want to refer to the relevant operations log." | "Not my section. Ask Grek." | | Acknowledges greeting | "Hey. Yeah. Catch you at shift end." | "Harthen. Good. I'll be with you in a moment." | "Doss. Yeah." | @@ -197,7 +197,7 @@ If all three rows sound similar, the culture personas need work. - `suppress_on_tells` — tells that should suppress this injection (e.g., oath suppressed when Guarded) **Frequency guidelines:** -- 0.25 — Van Maanen's Star oath vocabulary (appears in ~1 in 4 high-affect contexts) +- 0.25 — Vuurkloof oath vocabulary (appears in ~1 in 4 high-affect contexts) - 0.20 — Vael protocol citation (appears occasionally in procedural exchange) - 0.15 — Osse equipment ground (appears in work-adjacent contexts) @@ -242,14 +242,14 @@ After validation, the culture profile is ready for Spike 1 prompt testing. Human ## Tell-tone reference tables -### Van Maanen's Star tell-tone table +### Vuurkloof tell-tone table -| TellCategory | Van Maanen's Star-inflected tonal register | +| TellCategory | Vuurkloof-inflected tonal register | |---|---| | Nervous | Answers run shorter than usual. Eyes stay on task. Nothing's wrong — just things to do. | | Guarded | Direct past the point of directness. Closes conversation paths fast without being unfriendly. | | Friendly | One beat more than the exchange needed. A word of warmth lands casually, not performed. | -| Angry | Steady. Even. The kind of steady that takes effort. Not hostile — just flat in a way that doesn't feel natural for Van Maanen's Star. | +| Angry | Steady. Even. The kind of steady that takes effort. Not hostile — just flat in a way that doesn't feel natural for Vuurkloof. | | RoutineDeviation | Unhurried. Unremarkably normal. Like nothing's worth noticing. | ### Vael tell-tone table @@ -283,7 +283,7 @@ After validation, the culture profile is ready for Spike 1 prompt testing. Human - [ ] Voice persona: 8 numbered instructions, ~200-250 tokens - [ ] Explicit `NEVER:` block at end of persona string (separate from numbered instructions) - [ ] NEVER block content is culture-specific (not repeating universal constraints) -- [ ] Cross-cultural contrast test passed (Van Maanen's Star/Vael/Osse comparison) +- [ ] Cross-cultural contrast test passed (Vuurkloof/Vael/Osse comparison) - [ ] 3-5 voice examples authored, range covered - [ ] At least 1 occasional injection with suppression logic - [ ] Tell-tone table authored (5 TellCategories) @@ -307,7 +307,7 @@ BehaviorPrimitive.action + BehaviorModifier.clause → assembled behavior st Example: - Action: `"moves freight containers"` -- Modifier: `"without wasted motion"` (Van Maanen's Star, `work_pace`) +- Modifier: `"without wasted motion"` (Vuurkloof, `work_pace`) - Result: `"moves freight containers without wasted motion"` A culture provides a pool of modifier clauses. When the engine assembles a behavior, it looks for a modifier whose `category` matches the primitive's `modifier_hint` string. If no match exists, it falls back to any modifier in the pool. If no modifiers exist at all, the action text is used as-is. @@ -336,7 +336,7 @@ Every `BehaviorPrimitive` carries a `context` field that gates when it is eligib These seven categories define the interface between primitives (Mellanie, role-action templates) and modifiers (culture authors). A primitive's `modifier_hint` must use one of these strings for a culture modifier to match it. -| Category | What it inflects | Example modifier (Van Maanen's Star) | +| Category | What it inflects | Example modifier (Vuurkloof) | |---|---|---| | `work_pace` | Speed and intensity of physical task execution | "without wasted motion" | | `physical_manner` | Body language and movement quality during tasks | "without looking up from the task" | @@ -361,7 +361,7 @@ These seven categories define the interface between primitives (Mellanie, role-a **Three-culture contrast for modifiers** (same as voice persona contrast test): -| Category | Van Maanen's Star | Vael | Osse | +| Category | Vuurkloof | Vael | Osse | |---|---|---|---| | work_pace | "without wasted motion" | "with practiced deliberation" | "at extraction pace" | | physical_manner | "without ceremony" | "with institutional correctness" | "tool already in hand" | @@ -379,7 +379,7 @@ Add these items to the culture profile checklist: - [ ] `behavior_modifiers` array populated with at least 2 clauses per category (14 minimum) - [ ] Each clause tested: grammatically trails "moves freight containers ___" and "checks a manifest ___" -- [ ] Three-culture contrast check: modifiers are clearly distinct from Van Maanen's Star, Vael, and Osse +- [ ] Three-culture contrast check: modifiers are clearly distinct from Vuurkloof, Vael, and Osse - [ ] `tooling/validate-ron` still passes after adding modifiers *Addendum: Sprint 26, #634 (composable behavior content). Category vocabulary established jointly by Gestalt (culture modifiers) and Mellanie (behavior primitives). Add new categories only by agreement between both sides — unmatched categories silently fall back to any modifier.* diff --git a/wiki/authoring/dual-lens-authoring-guide.md b/wiki/authoring/dual-lens-authoring-guide.md index 314af5b4e..46696fa71 100644 --- a/wiki/authoring/dual-lens-authoring-guide.md +++ b/wiki/authoring/dual-lens-authoring-guide.md @@ -1,6 +1,6 @@ # Dual Lens Authoring Guide -**v0.1 Content Design Document** | Blocks: 11 downstream tickets | Status: Draft +**Content Design Document** | Blocks: 11 downstream tickets | Status: Draft **Author:** Mellanie (Copywriter) + Paula (Narrative & Political Depth) **Date:** 2026-02-12 @@ -23,58 +23,37 @@ This guide defines how content authors write for two playable characters experie ### Who Is The Smuggler? -**Occupation:** Logistics worker, Sova Transit District Freight Terminal ("The Terminal") -**Ring Position:** Mid-level operator. Handles physical cargo routing, knows the schedule windows, manages dock-side coordination. -**Time in Ring:** ~2 years. Comfortable with the work. Good at it. -**Lattice Tier:** Baseline (standard civilian-grade, no augmentation) +*v0.1 starting-state profile removed — cited named NPCs no longer in v0.2 pipeline (D-122). Author per-district character profiles against the active NPC roster.* -**What They Know At Session Start:** -- The ring exists. Who's in it: Nils (coordinator), Kael (closest colleague, ring member), Voss (shift supervisor, takes a cut), Renn (courier), and 2-3 others. -- The routes: freight bay → service corridor → temp storage → bar back room. -- The cargo: unlicensed lattice components, medical-grade neural replacements diverted from Syndic supply chains. They don't look too closely at the sealed containers. -- The schedule: shift transitions create 20-minute oversight gaps. The operation runs during these windows. -- The stakes: if caught, it's a Commission offense. Years in detention. But the money helps, the team is solid, and it's felt manageable for two years. +**Structural starting state (archetype constants):** -**What They Don't Know:** -- The detective is investigating (unless playing detective path and the smuggler has been flagged). -- Kael is trying to exit the ring. Meeting unknown contacts. Lying to the smuggler. -- Sera (Commission field tech) has flagged manifest discrepancies and is sitting on unreported evidence. -- The full upstream supply chain (knows cargo comes from off-station contact Sabel, doesn't know Syndic connections). -- How much Naia (Kael's partner) suspects. How much danger the ring is actually in. +**Occupation:** Logistics worker at the district freight terminal. +**Ring Position:** Mid-level operator. Handles physical cargo routing, knows schedule windows. +**Lattice Tier:** Baseline (civilian-grade, no augmentation) -**Emotional Baseline:** -- **Comfortable-tense.** Not happy, not miserable. The smuggler is managing a life with two faces: legitimate dock worker (public) and ring operator (hidden). The cognitive load is constant but bearable. The money eases the financial pressure that makes station life tight for most workers. The team feels like family — shared risk creates trust. -- **Loyal to people, not institutions.** First-name basis with everyone. Thinks relationally: Kael is "my shift partner," not "dock worker Davan." Voss is "tense today," not "the shift supervisor is agitated." Institutions (Commission, Concord, Syndic) are distant, abstract, often adversarial. -- **Operational thinking mode.** Time-aware, route-aware, schedule-aware. Worries about exposure: "Is Torek's spending too visible?" "Did Maret notice that manifest discrepancy?" "Is the detective going to connect Kael to the irregularities?" -- **Protectiveness over the team.** Would cover for Kael even at personal cost. Would warn Voss if something looked wrong. The ring isn't just work — it's the people the smuggler eats lunch with, drinks with, trusts. +**Emotional Baseline (invariant):** +- **Comfortable-tense.** Managing a life with two faces: legitimate worker (public) and ring operator (hidden). The cognitive load is constant but bearable. The team feels like family — shared risk creates trust. +- **Loyal to people, not institutions.** Thinks relationally, not institutionally. Institutions (Commission, Concord, Syndic) are distant, abstract, often adversarial. +- **Operational thinking mode.** Time-aware, route-aware, schedule-aware. Worries about exposure and protecting the team. +- **Protectiveness over the team.** Would cover for THE FRIEND even at personal cost. --- ### Who Is The Detective? -**Occupation:** Commission investigator, assigned to Sova Transit District for manifest irregularity investigation -**Assignment Duration:** New arrival. Session start is early in the investigation (first week). -**Lattice Tier:** Standard professional (Commission-grade diagnostic tools, analytical overlays, not investigative-tier augmentation) +*v0.1 starting-state profile removed — cited named NPCs no longer in v0.2 pipeline (D-122). Author per-district character profiles against the active NPC roster.* -**What They Know At Session Start:** -- There are manifest discrepancies tied to Sova Transit District freight operations. Containers logged but not reconciled with incoming manifests. Pattern suggests smuggling. -- Names from case files: Voss (shift supervisor), Maret (freight scheduler), Drin (dock inspector). Persons of interest, not confirmed suspects. -- Sova Transit District social geography: The Terminal (logistics hub), The Last Shift (bar, social nexus), maintenance corridors (off-books access routes). -- Institutional context: The previous Commission liaison rotated out 3 months ago. Current Commission presence is minimal (Sera Venn, field tech, not an investigator). -- Sera Venn is a pre-existing contact. Same institutional background, transferred to Sova a year ago. Reliable. The detective's one friendly face in the district. +**Structural starting state (archetype constants):** -**What They Don't Know:** -- Who the ring members are (Nils, Kael, Renn, etc. — names without context). -- The smuggler's identity. If the smuggler is in the ring, the detective doesn't know yet. -- Kael is trying to exit the ring. Sera is sitting on unreported evidence. Naia is worried about Kael and has confided in Sera. -- The social web connecting everyone. Who's loyal to whom. Who's protecting whom. Who's compromised and how. -- How embedded the ring is in the district's economic immune system. The detective reads it as criminal enterprise. Doesn't yet understand it as community survival mechanism. +**Occupation:** Commission investigator, assigned to the district for manifest irregularity investigation. +**Assignment Duration:** New arrival. Session start is early in the investigation. +**Lattice Tier:** Standard professional (Commission-grade diagnostic tools, analytical overlays) -**Emotional Baseline:** -- **Professional-cautious.** The detective is trained to observe, analyze, withhold judgment until evidence accumulates. But they're also human — isolation in an unfamiliar community, reliance on Sera for social grounding, awareness that non-cooperation is the district default. -- **Analytical habit.** Counts things. Tracks frequencies. Flags inconsistencies. Self-directs: "filing it," "noted," "coincidence?" Internal bookkeeping runs in background. The institutional training doesn't turn off. -- **Institutional frame.** Thinks in terms of evidence, patterns, leverage. Surnames before first names for targets. "Davan, K." not "Kael." The shift from surname to first-name IS a relationship marker. -- **Moral position.** The detective believes in the work. Smuggling isn't victimless — unlicensed lattice components can cause neural degradation, medical-grade replacements diverted from Syndic supply chains mean someone else doesn't get the replacement they need. The ring is breaking the law. The investigation is justified. But the detective is also starting to see the grey: Kael isn't a cartel boss, he's a dock worker who said yes once and kept saying yes. Complexity accumulates. +**Emotional Baseline (invariant):** +- **Professional-cautious.** Trained to observe, analyze, withhold judgment until evidence accumulates. Isolation in an unfamiliar community. Non-cooperation is the district default. +- **Analytical habit.** Counts things. Tracks frequencies. Flags inconsistencies. Self-directs: "filing it," "noted," "coincidence?" Internal bookkeeping runs in background. +- **Institutional frame.** Thinks in terms of evidence, patterns, leverage. Surnames before first names for targets. The shift from surname to first-name IS a relationship marker. +- **Moral position.** Believes in the work. Smuggling isn't victimless. But the grey accumulates: ring members aren't cartel bosses, they're workers who said yes once and kept saying yes. --- @@ -84,7 +63,7 @@ This guide defines how content authors write for two playable characters experie |-----------|----------|-----------| | **Knowledge of the ring** | Insider. Knows who, what, when, where. Operational detail. | Suspects. Has data anomalies, no confirmed names. Investigative frame. | | **Relationship to NPCs** | Personal. First-name basis. History, trust, loyalty. | Clinical. Surname-first. Categorizes by role and behavior. | -| **Emotional orientation** | Protective. Worries about people. "Is Kael okay?" | Analytical. Worries about patterns. "Why is Kael nervous?" | +| **Emotional orientation** | Protective. Worries about people. "Is {FRIEND} okay?" | Analytical. Worries about patterns. "Why is {subject} nervous?" | | **Lattice capability** | Baseline. No enhanced perception, no analytical overlays. | Professional. Diagnostic access, pattern recognition tools. | | **Social position** | Insider. Belongs. Everyone knows the smuggler. | Outsider. Institutional authority resented by the community. | | **Moral framing** | Pragmatic complicity. "We're careful. We take care of our own." | Institutional clarity. "This is a crime. There are victims." | @@ -117,7 +96,7 @@ The smuggler hears a line the detective doesn't (or vice versa) because of `acce ```yaml - id: terminal_d_044 role: dock_worker - text: "Container 4471 sat in temp storage overnight. Scheduling backed up again." + text: "Container {N} sat in temp storage overnight. Scheduling backed up again." access: [public, peer] trust: surface situation: [shift_start] @@ -131,12 +110,12 @@ Both characters can hear this line (`public` + `peer` both accessible). But the ```yaml - id: terminal_d_045 role: dock_worker - text: "4471's routed for transfer at 14:30. Voss kept the window clear." + text: "{Container N} is routed for transfer at 14:30. {Supervisor} kept the window clear." access: [insider] trust: real situation: [shift_transition] dual_lens: - smuggler: "Confirmation — the route is active, Voss is cooperating." + smuggler: "Confirmation — the route is active, the supervisor is cooperating." detective: "Never hears this line. Doesn't have insider access." ``` @@ -147,7 +126,7 @@ Both characters hear the same NPC dialogue, but their monologue reactions interp ```yaml - id: bar_d_033 role: bartender - text: "Sera left early. Headache, she said." + text: "{THE FRIEND} left early. Headache, they said." access: [public] trust: surface ``` @@ -157,7 +136,7 @@ Both characters hear the same NPC dialogue, but their monologue reactions interp - id: bar_m_051 character: smuggler trigger: post_conversation - text: "Sera's gone. Good — one less Commission presence in the room." + text: "{THE FRIEND}'s gone. Good — one less Commission presence in the room." mood: [relieved] ``` @@ -168,10 +147,10 @@ Both characters hear the same NPC dialogue, but their monologue reactions interp trigger: post_conversation prerequisite: known_attributes: - subject: sera_venn + subject: {friend_npc_slug} key: behavior_flags value_contains: avoidance_pattern - text: "Second time Sera's left when Torek arrived. Coincidence?" + text: "Second time {THE FRIEND} left when {NPC} arrived. Coincidence?" mood: [suspicious] ``` @@ -180,7 +159,7 @@ Same dialogue. Smuggler reads it as relief (less oversight). Detective reads it **Type 3: Emotional Weight Difference** The relationship history creates different emotional stakes for the same observation. -*Observation trigger:* Kael checking his lattice for the third time in ten minutes. +*Observation trigger:* THE FRIEND checking their lattice for the third time in ten minutes. *Smuggler monologue:* ```yaml @@ -189,8 +168,8 @@ The relationship history creates different emotional stakes for the same observa trigger: observe_anomaly prerequisite: relationship_state: Friendly - subject: kael_davan - text: "Kael keeps checking his lattice. Waiting for a message? Not like him to be jumpy." + subject: {friend_npc_slug} + text: "{THE FRIEND} keeps checking their lattice. Waiting for a message? Not like them to be jumpy." mood: [concerned] topic: [colleague] ``` @@ -202,13 +181,13 @@ The relationship history creates different emotional stakes for the same observa trigger: observe_anomaly prerequisite: relationship_state: Known - subject: kael_davan - text: "Dock worker Davan — lattice activity spiked. Expecting a message? Or checking for surveillance?" + subject: {friend_npc_slug} + text: "Dock worker {Surname} — lattice activity spiked. Expecting a message? Or checking for surveillance?" mood: [analytical] topic: [investigation] ``` -Same behavior. Smuggler worries about a friend ("Not like him"). Detective analyzes a subject ("Dock worker Davan"). Emotional weight is asymmetric. +Same behavior. Smuggler worries about a friend ("Not like them"). Detective analyzes a subject ("Dock worker {Surname}"). Emotional weight is asymmetric. --- @@ -221,12 +200,12 @@ The dual-lens rule is enforced through the tag taxonomy (D-035). Here's how tags | Access Tier | Who Gets It | Smuggler Example | Detective Example | |-------------|-------------|------------------|-------------------| | `public` | Everyone | Bar greeting, shift small talk | Commission procedural questions | -| `peer` | Known or Friendly relationship | Coworker gossip, shift complaints | Institutional background sharing (Sera to detective) | +| `peer` | Known or Friendly relationship | Coworker gossip, shift complaints | Institutional background sharing ({THE FRIEND} to detective) | | `insider` | Friendly relationship only | Ring operational talk, close confidences | Never unlocked for ring NPCs (detective is outsider) | | `authority` | Detective only, works at Unknown/Known/PersonOfInterest | Institutional leverage questions | Smuggler never has authority access | | `hostile` | Hostile relationship only | Threats, final warnings | Post-cover-blown confrontation | -**Critical rule:** When Kael transitions from Friendly to PersonOfInterest (THE FRIEND contradiction), `insider` and `peer` lines LOCK OUT. The smuggler still sees Kael, still interacts with Kael, but the warm operational dialogue disappears. That absence IS the emotional payload. +**Critical rule:** When THE FRIEND transitions from Friendly to PersonOfInterest (THE FRIEND contradiction), `insider` and `peer` lines LOCK OUT. The smuggler still sees THE FRIEND, still interacts with them, but the warm operational dialogue disappears. That absence IS the emotional payload. **`trust` Tag — Hard Filter (D-028 Layer 3)** @@ -238,7 +217,7 @@ Within each access tier, `trust` further filters content: | `real` | Honest opinions, unguarded speech, actual feelings | | `secret` | Dangerous knowledge, confessions, things that create leverage | -A line tagged `access: [insider], trust: secret` is the deepest content — only available to the smuggler, only when Kael is Friendly, only when trust has been earned through repeated interaction. +A line tagged `access: [insider], trust: secret` is the deepest content — only available to the smuggler, only when THE FRIEND is Friendly, only when trust has been earned through repeated interaction. **`character` Tag — Hard Partition (D-032)** @@ -268,18 +247,20 @@ When writing a line: ### Per-NPC Access Mapping +*v0.1 named-NPC access table removed — cited NPCs no longer in v0.2 pipeline (D-122). Author per-district access mapping tables against the active NPC roster using the format below.* + How each character relates to key NPCs at session start: | NPC | Smuggler Access | Detective Access | Shift Path (Smuggler) | Shift Path (Detective) | |-----|----------------|------------------|---------------------|----------------------| -| **Kael Davan (THE FRIEND)** | `insider`, `peer` | `public` → `authority` (if flagged) | `insider` → locked out (post-contradiction, PersonOfInterest) | `public` → `authority` (investigation progresses) | -| **Sera Venn (THE FRIEND)** | `public` (Commission, wary) | `peer` → `authority` (post-contradiction) | No shift (smuggler doesn't develop relationship) | `peer` → `authority` (trust breaks, PersonOfInterest) | -| **Voss (shift supervisor)** | `insider` (colleague, knows smuggler is ring) | `authority` | `insider` → `hostile` (if cover blown) | `authority` → `peer` (if detective earns trust) | -| **Lera Sessik (bar owner)** | `insider` (bar regular, ring-aware) | `public` → `peer` (repeat visits) | No major shift | `public` → `peer` (regular status, 3-4 visits) | -| **Naia Tamm (Kael's partner)** | `peer` (through Kael) | `public` → `peer` (through Sera) | `peer` → `hostile` (if Naia learns truth about ring) | `public` → `peer` (Sera introduction) | -| **Torek Lintar (bar regular)** | `insider` or `peer` (depends on whether smuggler knows Torek's ring connection) | `public` | No shift | `public` → `authority` (if financial tells flagged) | -| **Maret Korr (freight scheduler)** | `insider` (hub colleague) | `authority` | No major shift | `authority` → `peer` (if Maret cooperates) | -| **Drin Rosta (dock inspector)** | `insider` (hub colleague, smuggler knows Drin is compromised) | `authority` | `insider` → `hostile` (if Drin turns informant) | `authority` (detective can pressure via gambling debt) | +| **{FRIEND A} (Smuggler's FRIEND)** | `insider`, `peer` | `public` → `authority` (if flagged) | `insider` → locked out (post-contradiction, PersonOfInterest) | `public` → `authority` (investigation progresses) | +| **{FRIEND B} (Detective's FRIEND)** | `public` (Commission, wary) | `peer` → `authority` (post-contradiction) | No shift (smuggler doesn't develop relationship) | `peer` → `authority` (trust breaks, PersonOfInterest) | +| **{Supervisor} (shift supervisor)** | `insider` (colleague, knows smuggler is ring) | `authority` | `insider` → `hostile` (if cover blown) | `authority` → `peer` (if detective earns trust) | +| **{Bar Owner}** | `insider` (bar regular, ring-aware) | `public` → `peer` (repeat visits) | No major shift | `public` → `peer` (regular status, 3-4 visits) | +| **{MIRROR} (FRIEND's partner)** | `peer` (through FRIEND) | `public` → `peer` (through FRIEND B) | `peer` → `hostile` (if MIRROR learns truth about ring) | `public` → `peer` (FRIEND B introduction) | +| **{Ring-adjacent NPC}** | `insider` or `peer` (depends on smuggler's knowledge of connection) | `public` | No shift | `public` → `authority` (if behavioral tells flagged) | +| **{Scheduler/Admin}** | `insider` (hub colleague) | `authority` | No major shift | `authority` → `peer` (if they cooperate) | +| **{Compromised NPC}** | `insider` (hub colleague, smuggler knows they're compromised) | `authority` | `insider` → `hostile` (if they turn informant) | `authority` (detective can apply pressure via known leverage) | --- @@ -296,14 +277,14 @@ How each character relates to key NPCs at session start: | Character | Starting Tier | Likely Shift | Trigger | Content Requirement | |-----------|--------------|--------------|---------|---------------------| -| Smuggler | `insider` (regular) | `insider` → `hostile` | Social contamination from hub (ring turns on smuggler) | Bar dialogue shifts from warm to cold. Lera stops saving the smuggler's seat. Torek stops buying rounds. | -| Detective | `public` | `public` → `peer` | Repeated visits (3-4), becomes a regular, earns Lera's respect | Greeting dialogue warms. Sera introduces detective to regulars. Access to bar gossip unlocks. | +| Smuggler | `insider` (regular) | `insider` → `hostile` | Social contamination from hub (ring turns on smuggler) | Bar dialogue shifts from warm to cold. The bar owner stops saving the smuggler's seat. Regulars stop buying rounds. | +| Detective | `public` | `public` → `peer` | Repeated visits (3-4), becomes a regular, earns the bar owner's respect | Greeting dialogue warms. {THE FRIEND} introduces detective to regulars. Access to bar gossip unlocks. | **The Ring (Smuggling Operations)** | Character | Starting Tier | Likely Shift | Trigger | Content Requirement | |-----------|--------------|--------------|---------|---------------------| -| Smuggler | `insider` + `peer` | `peer` → `hostile` | Suspected of cooperation with detective, unauthorized contact (like Kael) | Ring dialogue becomes interrogative. Nils questions loyalty. Operational info stops flowing. | +| Smuggler | `insider` + `peer` | `peer` → `hostile` | Suspected of cooperation with detective, unauthorized contact with the detective | Ring dialogue becomes interrogative. Ring leadership questions loyalty. Operational info stops flowing. | | Detective | `public` (doesn't know ring exists) | `public` → `hostile` | Stumbles into ring awareness — NPCs react defensively | Immediate evasion. Doors close. No access to insider content, but NPCs' defensive behavior is itself evidence. | --- @@ -315,13 +296,13 @@ Every content pack must support: 2. **Shifted state dialogue** — the most likely tier transition per character 3. **Monologue that tracks the shift** — the character's internal reaction to changed access -Example from Kael content pack: +Example from THE FRIEND content pack: *Starting state (Friendly, insider access):* ```yaml - id: terminal_d_120 role: dock_worker - text: "Container 4471 is flagged. I'll reroute it during shift transition." + text: "Container {N} is flagged. I'll reroute it during shift transition." access: [insider] trust: real situation: [shift_transition] @@ -336,7 +317,7 @@ Example from Kael content pack: access: [public] trust: surface situation: [shift_start] - notes: "Post-contradiction. Kael is surface-normal. The warmth is gone. The insider content is locked." + notes: "Post-contradiction. THE FRIEND is surface-normal. The warmth is gone. The insider content is locked." ``` *Smuggler monologue tracking the shift:* @@ -346,8 +327,8 @@ Example from Kael content pack: trigger: post_conversation prerequisite: relationship_state: PersonOfInterest - subject: kael_davan - text: "Same old Kael. Same jokes, same routine. ...What are you not telling me?" + subject: {friend_npc_slug} + text: "Same old {THE FRIEND}. Same jokes, same routine. ...What are you not telling me?" mood: [conflicted] topic: [colleague] notes: "Phase 5: Contaminated trust. Every normal interaction is now suspicious." @@ -369,7 +350,7 @@ The vertical slice is 30 minutes. Divergence between the smuggler and detective **Minimal Differences:** - Monologue voice is different (smuggler: casual, relational; detective: analytical, institutional). -- NPC greetings vary by recognition (smuggler gets "There you are" from Kael; detective gets "Can I help you?" from Voss). +- NPC greetings vary by recognition (smuggler gets "There you are" from THE FRIEND; detective gets "Can I help you?" from the supervisor). - The smuggler's monologue references operational context ("shift transition in thirty minutes"). The detective's monologue references investigative context ("manifest discrepancies tied to this hub"). **Player Experience:** @@ -380,18 +361,18 @@ The two characters feel similar. The world is shared. The voice is different, bu ### Minutes 10-20: Growing Divergence **Access Tiers Start to Differ:** -- The smuggler hears `insider` dialogue from Kael, Voss, Lera. Ring operational talk. Close colleague warmth. -- The detective hears `authority` dialogue from Maret, Drin, Voss. Institutional leverage questions. Evasive answers. +- The smuggler hears `insider` dialogue from THE FRIEND, colleagues, bar regulars. Ring operational talk. Close colleague warmth. +- The detective hears `authority` dialogue from hub workers and supervisors. Institutional leverage questions. Evasive answers. - The smuggler's `peer` access to bar regulars unlocks gossip, complaints, social texture. The detective is still `public` at the bar — polite but distant. **Monologue Pools Diverge:** -- The smuggler's monologue starts tracking operational risk: "Torek's spending is too visible." "Maret's been quiet lately — did she notice something?" -- The detective's monologue starts tracking behavioral tells: "Dock worker Davan — lattice activity spiked." "Voss deflected when I asked about overnight containers." +- The smuggler's monologue starts tracking operational risk: "That spending is too visible." "They've been quiet lately — did they notice something?" +- The detective's monologue starts tracking behavioral tells: "Dock worker {Surname} — lattice activity spiked." "{Supervisor} deflected when I asked about overnight containers." **NPCs Respond Differently:** -- Kael is warm to the smuggler (Friendly relationship), clinical to the detective (Unknown or Known). -- Sera is warm to the detective (Friendly, pre-existing contact), wary to the smuggler (Commission presence). -- Lera is protective of regulars around the detective (defensive), casual with the smuggler (insider). +- THE FRIEND (smuggler's) is warm to the smuggler (Friendly relationship), clinical to the detective (Unknown or Known). +- THE FRIEND (detective's) is warm to the detective (Friendly, pre-existing contact), wary to the smuggler (Commission presence). +- The bar owner is protective of regulars around the detective (defensive), casual with the smuggler (insider). **Player Experience:** The same room. Different colors. Different names. Different monologue. The player who's played both paths starts to notice: "Wait, I didn't hear that line as the detective." The asymmetry is becoming visible. @@ -403,21 +384,21 @@ The same room. Different colors. Different names. Different monologue. The playe **Completely Different Internal Experiences:** **Smuggler (navigating ring crisis):** -- Kael's contradiction discovered. The FRIEND arc is in Phase 3-4 (shock, confrontation). +- THE FRIEND's contradiction discovered. The FRIEND arc is in Phase 3-4 (shock, confrontation). - Monologue is emotionally loaded: hurt, betrayal, protectiveness, fear of exposure. -- Access to `insider` content at The Terminal and bar. Operational dialogue about shift windows, container routing, risk management. -- Relationship stakes are personal: "Kael is lying to me. What do I do? Confront? Protect? Report to Nils?" +- Access to `insider` content at the terminal and bar. Operational dialogue about shift windows, container routing, risk management. +- Relationship stakes are personal: "THE FRIEND is lying to me. What do I do? Confront? Protect? Report up the chain?" **Detective (uncovering evidence):** -- Sera's contradiction discovered. The FRIEND arc is in Phase 3-4 (pattern confirmed, question asked). -- Monologue is analytically loaded: suspicion, professional conflict, moral cost of using Sera's concealment. -- Access to `authority` content at The Terminal. Institutional leverage. Maret might cooperate. Drin might turn. -- Relationship stakes are institutional: "Sera knows something. Do I press? Report her? Protect her?" +- THE FRIEND's contradiction discovered. The FRIEND arc is in Phase 3-4 (pattern confirmed, question asked). +- Monologue is analytically loaded: suspicion, professional conflict, moral cost of using THE FRIEND's concealment. +- Access to `authority` content at the terminal. Institutional leverage. Some NPCs might cooperate. Others might turn. +- Relationship stakes are institutional: "THE FRIEND knows something. Do I press? Report them? Protect them?" **Zero Overlap in Emotional Journey:** - The smuggler is inside a community facing internal betrayal. - The detective is outside a community trying to crack it open. -- The same events (Kael's nervousness, Sera's avoidance, Torek's spending) mean completely different things to each character. +- The same events (THE FRIEND's nervousness, THE FRIEND's avoidance, the ring's visible tells) mean completely different things to each character. **Player Experience:** "I was only seeing HALF of this." The replay reveals a completely different game. Not just "I knew different things" — "I cared about different things." The divergence is total. @@ -440,12 +421,12 @@ Before submitting a line, ask: ### Question 1: Does this line make sense if the smuggler hears it? -**Test:** Read the line aloud. Imagine the smuggler — a dock worker who's been on Sova for years, knows the ring from inside, thinks in operational terms, worries about people. Does this line sound like something an NPC would say TO a smuggler? Or does it assume the listener is an outsider / authority figure? +**Test:** Read the line aloud. Imagine the smuggler — a dock worker who's been in the district for years, knows the ring from inside, thinks in operational terms, worries about people. Does this line sound like something an NPC would say TO a smuggler? Or does it assume the listener is an outsider / authority figure? **Common failures:** - NPC explains basic station layout to the smuggler (the smuggler already knows). - NPC uses institutional vocabulary the smuggler wouldn't recognize ("manifest reconciliation protocol" instead of "the paperwork doesn't match"). -- NPC is defensive or evasive without cause (why would Kael be evasive with his closest colleague unless something's wrong?). +- NPC is defensive or evasive without cause (why would THE FRIEND be evasive with their closest colleague unless something's wrong?). **Fix:** Rewrite the line for insider context. Or tag it `access: [authority, public]` so the smuggler never hears it. @@ -453,11 +434,11 @@ Before submitting a line, ask: ### Question 2: Does this line make sense if the detective hears it? -**Test:** Read the line aloud. Imagine the detective — a Commission investigator, new to the district, analytical training, institutional frame, no prior relationships except Sera. Does this line sound like something an NPC would say TO a detective? Or does it assume the listener already belongs to the community? +**Test:** Read the line aloud. Imagine the detective — a Commission investigator, new to the district, analytical training, institutional frame, no prior relationships except {THE FRIEND}. Does this line sound like something an NPC would say TO a detective? Or does it assume the listener already belongs to the community? **Common failures:** - NPC uses in-group slang or references without explanation (the detective doesn't have the context yet). -- NPC is too warm / too trusting (why would Voss share operational details with an investigator?). +- NPC is too warm / too trusting (why would {Supervisor} share operational details with an investigator?). - NPC volunteers sensitive information unprompted (people don't do that to authorities they don't trust). **Fix:** Rewrite the line for outsider context. Or tag it `access: [insider, peer]` so the detective never hears it. @@ -496,7 +477,7 @@ Before submitting a line, ask: **Common failures:** - Line is generic social lubricant ("Nice weather today" — there's no weather on a station). -- Line repeats information the character already has ("Kael works at the dock" — the smuggler knows this). +- Line repeats information the character already has ("they work at the dock" — the smuggler knows this). - Line doesn't connect to any NPC axis (Want, Secret, Relationship, Tolerance) or triangle tension. **Fix:** Every line should serve character, relationship, or narrative. If it doesn't, cut it or replace it with a line that does. Content budget is finite. No filler. @@ -507,7 +488,7 @@ Before submitting a line, ask: ### The Pattern -Each playable character has one "FRIEND" NPC — a production-level complex character that exercises every content and systems pipeline at full depth. THE FRIEND is the emotional centerpiece of v0.1 and carries D-027 success criterion #3 ("player names an NPC they felt conflicted about"). +Each playable character has one "FRIEND" NPC — a production-level complex character that exercises every content and systems pipeline at full depth. THE FRIEND is the emotional centerpiece and carries D-027 success criterion #3 ("player names an NPC they felt conflicted about"). **THE FRIEND follows a reusable pattern:** @@ -524,108 +505,71 @@ Each playable character has one "FRIEND" NPC — a production-level complex char --- -### Smuggler's FRIEND: Kael Davan +### Smuggler's FRIEND -**Who:** Dock worker, Sova Transit District Logistics Hub. The smuggler's closest colleague. Ring member. Handles physical cargo routing. +*v0.1 named-NPC profile removed — cited NPCs no longer in v0.2 pipeline (D-122). Author against the active roster.* + +**Structural specification (invariant):** + +**Who:** A district worker who is the smuggler's closest colleague and a ring member. Handles physical cargo routing. **Surface Presentation (Minutes 0-10):** -Warm, reliable, slightly sardonic. Greets the smuggler with genuine affection. Talks about shift schedules, complains about Voss, asks about the smuggler's weekend. Feels like the best coworker you've ever had. +Warm, reliable, slightly sardonic. Greets the smuggler with genuine affection. Feels like the best coworker you've ever had. **What the Smuggler Knows:** -Kael is a ring member. This isn't a secret from the smuggler — it's shared context. They work together on both the legitimate side and the ring side. The smuggler trusts Kael because they've shared risk for two years. +THE FRIEND is a ring member. This is shared context. They work together on both the legitimate side and the ring side. **The Contradiction:** -The smuggler sees Kael in the restricted maintenance corridor (Corridor B-7) talking to someone the smuggler doesn't recognize. Late. Off-shift. The person leaves before the smuggler gets close. - -Smuggler monologue: *"That's Kael. But who's he talking to? I don't know that face."* - -This is NOT the detective. This is someone from outside the ring's known network. Kael has a side arrangement the smuggler doesn't know about. - -**The Shift Arc (Triangle 4: The Worried Partner)** - -Kael is at the center of Triangle 4 (Naia-Kael-Sera). His partner Naia is worried about his late nights. Naia has confided in Sera (Commission field tech, the detective's FRIEND). Kael is oblivious to the anxiety he's causing. The unknown contact is someone offering to help Kael exit the ring — to protect Naia. Kael is trying to get out. But from the smuggler's perspective, any unauthorized contact is a security breach. +The smuggler sees THE FRIEND in a restricted area talking to someone unrecognized. Late. Off-shift. THE FRIEND has an unauthorized contact the smuggler doesn't know about. | Phase | Timing | Smuggler Observes | Monologue Register | Tell | |-------|--------|------------------|-------------------|------| -| **Phase 1: Comfort** | 0-10 min | Kael is warm, reliable, present. Business as usual. | Fond, casual: *"Kael's already at the dock. Good. The day's better when he's on shift."* | None — baseline comfortable | -| **Phase 2: First Crack** | 10-15 min | Kael checks lattice more often. Excuses himself from lunch early. | Mild concern: *"Kael's distracted today. Probably nothing."* | Behavioral: increased lattice checking, shortened interactions | -| **Phase 3: The Contradiction** | 15-20 min | Corridor B-7. Unknown contact. Spatial deviation. | Alarm + confusion: *"That wasn't anyone from our rotation. And Kael didn't tell me about a meeting."* | Spatial: Kael in unexpected location at unexpected time | -| **Phase 4: Confrontation** | 20-25 min | Smuggler asks. Kael deflects: "Just a thing. Don't worry about it." He's lying. | Betrayal crystallizing: *"He looked left before answering. He always looks left when he's making something up."* | Dialogue: evasion, subject change, the tell confirmed | -| **Phase 5: Contaminated Trust** | 25-30 min | Everything looks normal again. But the smuggler is watching. | Conflicted: *"Same old Kael. Laughing at the same jokes. ...What are you not telling me?"* | Emotional: every warm interaction is now suspicious | +| **Phase 1: Comfort** | 0-10 min | THE FRIEND is warm, reliable. Business as usual. | Fond, casual. | None — baseline | +| **Phase 2: First Crack** | 10-15 min | Increased lattice checks. Early exits. | Mild concern: "Distracted today. Probably nothing." | Behavioral deviations | +| **Phase 3: The Contradiction** | 15-20 min | Unauthorized location. Unknown contact. | Alarm + confusion: "Who is that? That's not our rotation." | Spatial deviation | +| **Phase 4: Confrontation** | 20-25 min | THE FRIEND deflects: "Just a thing. Don't worry about it." | Betrayal crystallizing: "That tell. They're lying to me." | Tell confirmed | +| **Phase 5: Contaminated Trust** | 25-30 min | Surface normality. But the smuggler is watching. | Conflicted: "Same old them. ...What are you not telling me?" | Contaminated warmth | -**RelationshipState Transition:** -`Friendly` (green) → `PersonOfInterest` (amber) at Phase 3 contradiction discovery. - -**Access Tier Shift:** -`insider` + `peer` dialogue locks out at Phase 3. Kael still talks to the smuggler, but the warmth is gone. Only `public` + `surface` lines remain. That absence IS the narrative. - -**Content Requirements:** -~70-100 authored lines (no generation expansion): -- 25-35 dialogue lines (greetings, shift talk, bar casual, ring coordination, deflection, confrontation responses) -- 15-20 trust-gated lines (insider ring talk, close colleague warmth, secret-tier hints about wanting out) -- 5-8 unprompted lines (Kael volunteers info early, warnings/deflections late) -- 10-15 monologue lines (smuggler about Kael: warmth, concern, contradiction discovery, post-confrontation, contaminated trust) -- 10-15 monologue lines (detective about Kael: identification, behavioral observation, suspicion, informant potential) -- 5-8 tell observation lines (lattice checking, distraction, looks-left tell, spatial deviation) -- 3-5 contradiction discovery lines (Corridor B-7 moment from multiple angles) +**Content Requirements:** ~70-100 authored lines per character file. --- -### Detective's FRIEND: Sera Venn +### Detective's FRIEND -**Who:** Commission field technician, off-duty bar regular. The detective's pre-existing contact in the district. Same institutional background. Transferred to Sova a year ago. The detective's social anchor. +*v0.1 named-NPC profile removed — cited NPCs no longer in v0.2 pipeline (D-122). Author against the active roster.* + +**Structural specification (invariant):** + +**Who:** A Commission field technician and bar regular. The detective's pre-existing contact in the district. Same institutional background. The detective's social anchor. **Surface Presentation (Minutes 0-10):** -Competent, slightly wry, comfortable in the district. When the detective visits the bar, Sera waves them over. Easy rapport. Fills in background — who the regulars are, what the district's like. The detective's guide to an unfamiliar place. +Competent, slightly wry, comfortable in the district. Fills in background — who the regulars are, what the district's like. The detective's guide to an unfamiliar place. **What the Detective Knows:** -Sera is reliable. She transferred for routine work after a stressful posting elsewhere. She doesn't have skin in the smuggling game. She's the detective's safe harbor. +THE FRIEND is reliable. Transferred for routine work. No skin in the smuggling game. Safe harbor. **The Contradiction:** -Sera always leaves when Torek Lintar arrives at the bar. Always. Three times in a row. Different excuses each time. "Early shift tomorrow." "Headache." "Need to check something at the kiosk." - -Detective monologue: *"That's the third time Sera's left when Torek walked in. That's not coincidence."* - -**The Shift Arc (Triangle 4: The Worried Partner)** - -Sera is at the other node of Triangle 4. Naia (Kael's partner) confides in Sera about Kael's late nights. Sera — being a Commission tech with system access — ran an unofficial compliance check on Kael's work patterns. She found manifest discrepancies. She knows something is wrong. She hasn't reported it because Naia is her friend, and reporting would mean Kael gets investigated, possibly arrested, and Naia's life falls apart. Sera is sitting on unreported evidence. She avoids Torek because Torek is ring-adjacent, and she doesn't want to be seen near him while concealing what she knows. +THE FRIEND always leaves when a specific ring-adjacent NPC arrives at the bar. Always. Three times in a row. Different excuses each time. | Phase | Timing | Detective Observes | Monologue Register | Tell | |-------|--------|-------------------|-------------------|------| -| **Phase 1: Trust** | 0-10 min | Sera is warm, informative, helpful. Shares district intel freely. | Professional + personal warmth: *"Good to see Sera. She always was the reliable one."* | None — baseline comfortable | -| **Phase 2: Background Data** | 10-15 min | Sera mentions Naia (Kael's partner) as "a friend." Naia joins them once. Genuine rapport. | Noting: *"Sera's connected here. Good. She knows the locals."* | Social: Sera has relationships outside institutional channels | -| **Phase 3: The Pattern** | 15-20 min | Third departure when Torek arrives. Three different excuses. Same result. | Suspicion activating: *"That's the third time. Three excuses, one result. That's data."* | Behavioral: avoidance pattern, excuse variety, timing correlation | -| **Phase 4: The Question** | 20-25 min | Detective asks about Torek. Sera tenses. Deflects: "He's just loud. I don't like loud drunks." | Professional analysis + personal conflict: *"She's not lying. But she's not telling me everything."* | Dialogue: controlled deflection, topic change, re-establishing warmth quickly | -| **Phase 5: Contaminated Trust** | 25-30 min | Sera continues being helpful. Maybe MORE helpful — compensating. | Analytical doubt: *"Still the same Sera. Still reliable. ...But reliable about what?"* | Emotional: detective's observation lines shift from trusting to evaluating | +| **Phase 1: Trust** | 0-10 min | THE FRIEND is warm, informative, helpful. | Professional + personal warmth: "Reliable. Finally someone who speaks my language." | None — baseline | +| **Phase 2: Background Data** | 10-15 min | THE FRIEND shows connections outside institutional channels. | Noting: "Connected here. Good." | Social: relationships beyond institutional role | +| **Phase 3: The Pattern** | 15-20 min | Third departure when the ring-adjacent NPC arrives. | Suspicion activating: "Three times. Three excuses. That's data." | Behavioral: avoidance pattern | +| **Phase 4: The Question** | 20-25 min | Detective asks. THE FRIEND deflects. | Analysis + personal conflict: "Not lying. But not telling everything." | Controlled deflection | +| **Phase 5: Contaminated Trust** | 25-30 min | THE FRIEND continues being helpful. Maybe too helpful. | Analytical doubt: "Still reliable. ...But reliable about what?" | Evaluating what was trusted | -**RelationshipState Transition:** -`Friendly` (green) → `PersonOfInterest` (amber) at Phase 3 pattern confirmation. - -**Access Tier Shift:** -`peer` dialogue available at Phase 1-2. At Phase 3, `authority` dialogue unlocks (detective can press institutional leverage questions). `peer` warmth remains but is contaminated. - -**Content Requirements:** -~70-100 authored lines (no generation expansion): -- 25-35 dialogue lines (bar greetings, district orientation, Naia conversation, institutional discussion, deflection about Torek, confrontation responses) -- 15-20 trust-gated lines (peer-tier institutional background, secret-tier hints about what she found) -- 5-8 unprompted lines (Sera volunteers district background early, steers away from sensitive areas late) -- 10-15 monologue lines (detective about Sera: trust/relief, pattern observation, contradiction discovery, post-confrontation) -- 10-15 monologue lines (smuggler about Sera: institutional categorization, avoidance notation, cautious assessment) -- 5-8 tell observation lines (avoidance pattern x3, topic deflection, overcompensation helpfulness, extended kiosk time) -- 3-5 contradiction discovery lines (third departure from multiple angles) +**Content Requirements:** ~70-100 authored lines per character file. --- ### Why THE FRIEND Works Narratively -**Kael's contradiction isn't "Kael is secretly evil."** -The contradiction is "Kael is secretly desperate, and his desperation is making him do exactly the kind of thing that could get everyone caught." The smuggler's anger is justified (protocol breach). Kael's motivation is sympathetic (protecting family). No clean answer. That's the conflict. - -**Sera's contradiction isn't "Sera is corrupt."** -The contradiction is "Sera is a good person making a terrible choice: loyalty to a friend vs. duty to her institution." The detective's discovery doesn't reveal a villain — it reveals a moral compromise the detective might understand. The question becomes: do I report Sera? Use what she knows? Confront and risk losing my only ally? +**The contradiction isn't "THE FRIEND is secretly evil."** +The contradiction is that THE FRIEND is desperate, or protecting someone, or making a terrible choice between loyalty and duty. Their motivation is sympathetic. The player's response is justified. No clean answer. That's the conflict. **Dual-Lens Resonance:** -The smuggler who's played the detective path knows the investigation is closing in — Kael's exit attempt reads differently (not betrayal, desperation). The detective who's played the smuggler path knows why Sera is protecting Naia — Sera's silence reads differently (not corruption, loyalty). +The player who's completed both paths understands why THE FRIEND behaved as they did from both angles. The first reading felt like betrayal or concealment. The second reading reveals it as protection or fear. Same NPC. Different understanding. --- @@ -639,11 +583,11 @@ The smuggler who's played the detective path knows the investigation is closing | Parameter | Value | Example | |-----------|-------|---------| -| **Sentence length** | Short. Fragments welcome. Rarely more than 2 sentences per monologue. | *"Kael's here. Good."* | +| **Sentence length** | Short. Fragments welcome. Rarely more than 2 sentences per monologue. | *"They're here. Good."* | | **Vocabulary** | Concrete, physical, sensory. Trade jargon (containers, manifests, shifts, routes) without explaining. No institutional language. | *"Recycled air and cargo lubricant."* Not: "Standard atmospheric recycling." | | **Emotional register** | Feeling-first, analysis second. Names the gut before the brain catches up. | *"Starting to worry"* before *"something's off."* | -| **Relationship mode** | First-name basis. People defined by connection, not role. | *"Kael"* not *"Davan."* *"Voss is tense"* not *"the shift supervisor seems agitated."* | -| **Observation priority** | People > environment > objects. Notices body language before cargo. | *"Kael keeps checking his lattice"* before *"Container 4471 is still in temp."* | +| **Relationship mode** | First-name basis. People defined by connection, not role. | *"{THE FRIEND}"* not *"{Surname}."* *"{NPC} is tense"* not *"the shift supervisor seems agitated."* | +| **Observation priority** | People > environment > objects. Notices body language before cargo. | *"THE FRIEND keeps checking their lattice"* before *"Container 4471 is still in temp."* | | **Operational thinking** | Present when thinking about the job. Time-aware, route-aware, schedule-aware. Filtered through "is this safe for my people?" | *"Transition window opens in fifty minutes."* | | **Self-reference** | Rare. Thinks about others, not herself. When it occurs, through physical sensation. | *"My stomach dropped"* not *"I feel betrayed."* | | **Humor** | Dry, situational, understated. Dark when stressed. Never witty. | *"Home sweet home"* about a cargo bay. | @@ -656,20 +600,20 @@ The smuggler who's played the detective path knows the investigation is closing #### Voice Anchors (Reference Lines) -These 5 lines define the boundaries. Every smuggler monologue should feel like it could sit next to these: +These 5 lines define the register. Every smuggler monologue should feel like it could sit next to these: -1. **Baseline warm:** *"Kael's already at the dock. Good. The day's better when he's on shift."* -2. **Operational:** *"Shift transition in thirty minutes. If Voss kept the schedule thin, the route's clear."* -3. **Concerned:** *"Kael keeps checking his lattice. Waiting for a message? Not like him to be jumpy."* -4. **Hurt:** *"He looked left. He always looks left when he's making something up. Two years I've known that tell. Kael is lying to me."* +1. **Baseline warm:** *"Already at the dock. Good. The day's better when they're on shift."* +2. **Operational:** *"Shift transition in thirty minutes. If the supervisor kept the schedule thin, the route's clear."* +3. **Concerned:** *"They keep checking their lattice. Waiting for a message? Not like them to be jumpy."* +4. **Hurt:** *"That tell. They always do that when they're making something up. I've known that tell for years. They're lying to me."* 5. **Atmospheric:** *"Morning shift. Recycled air and cargo lubricant. Home sweet home."* #### Anti-Patterns (What the Smuggler Does NOT Sound Like) -- *"I should investigate this anomaly further."* (Too clinical. She'd think: *"That's not right."*) -- *"The scheduling irregularity suggests systemic manipulation."* (Institutional vocabulary. She'd think: *"Voss changed the rotation again."*) -- *"I need to consider the implications of Kael's behavior for our operational security."* (Analytical distance. She'd think: *"What the hell is Kael doing?"*) -- *"According to the manifest, container 4471 should weigh 240 kilograms."* (Explaining what she already knows. She'd think: *"4471's heavy. Too heavy."*) +- *"I should investigate this anomaly further."* (Too clinical. They'd think: *"That's not right."*) +- *"The scheduling irregularity suggests systemic manipulation."* (Institutional vocabulary. They'd think: *"The rotation changed again."*) +- *"I need to consider the implications of their behavior for our operational security."* (Analytical distance. They'd think: *"What the hell are they doing?"*) +- *"According to the manifest, this container should weigh 240 kilograms."* (Explaining what they already know. They'd think: *"Too heavy."*) --- @@ -682,10 +626,10 @@ These 5 lines define the boundaries. Every smuggler monologue should feel like i | Parameter | Value | Example | |-----------|-------|---------| | **Sentence length** | Complete sentences, but not long. More structured than the smuggler. Occasional fragments for emphasis. | *"Standard prefab, heavy foot traffic. Let's see what the shift change tells me."* | -| **Vocabulary** | Institutional layer over plain speech. Professional terms: "case file," "filing it," "noted," "flagged." Not technical jargon — investigative habit. | *"Dock worker. Davan, K. Unremarkable on paper."* The surname-comma-initial is institutional reflex. | -| **Emotional register** | Analysis-first, personal second. When personal breaks through, it's notable — a crack in the professional surface. | *"She's not lying. But she's not telling me everything. Sera, what do you know?"* The first-name appeal IS the emotion. | -| **Relationship mode** | Surname-first for targets and unknowns. First-name for allies and trusted. The shift IS a relationship marker. | *"Davan, K."* early → *"Kael"* never (smuggler's FRIEND, not detective's). *"Sera"* always (detective's FRIEND). | -| **Observation priority** | Patterns > people > environment. Notices deviations from expected before noticing the person. | *"That's twice now"* before *"Sera leaves."* The count matters more than the actor. | +| **Vocabulary** | Institutional layer over plain speech. Professional terms: "case file," "filing it," "noted," "flagged." Not technical jargon — investigative habit. | *"Dock worker. {Surname}, {initial}. Unremarkable on paper."* The surname-comma-initial is institutional reflex. | +| **Emotional register** | Analysis-first, personal second. When personal breaks through, it's notable — a crack in the professional surface. | *"They're not lying. But they're not telling me everything. {THE FRIEND}, what do you know?"* The first-name appeal IS the emotion. | +| **Relationship mode** | Surname-first for targets and unknowns. First-name for allies and trusted. The shift IS a relationship marker. | *"{Surname}, {initial}."* early → *"{first name}"* never (smuggler's FRIEND, not detective's). *"{THE FRIEND}"* always (detective's FRIEND). | +| **Observation priority** | Patterns > people > environment. Notices deviations from expected before noticing the person. | *"That's twice now"* before *"{THE FRIEND} leaves."* The count matters more than the actor. | | **Analytical thinking** | Automatic. Counts, tracks, flags. Self-directs: "filing it," "noted," "coincidence?" Internal bookkeeping. | *"Three times. Three excuses. That's data."* | | **Self-reference** | More common than the smuggler, but always through professional lens. Monitors own state as evidence. | *"I'm reading too much into this"* — self-aware about analytical bias. | | **Humor** | Wry, observational. Appreciates irony at a distance. Can laugh at himself. Never cruel. | *"Only place in this district that doesn't smell like freight lubricant."* | @@ -699,16 +643,16 @@ These 5 lines define the boundaries. Every smuggler monologue should feel like i #### Voice Anchors (Reference Lines) 1. **Clinical baseline:** *"Logistics hub. Standard prefab, heavy foot traffic. Let's see what the shift change tells me."* -2. **Pattern recognition:** *"That's the third time. Sera leaves when Torek arrives. Three different excuses, same result. That's not coincidence."* -3. **Personal leak:** *"Good to see Sera. She always was the reliable one. At least someone in this district speaks my language."* -4. **Conflicted:** *"Same booth. Same warm smile. Same offer to buy me a drink. ...Everything except whatever she's not saying."* +2. **Pattern recognition:** *"That's the third time. {THE FRIEND} leaves when {NPC} arrives. Three different excuses, same result. That's not coincidence."* +3. **Personal leak:** *"Good to see them. Always the reliable one. At least someone in this district speaks my language."* +4. **Conflicted:** *"Same booth. Same warm smile. Same offer to buy me a drink. ...Everything except whatever they're not saying."* 5. **Atmospheric:** *"Grain spirit and low conversation. Only place in this district that doesn't smell like freight lubricant."* #### Anti-Patterns (What the Detective Does NOT Sound Like) -- *"Kael's here. Good."* (Too terse. That's the smuggler. The detective: *"Davan's on shift. Standard."*) -- *"I feel uneasy about Sera's behavior."* (Direct emotional vocabulary. He'd think: *"Something's off with Sera. Can't place it yet."*) -- *"This container has been tampered with, indicating smuggling activity."* (Explaining the obvious. He'd think: *"Weight's wrong. Noted."*) +- *"They're here. Good."* (Too terse. That's the smuggler. The detective: *"{Surname}'s on shift. Standard."*) +- *"I feel uneasy about their behavior."* (Direct emotional vocabulary. They'd think: *"Something's off with them. Can't place it yet."*) +- *"This container has been tampered with, indicating smuggling activity."* (Explaining the obvious. They'd think: *"Weight's wrong. Noted."*) - *"My heart sank when I saw the evidence."* (Physical emotion — smuggler's register. Detective: *"Didn't want to see that. But there it is."*) --- @@ -722,17 +666,17 @@ These 5 lines define the boundaries. Every smuggler monologue should feel like i **Trigger:** Entering the bar. -- **Smuggler:** *"Lera's. Grain spirit and noise. Could use both right now."* -- **Detective:** *"The Last Shift. Same crowd as yesterday. Let's see who's NOT here tonight."* +- **Smuggler:** *"The bar. Grain spirit and noise. Could use both right now."* +- **Detective:** *"Same crowd as yesterday. Let's see who's NOT here tonight."* -**Trigger:** Noticing Naia Tamm is upset. +**Trigger:** Noticing a civilian NPC (THE MIRROR type) is visibly upset. -- **Smuggler:** *"Naia looks rough today. Should check on her later."* -- **Detective:** *"Tamm seems distressed. Not her baseline. Something at home, or something she's heard?"* +- **Smuggler:** *"They look rough today. Should check on them later."* +- **Detective:** *"Seems distressed. Not their baseline. Something at home, or something they've heard?"* **Trigger:** Hearing raised voices behind a door. -- **Smuggler:** *"Raised voices from the back room. Devra's in there. That's not a brokering call."* +- **Smuggler:** *"Raised voices from the back room. That's not a routine call."* - **Detective:** *"Arguing behind that door. The bartender didn't flinch. Either she's used to it or she knows what it is."* --- @@ -747,4 +691,4 @@ That's the job. --- -**End Dual Lens Authoring Guide v0.1** +**End Dual Lens Authoring Guide** diff --git a/wiki/authoring/environmental-text-examples.md b/wiki/authoring/environmental-text-examples.md index e038c2f11..730547da6 100644 --- a/wiki/authoring/environmental-text-examples.md +++ b/wiki/authoring/environmental-text-examples.md @@ -6,32 +6,32 @@ category: authoring-guide status: canonical created: 2026-02-13 updated: 2026-02-13 -tags: [v0.1, authoring, environmental-text] -decision_refs: [D-016, D-032, D-036] -cross_refs: [monologue-guide, the-last-shift, the-terminal, maintenance-corridors] +tags: [authoring, environmental-text] +decision_refs: [D-016, D-032] +cross_refs: [monologue-guide] --- # Environmental Text Examples -Worked examples of diegetic environmental text for Sova Transit District. Each example is Van Maanen's Star-voiced (working-class, direct, compact) with cultural notes explaining the choices, followed by monologue pairings showing how the smuggler and detective read the same text differently. +Worked examples of diegetic environmental text for a working freight district. Each example is mid-Reach industrial-voiced (working-class, direct, compact) with cultural notes explaining the choices, followed by monologue pairings showing how the smuggler and detective read the same text differently. Environmental text is not decoration. It is world-state that the player reads through their character's perspective. The same sign on the same wall tells two different stories. --- -## 1. Bar Menu — The Last Shift +## 1. Bar Menu — The Local Bar -Mounted behind the bar counter. Hand-lettered on a metal panel in Lera's handwriting. Prices in station credits. Menu changes rarely — when an item runs out, Lera crosses it off and writes the replacement below. +Mounted behind the bar counter. Hand-lettered on a metal panel in the bar owner's handwriting. Prices in station credits. Menu changes rarely — when an item runs out, it gets crossed off and the replacement written below. ### The Text ``` -LERA'S +THE LAST SHIFT -Grain spirit (Sova-brewed) 4 +Grain spirit (station-brewed) 4 Grain spirit, double 7 Station lager 5 -Imported lager (Van Maanen's Star Prime) 12 +Imported lager (system prime) 12 Synth ale (cold) 3 Fried protein + bread 6 @@ -45,15 +45,15 @@ Last call 01:30. ### Cultural Notes - **Pricing tells a story.** Imported lager at 12 credits — five shifts' disposable income for a logistics worker earning 200 credits margin per month. Ordering one is a status display. The smuggler knows who can afford it and who's showing off. The detective notes the financial tell. -- **"Ask what's in it"** — Van Maanen's Star directness. Lera doesn't pretend the stew is gourmet. The regulars don't care. This is food for people who need to eat, not a dining experience. -- **"No tabs. No arguments."** — Lera has been burned. The two-rule footer is social infrastructure: it prevents the awkward conversation where a colleague can't pay, which would damage the bar's function as a place where status is temporarily suspended. -- **Hand-lettered** — not Meridian-displayed. This is deliberate. A printed menu could be updated remotely. A hand-lettered one means Lera stood here and wrote it. It says: this is mine. +- **"Ask what's in it"** — Mid-Reach freight-district directness. No pretense that the stew is gourmet. The regulars don't care. This is food for people who need to eat, not a dining experience. +- **"No tabs. No arguments."** — The owner has been burned. The two-rule footer is social infrastructure: it prevents the awkward conversation where a colleague can't pay, which would damage the bar's function as a place where status is temporarily suspended. +- **Hand-lettered** — not Meridian-displayed. A printed menu could be updated remotely. A hand-lettered one means the owner stood here and wrote it. It says: this is mine. - **No cocktails, no wine, no elaboration.** The menu matches the clientele: shift workers who want a drink, food, and to be left alone. Complexity would be pretension. ### Monologue Pairings **Smuggler** (on entering The Last Shift, sees menu): -> Same menu. Same prices. Lera hasn't changed the stew description in three years. +> Same menu. Same prices. They haven't changed the stew description in three years. *Tags: [environmental, atmospheric]. Trigger: enter_location. This is comfort. Sameness is safety.* @@ -62,28 +62,28 @@ Last call 01:30. *Tags: [environmental, investigation]. Trigger: enter_location. The detective reads the menu as economic data.* -**Smuggler** (on observing Torek ordering imported lager): -> Torek's buying the good stuff again. That's three times this week. +**Smuggler** (on observing a ring-adjacent NPC ordering imported lager): +> Buying the good stuff again. That's three times this week. -*Tags: [npc, torek, concern]. Trigger: observe_npc. The smuggler sees financial exposure — Torek's spending beyond what his official income explains.* +*Tags: [npc, concern]. Trigger: observe_npc. The smuggler sees financial exposure — spending beyond what official income explains.* -**Detective** (on observing Torek ordering imported lager): -> Lintar, T. Third imported lager this rotation. Spending pattern inconsistent with pay grade. +**Detective** (on observing a ring-adjacent NPC ordering imported lager): +> {Surname}, {initial}. Third imported lager this rotation. Spending pattern inconsistent with pay grade. -*Tags: [npc, torek, investigation, evidence]. Trigger: observe_npc. Same observation, institutional framing. Surnames, initials, pay grade — the language of a case file.* +*Tags: [npc, investigation, evidence]. Trigger: observe_npc. Same observation, institutional framing. Surnames, initials, pay grade — the language of a case file.* --- -## 2. Safety Notice — The Terminal +## 2. Safety Notice — Logistics Hub -Mounted on the wall near Scanner Bay 3. Concordat Standard official text with Van Maanen's Star vernacular annotation added by a worker in marker. The notice is slightly peeling at the bottom-left corner. Nobody has replaced it in months. +Mounted on the wall near Scanner Bay 3. Concordat Standard official text with freight-district vernacular annotation added by a worker in marker. The notice is slightly peeling at the bottom-left corner. Nobody has replaced it in months. ### The Text **[Official — Concordat Standard, printed]** ``` -SOVA TRANSIT LOGISTICS — BAY 7-C +DISTRICT LOGISTICS HUB — BAY 7-C SCANNER BAY 3: OPERATIONAL ADVISORY Spectral calibration drift detected (Report #ST-4471). @@ -101,7 +101,7 @@ to Bays 1 or 2 pending recalibration. ### Cultural Notes -- **Institutional vs. vernacular** — the two voices on this sign are the two voices of Sova. The printed notice is how the institution talks: passive voice, report numbers, procedures. The marker annotation is how the workers talk: direct, sardonic, lowercase. +- **Institutional vs. vernacular** — the two voices on this sign are the two voices of the district. The printed notice is how the institution talks: passive voice, report numbers, procedures. The marker annotation is how the workers talk: direct, sardonic, lowercase. - **"Pending recalibration"** is doing heavy narrative work. The calibration drift in Bay 3 is real — it produces less reliable scan results. Station maintenance hasn't fixed it because it's low-priority. The ring routes flagged containers through Bay 3 precisely because of this drift. An institutional failure becomes criminal infrastructure. - **The peeling corner** — nobody maintains the notice because nobody cares about the notice. The institutional voice has lost authority through inaction. The hand-written annotation has more social force than the printed text. - **Report #ST-4471** — bureaucratic specificity that makes the notice feel real and gives the detective something to query. @@ -125,7 +125,7 @@ to Bays 1 or 2 pending recalibration. --- -## 3. News Ticker Cycle — Meridian Feed at The Last Shift +## 3. News Ticker Cycle — Meridian Feed at the Bar Displayed on the Meridian feed screen mounted above the bar. Scrolling text, standard news format. The cycle repeats every 8-10 minutes. Nobody watches it directly — it's ambient information, absorbed peripherally. Occasionally a headline makes someone look up. @@ -138,27 +138,27 @@ Displayed on the Meridian feed screen mounted above the bar. Scrolling text, sta 2. CONCORD ASSEMBLY SESSION 1147: LATTICE STANDARDIZATION AMENDMENT PASSES SECOND READING. IMPLEMENTATION TBD. -3. SOVA STATION: VENTILATION UPGRADE FOR SECTORS 2-4 +3. STATION: VENTILATION UPGRADE FOR SECTORS 2-4 APPROVED IN NEXT FISCAL CYCLE. TIMELINE NOT CONFIRMED. 4. MEDICAL SUPPLY ADVISORY: NEURAL INTERFACE REPLACEMENT COMPONENTS ON 6-WEEK BACKORDER. CONTACT YOUR PROVIDER. 5. COMMISSION ADVISORY: ROUTINE COMPLIANCE ASSESSMENT - SCHEDULED FOR VAN MAANEN SYSTEM STATIONS. DATES TO FOLLOW. + SCHEDULED FOR MID-REACH SYSTEM STATIONS. DATES TO FOLLOW. -6. VAN MAANEN PRIME DOCKWORKERS LEAGUE VS. ORBITAL 3 UNITED: +6. FREIGHT DISTRICT DOCKWORKERS LEAGUE VS. ORBITAL 3 UNITED: MATCH DAY 7. BROADCAST 19:00 MERIDIAN STANDARD. ``` ### Cultural Notes -- **Headline 1 (freight backlog)** — affects every worker in the room. Backlog means overtime or schedule disruption. It's the one headline people actually respond to. Lera turns up the volume when freight news scrolls. +- **Headline 1 (freight backlog)** — affects every worker in the room. Backlog means overtime or schedule disruption. It's the one headline people actually respond to. The bar owner turns up the volume when freight news scrolls. - **Headline 2 (lattice standardization)** — Assembly politics. Most workers ignore it. But "lattice standardization" has a chill to it: tighter standards mean tighter inspections, which means the grey market gets harder. The smuggler hears threat. The detective hears institutional support. - **Headline 3 (ventilation upgrade)** — the universal safe topic. "Approved in next fiscal cycle" means "probably never." Workers have been complaining about ventilation for months. This headline generates eye-rolls and muttered commentary that fills conversational space. - **Headline 4 (neural interface backorder)** — the one that matters most and says least. Neural interface replacements are essential medical supplies. A 6-week backorder on legitimate channels is exactly why the smuggling ring exists: people need these components, the legal supply chain can't deliver, and someone fills the gap. The headline is the ring's business case, printed on a news ticker. - **Headline 5 (Commission assessment)** — "routine" is a word that means nothing and everything. Routine for the Commission. Not routine for a district that hasn't had a liaison in three months and has been operating in the gap. "Dates to follow" means: start worrying now. -- **Headline 6 (sports)** — normalcy. The match is what most people in the bar actually care about. It's the headline that makes Sova feel like a place where people live, not just a setting for a crime story. +- **Headline 6 (sports)** — normalcy. The match is what most people in the bar actually care about. It's the headline that makes the district feel like a place where people live, not just a setting for a crime story. ### Monologue Pairings @@ -186,11 +186,11 @@ Displayed on the Meridian feed screen mounted above the bar. Scrolling text, sta ## 4. Corridor Graffiti — Maintenance Corridors -Found at three points along Corridor B-7. The graffiti exists in layers: old maintenance worker marks (decades old, institutional), informal worker tags (years old, social), and recent ring-related marks (weeks to months old, operational). The layers tell the corridor's history. +Found at three points along the restricted maintenance corridor. The graffiti exists in layers: old maintenance worker marks (decades old, institutional), informal worker tags (years old, social), and recent ring-related marks (weeks to months old, operational). The layers tell the corridor's history. ### The Text -**Location: Near south entry (Terminal break room hatch), on the right wall** +**Location: Near south entry (logistics hub break room hatch), on the right wall** ``` [Marker, faded, ~30 years old:] @@ -226,7 +226,7 @@ shift 3 crew '94 ### Cultural Notes - **VNT-7 JUNCTION** — institutional remnant. This corridor used to be on the maintenance map. The directional marking is from the era when workers were dispatched here officially. It's a ghost of the corridor's legitimate past. -- **"kosse was here. day 1171."** — a maintenance worker who counted their shifts. Van Maanen's Star naming convention (compact, consonant-heavy). Day 1171 is roughly 3.2 years of shift cycles. Someone who spent long enough in these corridors to mark their territory. Kosse is probably retired or transferred. The name persists. +- **"kosse was here. day 1171."** — a maintenance worker who counted their shifts. A common corridor naming convention (compact, consonant-heavy). Day 1171 is roughly 3.2 years of shift cycles. Someone who spent long enough in these corridors to mark their territory. The worker is probably retired or transferred. The name persists. - **"N.T. + someone who deserved better"** — a small human moment in infrastructure space. The initials could be anyone. The sentiment is universal. It humanizes the corridor — people have always come here for privacy, long before the ring did. - **The chalk marks** — `—||—` and `|||` — are ring operational markers. They're meaningless to anyone who doesn't know the system. The double-bar mark near the south entry indicates "route active." The three vertical lines near the ventilation hub indicate a count — possibly dead drop cycles, possibly something else. The ring's internal signaling is deliberately ambiguous: even if you find the marks, you can't read them without context. - **Chalk, not marker** — the ring uses chalk because it can be wiped. Marker is permanent. The choice of medium is operational security. @@ -235,7 +235,7 @@ shift 3 crew '94 ### Monologue Pairings **Smuggler** (passing the chalk mark near south entry): -> Mark's fresh. Route's active. Renn was through here recently. +> Mark's fresh. Route's active. Someone was through here recently. *Tags: [environmental, operational]. Trigger: enter_location. The smuggler reads the chalk like a message — because it is one. No emotional response. It's a status indicator.* @@ -265,7 +265,7 @@ shift 3 crew '94 1. **The text exists before the player arrives.** It was written by someone for a reason that has nothing to do with the player. Write it for the character who put it there, not the character who reads it. -2. **Van Maanen's Star voice is direct.** No flourishes, no unnecessary words, no corporate warmth. "No tabs. No arguments." not "We kindly request that all patrons settle their accounts at time of service." +2. **The freight district voice is direct.** No flourishes, no unnecessary words, no corporate warmth. "No tabs. No arguments." not "We kindly request that all patrons settle their accounts at time of service." 3. **Institutional text and vernacular text coexist.** The tension between them IS the setting. The printed notice says what the institution wants. The hand-written annotation says what the workers know. @@ -279,13 +279,8 @@ shift 3 crew '94 **Cross-References:** - [Monologue Authoring Guide](monologue-guide.md) — Monologue formatting and tag reference -- [The Last Shift](../star-systems/van-maanens-star/sova/transit/the-last-shift.md) — Bar location profile -- [The Terminal](../star-systems/van-maanens-star/sova/transit/the-terminal.md) — Logistics hub profile -- [Maintenance Corridors](../star-systems/van-maanens-star/sova/transit/maintenance-corridors.md) — Corridor B-7 profile -- [Sova Transit District](../star-systems/van-maanens-star/sova/transit/index.md) — District overview - D-016: Internal monologue as primary narrative system - D-032: Separate monologue pools per character -- D-036: Sova Transit District as v0.1 setting --- diff --git a/wiki/authoring/line-id-authoring-guide.md b/wiki/authoring/line-id-authoring-guide.md index 7373df6fd..00fdce29a 100644 --- a/wiki/authoring/line-id-authoring-guide.md +++ b/wiki/authoring/line-id-authoring-guide.md @@ -9,7 +9,7 @@ ## The Short Version - **Role pool lines:** Use `{role-slug}_d_{###}` — e.g., `dock-worker_d_001`. These lines are shared by all NPCs with that role. This is the default for all auto-generated NPC content. -- **Named NPC lines:** Use `{npc-slug}_d_{###}` — e.g., `kael-davan_d_001`. Unchanged from current practice. +- **Named NPC lines:** Use `{npc-slug}_d_{###}` — e.g., `friend-npc_d_001`. Unchanged from current practice. - **Instance-specific lines (rare):** Use `{role-slug}-{counter}_d_{###}` — e.g., `dock-worker-07_d_001`. Only needed when a specific generated NPC needs content different from the role pool. --- @@ -28,12 +28,12 @@ This means the role pool approach already handles most cases — the "collision ``` Format: {npc-slug}_{content-type}_{###} -Example: kael-davan_d_001 (Kael's dialogue line 1) - sera-venn_d_015 (Sera's dialogue line 15) +Example: friend-npc_d_001 (authored NPC dialogue line 1) + mirror-npc_d_015 (authored NPC dialogue line 15) pc-smuggler_m_s_001 (Smuggler monologue line 1) ``` -File location: One file per NPC (e.g., `dialogue/maintenance-corridors/kael-davan.yaml`) +File location: One file per NPC (e.g., `dialogue/{location}/{npc-slug}.yaml`) Numbering: Sequential within the file. Gaps are acceptable (deleted lines leave permanent gaps). Never reuse a number. @@ -74,7 +74,7 @@ File location: Same directory as the role pool file, separate file with instance | Situation | ID format to use | |-----------|------------------| -| Named authored NPC (Kael, Sera, Voss...) | `{npc-slug}_d_{###}` | +| Named authored NPC (THE FRIEND, authored Tier 1...) | `{npc-slug}_d_{###}` | | Lines any dock worker can say | `dock-worker_d_{###}` | | Lines any bar regular can say | `bar-regular_d_{###}` | | Generated NPC with specific triangle role | `{role-slug}-{counter}_d_{###}` | @@ -93,7 +93,7 @@ The existing ID regex `^[a-z][a-z0-9-]*_[dme]_\d{3}$` accepts all three formats. 1. Start at `001`, increment by 1 for each new line. 2. Never reuse a number, even if a line is deleted. Gaps are fine. 3. Lines within a single file have a contiguous prefix — `dock-worker_d_001` through `dock-worker_d_042`, etc. -4. Cross-file: `kael-davan.yaml` at the terminal and `kael-davan.yaml` at maintenance corridors both use the `kael-davan_d_###` namespace. Continue numbering from where the other file left off (check the existing files first, use a fresh sequence if the NPC is new to a location). +4. Cross-file: `{npc-slug}.yaml` at the terminal and `{npc-slug}.yaml` at a second location both use the same `{npc-slug}_d_###` namespace. Continue numbering from where the other file left off (check the existing files first, use a fresh sequence if the NPC is new to a location). --- diff --git a/wiki/authoring/monologue-guide.md b/wiki/authoring/monologue-guide.md index 5d5a15d61..fd255d397 100644 --- a/wiki/authoring/monologue-guide.md +++ b/wiki/authoring/monologue-guide.md @@ -26,13 +26,13 @@ How to write tagged monologue and dialogue content for The Settled Reach. Read t ## Location Shortcodes -Canonical shortcodes for v0.1 Sova Transit District. Used in line IDs (`{shortcode}_{type}_{###}`) and file naming. +Location shortcodes are defined per district. Used in line IDs (`{shortcode}_{type}_{###}`) and file naming. Author per-district shortcode tables in the district wiki entry. -| Shortcode | Location | Full Name | D-036 Reference | -|-----------|----------|-----------|-----------------| -| `terminal` | Logistics Hub | The Terminal | Primary workplace social site | -| `bar` | The Last Shift | Lera's (informal) | Social venue | -| `corridor` | Maintenance corridors | Corridor B-7 (primary) | Smuggling/service spaces | +| Shortcode | Location Type | Notes | +|-----------|-------------|-------| +| `terminal` | Primary workplace (logistics hub, factory floor, etc.) | Assign per district | +| `bar` | Social venue (bar, canteen, commons) | Assign per district | +| `corridor` | Service / restricted spaces | Assign per district | **File naming convention:** `{shortcode}-{character}.yaml` (e.g., `terminal-smuggler.yaml`, `bar-detective.yaml`) @@ -99,14 +99,14 @@ Every line carries structural tags, selection tags, and (for monologue) characte | `role` | enum | Template-defined role, not NPC name (NPC assignment is runtime) | | `access` | list\ | Hard filter: `public`, `insider`, `authority`, `peer`, `hostile` | | `trust` | enum | Hard filter: `surface`, `real`, `secret` | -| `situation` | list\ | Context filter (13 situations for v0.1) | +| `situation` | list\ | Context filter (13 situations) | ### Selection Tags (recommended, defaults apply if empty) | Tag | Type | Purpose | |-----|------|---------| -| `topic` | list\ | Weighted selection (9 topics for v0.1) | -| `mood` | list\ | Weighted selection (8 moods for v0.1) | +| `topic` | list\ | Weighted selection (9 topics) | +| `mood` | list\ | Weighted selection (8 moods) | | `tags` | list\ | Freeform escape hatch for author intent | ### Monologue-Specific Tags (added to structural + selection) @@ -126,15 +126,15 @@ Every line carries structural tags, selection tags, and (for monologue) characte ### Enum Values -**`situation`** (13 for v0.1): +**`situation`** (13): `arrival`, `shift_start`, `shift_end`, `shift_transition`, `bar_evening`, `night_shift`, `investigation`, `confrontation`, `social`, `alone`, `emergency`, `routine`, `observation` -**`topic`** (9 for v0.1): +**`topic`** (9): `colleague`, `routine`, `cargo`, `money`, `trust`, `danger`, `institution`, `personal`, `investigation` Note: no `crime` or `smuggling` topic. NPCs think of it as `cargo` or `money`. The detective uses `investigation`. -**`mood`** (8 for v0.1): +**`mood`** (8): `fond`, `comfortable`, `worried`, `suspicious`, `analytical`, `conflicted`, `concerned`, `relieved` --- @@ -179,18 +179,18 @@ Fires when a known entity enters the player's line of sight. ```yaml - id: terminal_m_020 - text: "Kael's here. Good — I was starting to worry." + text: "{THE FRIEND}'s here. Good — I was starting to worry." character: smuggler trigger: observe_npc mood: [fond] prerequisite: relationship_state: Friendly - subject: kael_davan + subject: {friend_npc_slug} ``` ```yaml - id: terminal_m_021 - text: "Dock worker from the case file. Davan, K. Unremarkable on paper." + text: "Dock worker from the case file. {Surname}, {initial}. Unremarkable on paper." character: detective trigger: observe_npc mood: [analytical] @@ -209,7 +209,7 @@ Fires on audio events — ambient, diegetic, or anomalous. ```yaml - id: bar_m_030 - text: "Raised voices from the back room. Devra's in there. That's not a brokering call." + text: "Raised voices from the back room. That's not a routine call." character: smuggler trigger: hear_sound mood: [concerned] @@ -237,24 +237,24 @@ Fires when the player observes something that contradicts expected state — a c ```yaml - id: terminal_m_040 - text: "Kael's checking his lattice again. Third time in ten minutes. That's not normal." + text: "{THE FRIEND}'s checking their lattice again. Third time in ten minutes. That's not normal." character: smuggler trigger: observe_anomaly mood: [worried] prerequisite: relationship_state: Friendly - subject: kael_davan + subject: {friend_npc_slug} ``` ```yaml - id: terminal_m_041 - text: "Dock worker Davan — lattice activity spiked. Expecting a message? Or checking for surveillance?" + text: "Dock worker {Surname} — lattice activity spiked. Expecting a message? Or checking for surveillance?" character: detective trigger: observe_anomaly mood: [analytical] prerequisite: known_attributes: - subject: kael_davan + subject: {friend_npc_slug} key: behavior_flags value_contains: lattice_checking ``` @@ -269,24 +269,24 @@ Fires after a dialogue exchange ends. Internal reaction to what just happened. ```yaml - id: bar_m_050 - text: "Sera's good to have around. Knows the district, knows the people. Reliable." + text: "{THE FRIEND}'s good to have around. Knows the district, knows the people. Reliable." character: detective trigger: post_conversation mood: [fond] prerequisite: relationship_state: Friendly - subject: sera_venn + subject: {friend_npc_slug} ``` ```yaml - id: bar_m_051 - text: "She's not lying. But she's not telling me everything. Sera, what do you know?" + text: "Not lying. But not telling me everything. {THE FRIEND}, what do you know?" character: detective trigger: post_conversation mood: [conflicted] prerequisite: relationship_state: PersonOfInterest - subject: sera_venn + subject: {friend_npc_slug} ``` This is where character voice shines — the detective analyzes, the smuggler worries about people. @@ -310,7 +310,7 @@ Fires when the player finds physical evidence — a document, object, or data po ```yaml - id: terminal_m_061 - text: "4471's still in temp. Kael routed it there during transition. Standard. Nothing to worry about." + text: "4471's still in temp. Routed there during transition. Standard. Nothing to worry about." character: smuggler trigger: discover_evidence mood: [relieved] @@ -329,7 +329,7 @@ Fires when the player observes two NPCs interacting. ```yaml - id: bar_m_070 - text: "Sera's headed out. Smart — Torek gets loud after three drinks. Nobody wants to deal with that." + text: "{THE FRIEND}'s headed out. Smart — {NPC} gets loud after three drinks. Nobody wants to deal with that." character: smuggler trigger: witness_interaction mood: [comfortable] @@ -338,13 +338,13 @@ Fires when the player observes two NPCs interacting. ```yaml - id: bar_m_071 - text: "That's twice now. Sera leaves when Torek arrives. Coincidence? Filing it." + text: "That's twice now. {THE FRIEND} leaves when {NPC} arrives. Coincidence? Filing it." character: detective trigger: witness_interaction mood: [analytical] prerequisite: known_attributes: - subject: sera_venn + subject: {friend_npc_slug} key: behavior_flags value_contains: avoidance_pattern ``` @@ -364,7 +364,7 @@ Fires after inactivity — the player is standing still, watching, waiting. The trigger: time_idle mood: [relieved] prerequisite: - fact: location.corridor_b7_restricted + fact: location.restricted_corridor confidence: KnowsDetails ``` @@ -375,7 +375,7 @@ Fires after inactivity — the player is standing still, watching, waiting. The trigger: time_idle mood: [suspicious] prerequisite: - fact: location.corridor_b7_restricted + fact: location.restricted_corridor confidence: Suspects ``` @@ -389,24 +389,24 @@ Fires when the player returns to a location they've visited before. Distinct fro ```yaml - id: bar_m_090 - text: "Back at Lera's. Same seats, same faces. Sera's in the corner booth. Good." + text: "Back at the bar. Same seats, same faces. {THE FRIEND}'s in the corner booth. Good." character: detective trigger: return_visit mood: [comfortable] prerequisite: relationship_state: Friendly - subject: sera_venn + subject: {friend_npc_slug} ``` ```yaml - id: bar_m_091 - text: "Back again. Same booth. ...Let's see if Sera leaves when Torek shows up." + text: "Back again. Same booth. ...Let's see if {THE FRIEND} leaves when {NPC} shows up." character: detective trigger: return_visit mood: [suspicious] prerequisite: known_attributes: - subject: sera_venn + subject: {friend_npc_slug} key: behavior_flags value_contains: avoidance_pattern ``` @@ -437,14 +437,14 @@ prerequisite: Fires only if the active character knows the named fact at the specified confidence **or higher**. Confidence levels ordered: `Suspects` < `KnowsOf` < `KnowsDetails` < `Direct`. -Use exact FactId strings from the [Fact Catalog](../knowledge/fact-catalog.md) — `"contraband.ring_exists"` not `"Ring Exists"`. The 24 v0.1 FactIds are the only valid values. +Use exact FactId strings from the [Fact Catalog](../knowledge/fact-catalog.md) — `"contraband.ring_exists"` not `"Ring Exists"`. The 24 canonical FactIds are the only valid values. ### Gating on RelationshipState ```yaml prerequisite: relationship_state: PersonOfInterest - subject: kael_davan + subject: {npc_slug} ``` Fires only if the active character's relationship with the named entity is the specified state. States: `Unknown`, `Known`, `Friendly`, `PersonOfInterest`, `Hostile`. @@ -455,7 +455,7 @@ Fires only if the active character's relationship with the named entity is the s ```yaml prerequisite: known_attributes: - subject: kael_davan + subject: {npc_slug} key: contradiction_flagged value: meeting_unknown_contact ``` @@ -466,7 +466,7 @@ Fires if the active character's `EntityKnowledge` for the target has the exact k ```yaml prerequisite: known_attributes: - subject: kael_davan + subject: {npc_slug} key: behavior_flags value_contains: lattice_checking ``` @@ -483,9 +483,9 @@ prerequisite: - fact: contraband.ring_exists confidence: KnowsDetails - relationship_state: Friendly - subject: kael_davan + subject: {friend_npc_slug} - known_attributes: - subject: kael_davan + subject: {friend_npc_slug} key: behavior_flags value_contains: lattice_checking ``` @@ -539,12 +539,12 @@ The `access` tag on dialogue lines determines who can hear what. Access is deriv ### What this means for THE FRIEND -When Kael transitions from Friendly to PersonOfInterest: +When THE FRIEND (smuggler's) transitions from Friendly to PersonOfInterest: - `insider` lines disappear. Ring talk stops. Trust-gated confidences lock. -- `peer` lines disappear. Casual warmth dries up. Kael becomes guarded. -- `public` lines remain. Kael still greets the smuggler — but the warmth is gone. +- `peer` lines disappear. Casual warmth dries up. THE FRIEND becomes guarded. +- `public` lines remain. THE FRIEND still greets the smuggler — but the warmth is gone. -When Sera transitions from Friendly to PersonOfInterest: +When THE FRIEND (detective's) transitions from Friendly to PersonOfInterest: - `insider` lines disappear. Institutional background sharing stops. - `peer` lines disappear. Bar conversation becomes stilted. - `authority` lines unlock for the detective. Pressing questions become available. @@ -565,18 +565,18 @@ Trust is orthogonal to access. A `peer` + `surface` line is casual coworker talk ### Per-NPC access mapping -How each character relates to key NPCs: +*v0.1 named-NPC access table removed — cited NPCs no longer in v0.2 pipeline (D-122). Author per-district access mapping tables against the active NPC roster. Pattern for the standard cast:* -| NPC | Smuggler Access | Detective Access | -|-----|----------------|------------------| -| Kael (THE FRIEND) | `insider`, `peer` | `public` → `authority` (after flagging) | -| Sera (THE FRIEND) | `public` (Commission, wary) | `peer` → `authority` (post-contradiction) | -| Voss | `insider` (colleague) | `authority` | -| Lera | `insider` (bar regular) | `public` → `peer` (repeat visits) | -| Naia | `peer` (through Kael) | `public` → `peer` (through Sera) | -| Torek | `insider` or `peer` | `public` | -| Maret | `insider` (hub colleague) | `authority` | -| Drin | `insider` (hub colleague) | `authority` | +| NPC Role | Smuggler Access | Detective Access | +|----------|----------------|------------------| +| THE FRIEND (smuggler's) | `insider`, `peer` | `public` → `authority` (after flagging) | +| THE FRIEND (detective's) | `public` (Commission, wary) | `peer` → `authority` (post-contradiction) | +| Supervisor | `insider` (colleague) | `authority` | +| Bar owner | `insider` (bar regular) | `public` → `peer` (repeat visits) | +| MIRROR NPC | `peer` (through FRIEND) | `public` → `peer` (through FRIEND B) | +| Ring-adjacent NPC | `insider` or `peer` | `public` | +| Hub scheduler | `insider` (hub colleague) | `authority` | +| Compromised inspector | `insider` (hub colleague) | `authority` | --- @@ -594,27 +594,27 @@ A tell observation monologue line should: ```yaml - id: terminal_m_100 - text: "Kael keeps checking his lattice. Waiting for something." + text: "{THE FRIEND} keeps checking their lattice. Waiting for something." character: smuggler trigger: observe_anomaly mood: [concerned] topic: [colleague] prerequisite: relationship_state: Friendly - subject: kael_davan + subject: {friend_npc_slug} notes: "First tell. Updates behavior_flags: lattice_checking. Smuggler notices but doesn't flag yet." ``` ```yaml - id: terminal_m_101 - text: "Dock worker Davan — lattice activity spiked. Three pings in two minutes. Expecting a message? Or checking for surveillance?" + text: "Dock worker {Surname} — lattice activity spiked. Three pings in two minutes. Expecting a message? Or checking for surveillance?" character: detective trigger: observe_anomaly mood: [analytical] topic: [investigation] prerequisite: relationship_state: Known - subject: kael_davan + subject: {friend_npc_slug} notes: "Same tell, different read. Updates behavior_flags: lattice_checking." ``` @@ -626,7 +626,7 @@ Tells accumulate. Write them as a sequence, each gated on increasing knowledge: ```yaml prerequisite: relationship_state: Friendly - subject: kael_davan + subject: {friend_npc_slug} # No behavior_flags gate — this IS the first observation ``` @@ -634,7 +634,7 @@ prerequisite: ```yaml prerequisite: known_attributes: - subject: kael_davan + subject: {friend_npc_slug} key: behavior_flags value_contains: lattice_checking # Requires tell 1 to have fired and set the attribute @@ -645,11 +645,11 @@ prerequisite: prerequisite: all: - known_attributes: - subject: kael_davan + subject: {friend_npc_slug} key: behavior_flags value_contains: lattice_checking - known_attributes: - subject: kael_davan + subject: {friend_npc_slug} key: behavior_flags value_contains: evasive ``` @@ -668,23 +668,25 @@ Each tell should feel like a natural observation, not a checklist. The player do ### THE FRIEND tell arcs -**Kael (smuggler observes):** +*Tell arcs are authored per district against the active NPC roster — v0.1 named examples removed (D-122). The pattern structure:* + +**THE FRIEND A (smuggler observes):** | Phase | Tell | Behavior flag | Line tone | |-------|------|---------------|-----------| -| First crack | Increased lattice checking | `lattice_checking` | Concern: "Kael's distracted today." | -| Pattern | Shortened conversations, evasive | `distracted,evasive` | Worry: "Kael's been quiet lately." | +| First crack | Increased lattice checking | `lattice_checking` | Concern: "Distracted today." | +| Pattern | Shortened conversations, evasive | `distracted,evasive` | Worry: "Been quiet lately." | | Contradiction | Unauthorized spatial presence | `contradiction_flagged: meeting_unknown_contact` | Alarm: "That wasn't anyone from our rotation." | -| Confirmation | Looks left when answering | `tell_observed: looks_left_when_lying` | Hurt: "He always looks left when he's making something up." | +| Confirmation | Personal tell fires under pressure | `tell_observed: {specific_tell}` | Hurt: "That tell. I know that tell. They're lying to me." | -**Sera (detective observes):** +**THE FRIEND B (detective observes):** | Phase | Tell | Behavior flag | Line tone | |-------|------|---------------|-----------| -| First departure | Leaves when Torek arrives (once) | `avoidance_pattern` (begins) | Barely noticed: "Sera headed out. Long day." | -| Second departure | Different excuse, same trigger | `avoidance_pattern` (accumulating) | Noted: "Sera left again. She's been tired lately." | +| First departure | Leaves when ring-adjacent NPC arrives (once) | `avoidance_pattern` (begins) | Barely noticed: "Headed out. Long day." | +| Second departure | Different excuse, same trigger | `avoidance_pattern` (accumulating) | Noted: "Left again. Tired lately." | | Third departure | Pattern confirmed | `contradiction_flagged: avoidance_inconsistency` | Analytical: "Three times. Three excuses. That's data." | -| Deflection | Controlled redirect when asked | `tell_observed: controlled_deflection` | Conflicted: "She's not lying. But she's not telling me everything." | +| Deflection | Controlled redirect when asked | `tell_observed: controlled_deflection` | Conflicted: "Not lying. But not telling me everything." | --- @@ -722,17 +724,17 @@ Monologue pools are separate (D-032). But dialogue is shared — the NPC says th ### Dual-lens patterns **Innocuous surface / operational subtext:** -> "Voss adjusted the night shift again. Two workers short." +> "{Supervisor} adjusted the night shift again. Two workers short." - Smuggler: coverage gap for tonight's run - Detective: scheduling irregularity worth tracking **Social warmth / threat assessment:** -> "Sera left early. Headache, she said." -- Detective: pattern forming — third time when Torek's here +> "{THE FRIEND} left early. Headache, they said." +- Detective: pattern forming — third time when {NPC} is here - Smuggler: Commission person leaving, less oversight **Emotional resonance / clinical data:** -> "Kael's been quiet lately. Not like him." +> "{THE FRIEND}'s been quiet lately. Not like them." - Smuggler: concern for a friend - Detective: behavioral change in a subject @@ -752,555 +754,32 @@ Monologue pools are separate (D-032). But dialogue is shared — the NPC says th ## Concrete Examples: Full Tagged Pools -Three pools, one per v0.1 social site. Each shows file structure, progression through THE FRIEND arc, and full tag usage. +*v0.1 named-NPC pool examples removed — cited NPCs no longer in v0.2 pipeline (D-122). Author per-district pools against the active NPC roster using the tag schema and trigger types documented above.* -### The Terminal (Logistics Hub) — Smuggler Monologue +**Structure reference (three pools per district):** -```yaml -# File: content/terminal/monologue-smuggler.yaml -# Location: The Terminal (Logistics Hub) -# Character: Smuggler - -lines: - - # --- ARRIVAL --- - - - id: terminal_m_001 - character: smuggler - trigger: enter_location - prerequisite: null - text: "Morning shift. Recycled air and cargo lubricant. Home sweet home." - mood: [comfortable] - topic: [routine] - situation: [arrival, shift_start] - access: [insider] - trust: surface - tags: [baseline] - - - id: terminal_m_002 - character: smuggler - trigger: enter_location - prerequisite: - fact: contraband.ring_exists - confidence: KnowsDetails - text: "Shift transition in thirty minutes. If Voss kept the schedule thin, the route's clear." - mood: [analytical] - topic: [cargo] - situation: [shift_transition] - access: [insider] - trust: real - tags: [ring, operational] - - # --- KAEL: THE FRIEND ARC --- - - # Phase 1: Comfort - - id: terminal_m_010 - character: smuggler - trigger: observe_npc - prerequisite: - relationship_state: Friendly - subject: kael_davan - text: "Kael's already at the dock. Good. The day's better when he's on shift." - mood: [fond] - topic: [colleague] - situation: [shift_start] - access: [insider, peer] - trust: surface - tags: [kael, baseline, pre_contradiction] - notes: "Phase 1 warmth. Establishes the bond before it gets tested." - - # Phase 2: First crack - - id: terminal_m_011 - character: smuggler - trigger: observe_anomaly - prerequisite: - all: - - relationship_state: Friendly - subject: kael_davan - - known_attributes: - subject: kael_davan - key: behavior_flags - value_contains: lattice_checking - text: "Kael keeps checking his lattice. Waiting for a message? Not like him to be jumpy." - mood: [concerned] - topic: [colleague] - situation: [routine] - access: [insider] - trust: real - tags: [kael, tell, first_crack] - notes: "Phase 2. Smuggler notices, doesn't flag it. Updates behavior_flags." - - - id: terminal_m_012 - character: smuggler - trigger: post_conversation - prerequisite: - known_attributes: - subject: kael_davan - key: behavior_flags - value_contains: evasive - text: "Kael cut lunch short again. 'Things to take care of.' Since when does Kael have things to take care of that don't involve me?" - mood: [worried] - topic: [colleague] - situation: [routine] - access: [insider] - trust: real - tags: [kael, tell, pattern_forming] - - # Phase 3: The contradiction - - id: terminal_m_013 - character: smuggler - trigger: witness_interaction - prerequisite: - relationship_state: Friendly - subject: kael_davan - text: "Kael? By the service hatch? And that's — I don't know them. Not crew, not ring. Who is that?" - mood: [concerned] - topic: [colleague] - situation: [observation] - access: [insider] - trust: real - tags: [kael, the_friend, contradiction, critical_moment] - notes: > - THE CONTRADICTION. Kael in restricted area with unknown contact. - Sets contradiction_flagged: meeting_unknown_contact. - RelationshipState: Friendly -> PersonOfInterest. Green -> amber. - - # Phase 4: Confrontation aftermath - - id: terminal_m_014 - character: smuggler - trigger: post_conversation - prerequisite: - all: - - relationship_state: PersonOfInterest - subject: kael_davan - - known_attributes: - subject: kael_davan - key: tell_observed - value: looks_left_when_lying - text: "He looked left. He always looks left when he's making something up. Two years I've known that tell. Kael is lying to me." - mood: [conflicted] - topic: [trust] - situation: [confrontation] - access: [insider] - trust: real - tags: [kael, the_friend, tell_confirmation] - notes: "The tell pays off. Established early in casual observation, confirmed under pressure." - - # Phase 5: Contaminated trust - - id: terminal_m_015 - character: smuggler - trigger: observe_npc - prerequisite: - all: - - relationship_state: PersonOfInterest - subject: kael_davan - - known_attributes: - subject: kael_davan - key: contradiction_flagged - value: meeting_unknown_contact - text: "Same old Kael. Same jokes, same routine. ...What are you not telling me?" - mood: [conflicted] - topic: [colleague] - situation: [routine] - access: [insider] - trust: real - tags: [kael, the_friend, contaminated_trust] - notes: "Phase 5. Warmth and doubt simultaneously. Every smile now has a question mark." - - # --- OPERATIONAL --- - - - id: terminal_m_020 - character: smuggler - trigger: observe_anomaly - prerequisite: - fact: investigation.cargo_anomaly - confidence: Suspects - text: "That container's been in temp since yesterday. Someone forgot to process it, or someone's stalling." - mood: [concerned] - topic: [cargo] - situation: [routine] - access: [insider] - trust: real - tags: [investigation, cargo] - - - id: terminal_m_021 - character: smuggler - trigger: time_idle - prerequisite: - fact: world.shift_schedule - confidence: KnowsDetails - text: "Thirteen-forty. Transition window opens in fifty minutes. After that, twenty minutes of reduced oversight." - mood: [analytical] - topic: [routine] - situation: [routine] - access: [insider] - trust: real - tags: [ring, timing, operational] +``` +content/{district}/ + {terminal-slug}/ + monologue-smuggler.yaml # Smuggler's FRIEND arc + operational lines + monologue-detective.yaml # Detective's investigation lines + dialogue.yaml # Shared NPC dialogue (access-tier filtered at runtime) + {bar-slug}/ + monologue-smuggler.yaml + monologue-detective.yaml + dialogue.yaml + {corridor-slug}/ + monologue-smuggler.yaml # Route operational + THE CONTRADICTION scene + monologue-detective.yaml + dialogue.yaml ``` ---- - -### The Last Shift (Bar) — Detective Monologue - -```yaml -# File: content/bar/monologue-detective.yaml -# Location: The Last Shift (Bar) -# Character: Detective - -lines: - - # --- ARRIVAL --- - - - id: bar_m_001 - character: detective - trigger: enter_location - prerequisite: null - text: "The Last Shift. Grain spirit and low conversation. Only place in this district that doesn't smell like freight lubricant." - mood: [comfortable] - topic: [routine] - situation: [arrival, bar_evening] - access: [public] - trust: surface - tags: [baseline, atmosphere] - - - id: bar_m_002 - character: detective - trigger: return_visit - prerequisite: - fact: progress.initial_suspicion - confidence: KnowsOf - text: "Back again. People talk here. And people who don't talk are talking too — just not out loud." - mood: [analytical] - topic: [investigation] - situation: [bar_evening] - access: [authority] - trust: real - tags: [investigation, atmosphere] - - # --- SERA: THE FRIEND ARC --- - - # Phase 1: Trust - - id: bar_m_010 - character: detective - trigger: observe_npc - prerequisite: - relationship_state: Friendly - subject: sera_venn - text: "Sera's in her usual booth. Good. One familiar face in a district that doesn't want me here." - mood: [relieved] - topic: [colleague] - situation: [bar_evening] - access: [peer] - trust: surface - tags: [sera, baseline, trust] - notes: "Phase 1. Sera is the detective's anchor. Establish this warmth — it has to hurt later." - - # Phase 2: Background - - id: bar_m_011 - character: detective - trigger: post_conversation - prerequisite: - relationship_state: Friendly - subject: sera_venn - text: "Sera's connected here. Knows the regulars, knows the routines. And she's got diagnostic access. Useful." - mood: [comfortable] - topic: [colleague] - situation: [social] - access: [peer] - trust: surface - tags: [sera, background, pre_contradiction] - notes: "Phase 2. The detective notes Sera's access level without realizing it's the source of the conflict." - - # Phase 3: Pattern — first departure - - id: bar_m_012 - character: detective - trigger: witness_interaction - prerequisite: - relationship_state: Friendly - subject: sera_venn - text: "Sera headed out. Early shift tomorrow, she said. Fair enough." - mood: [comfortable] - topic: [colleague] - situation: [bar_evening] - access: [peer] - trust: surface - tags: [sera, avoidance, departure_1] - notes: "First Torek departure. Detective barely notices." - - # Phase 3: Pattern — second departure - - id: bar_m_013 - character: detective - trigger: witness_interaction - prerequisite: - known_attributes: - subject: sera_venn - key: behavior_flags - value_contains: avoidance_pattern - text: "Sera left again. Headache. Right after Torek walked in. ...Noted." - mood: [suspicious] - topic: [colleague] - situation: [bar_evening] - access: [peer] - trust: real - tags: [sera, avoidance, departure_2] - notes: "Second departure. Detective notes it. Not yet a pattern." - - # Phase 3: Pattern — the third (contradiction) - - id: bar_m_014 - character: detective - trigger: witness_interaction - prerequisite: - known_attributes: - subject: sera_venn - key: contradiction_flagged - value: avoidance_inconsistency - text: "That's the third time. Early shift, headache, kiosk check. Three excuses, one result. Sera leaves when Torek arrives. That's not coincidence." - mood: [analytical] - topic: [colleague] - situation: [bar_evening, observation] - access: [peer] - trust: real - tags: [sera, the_friend, contradiction_discovery] - notes: > - THE CONTRADICTION. Three data points make a conclusion. - Sets contradiction_flagged: avoidance_inconsistency. - RelationshipState: Friendly -> PersonOfInterest. Green -> amber. - Different from Kael's — cumulative, not sudden. - - # Phase 4: The question asked - - id: bar_m_015 - character: detective - trigger: post_conversation - prerequisite: - all: - - relationship_state: PersonOfInterest - subject: sera_venn - - known_attributes: - subject: sera_venn - key: tell_observed - value: controlled_deflection,topic_change - text: "She deflected. Smooth — 'he's just loud.' Technically true. But her shoulders shifted. Sera, what do you know about Torek?" - mood: [conflicted] - topic: [trust] - situation: [confrontation] - access: [authority] - trust: real - tags: [sera, the_friend, post_confrontation] - notes: "Phase 4. The detective hears the non-lie. Deflection IS the tell." - - # Phase 5: Contaminated trust - - id: bar_m_016 - character: detective - trigger: return_visit - prerequisite: - relationship_state: PersonOfInterest - subject: sera_venn - text: "Same booth. Same warm smile. Same offer to buy me a drink. ...Everything except whatever she's not saying." - mood: [conflicted] - topic: [trust] - situation: [bar_evening] - access: [authority] - trust: real - tags: [sera, the_friend, contaminated_trust] - notes: "Phase 5. Every kindness now has a question mark. The past is retroactively contaminated." - - # --- TOREK --- - - - id: bar_m_020 - character: detective - trigger: observe_npc - prerequisite: - relationship_state: Unknown - subject: torek_lintar - text: "Loud one at the bar. Buying rounds he probably can't afford. Worth watching." - mood: [analytical] - topic: [money] - situation: [bar_evening] - access: [public] - trust: surface - tags: [torek, first_observation, spending] - - # --- ATMOSPHERE --- - - - id: bar_m_030 - character: detective - trigger: time_idle - prerequisite: - fact: progress.initial_suspicion - confidence: KnowsOf - text: "Everyone's friendly enough. Drinks, jokes, the usual complaints about shift schedules. But friendly and honest aren't the same thing." - mood: [suspicious] - topic: [routine] - situation: [bar_evening] - access: [public] - trust: real - tags: [atmosphere, investigation, early_game] -``` - ---- - -### Corridor B-7 — Smuggler Monologue - -```yaml -# File: content/corridor/monologue-smuggler.yaml -# Location: Corridor B-7 (Maintenance / Smuggling Route) -# Character: Smuggler - -lines: - - # --- ENTRY --- - - - id: corridor_m_001 - character: smuggler - trigger: enter_location - prerequisite: - fact: location.corridor_b7_restricted - confidence: KnowsDetails - text: "B-7. Old prefab, minimal coverage. The route works because nobody updated the surveillance map." - mood: [analytical] - topic: [routine] - situation: [night_shift] - access: [insider] - trust: real - tags: [ring, operational, spatial] - - - id: corridor_m_002 - character: smuggler - trigger: enter_location - prerequisite: - fact: location.corridor_b7_restricted - confidence: Suspects - text: "Maintenance corridor. Quiet. Shouldn't be this quiet during shift change." - mood: [suspicious] - topic: [routine] - situation: [shift_transition] - access: [public] - trust: surface - tags: [exploration, spatial] - notes: "Lower confidence — smuggler who doesn't know B-7's significance yet." - - # --- ENVIRONMENTAL --- - - - id: corridor_m_003 - character: smuggler - trigger: hear_sound - prerequisite: - fact: location.corridor_b7_restricted - confidence: KnowsOf - text: "Footsteps. Wrong cadence for maintenance crew. Someone's being careful." - mood: [concerned] - topic: [danger] - situation: [night_shift] - access: [insider] - trust: real - tags: [tension, spatial_awareness] - - - id: corridor_m_004 - character: smuggler - trigger: time_idle - prerequisite: - fact: location.surveillance_gaps - confidence: KnowsDetails - text: "No Meridian signal down here. No eyes, no ears. Whatever happens in B-7 stays in B-7." - mood: [relieved] - topic: [routine] - situation: [alone] - access: [insider] - trust: real - tags: [ring, surveillance, operational] - - # --- THE CONTRADICTION --- - - - id: corridor_m_010 - character: smuggler - trigger: witness_interaction - prerequisite: - relationship_state: Friendly - subject: kael_davan - text: "Kael? Down here? And that's — I don't know them. Not crew, not ring. Who the hell is that?" - mood: [concerned] - topic: [colleague] - situation: [observation] - access: [insider] - trust: real - tags: [the_friend, contradiction, kael, critical_moment] - notes: > - THE CONTRADICTION. The moment the smuggler's world shifts. - Kael in a restricted corridor with an unknown contact. - Sets contradiction_flagged: meeting_unknown_contact. - RelationshipState: Friendly -> PersonOfInterest. - Color: green -> amber. This moment is the emotional core of the arc. - - - id: corridor_m_011 - character: smuggler - trigger: post_conversation - prerequisite: - all: - - relationship_state: PersonOfInterest - subject: kael_davan - - known_attributes: - subject: kael_davan - key: tell_observed - value: looks_left_when_lying - text: "He looked left. Always looks left when he's making something up. Two years, Kael. I know your tells." - mood: [conflicted] - topic: [trust] - situation: [confrontation] - access: [insider] - trust: real - tags: [the_friend, kael, tell_confirmation] - notes: "Tell payoff. Established early in casual dialogue, confirmed here under pressure." - - # --- EVIDENCE --- - - - id: corridor_m_020 - character: smuggler - trigger: discover_evidence - prerequisite: - fact: location.dead_drop_location - confidence: Direct - text: "Locker 47. Registered to someone who transferred out eighteen months ago. Convenient." - mood: [analytical] - topic: [cargo] - situation: [investigation] - access: [insider] - trust: real - tags: [dead_drop, evidence] - - - id: corridor_m_021 - character: smuggler - trigger: observe_anomaly - prerequisite: - fact: location.smuggling_route - confidence: KnowsDetails - text: "Fresh marks on the service hatch. Kosse's been through here. Right on schedule." - mood: [comfortable] - topic: [cargo] - situation: [night_shift] - access: [insider] - trust: real - tags: [ring, route, operational] - - # --- RETURN --- - - - id: corridor_m_030 - character: smuggler - trigger: return_visit - prerequisite: - all: - - fact: location.corridor_b7_restricted - confidence: KnowsDetails - - relationship_state: PersonOfInterest - subject: kael_davan - text: "B-7 again. Last time I was here, Kael was talking to someone he shouldn't have been. The corridor feels different now." - mood: [suspicious] - topic: [colleague] - situation: [alone] - access: [insider] - trust: real - tags: [kael, the_friend, post_contradiction, return] - notes: "The space is contaminated by what happened here. Location memory." -``` +**Required content per location per character:** +- Arrival / enter_location (2-3 lines, baseline + investigation variant) +- THE FRIEND arc phases 1-5 (smuggler: Phase 1-5 for FRIEND A; detective: Phase 1-5 for FRIEND B) +- Operational / investigative observations (3-5 lines per location) +- Return visit variants (1-2 lines per location) +- Atmospheric time_idle lines (1-2 per location) --- diff --git a/wiki/authoring/monologue-voice-guide.md b/wiki/authoring/monologue-voice-guide.md index 6987d0870..3f482eb0d 100644 --- a/wiki/authoring/monologue-voice-guide.md +++ b/wiki/authoring/monologue-voice-guide.md @@ -33,11 +33,11 @@ The voice-patterns.md spec describes the mechanics of each character's voice. Th The smuggler's voice is not the result of low intelligence or limited vocabulary. It's the result of two years of professional survival in a context where abstract thinking is dangerous. -When you're running contraband through a logistics hub, you can't afford to think in categories — you think in specifics. Not "this situation is getting risky" but "Voss changed the rotation and Kael's not answering his lattice." Abstract framing makes patterns invisible. Concrete framing catches the deviation. +When you're running contraband through a logistics hub, you can't afford to think in categories — you think in specifics. Not "this situation is getting risky" but "{Supervisor} changed the rotation and {THE FRIEND}'s not answering their lattice." Abstract framing makes patterns invisible. Concrete framing catches the deviation. -The smuggler's internal voice is trained, not natural. She developed it. It served her. The short sentences and fragments aren't lack of complexity — they're the mental habit of someone who learned to think in real-time decision points. "Kael's late. Wrong. Move." Three thoughts, three beats, three potential action triggers. Abstract cognition is a liability she's edited out. +The smuggler's internal voice is trained, not natural. She developed it. It served her. The short sentences and fragments aren't lack of complexity — they're the mental habit of someone who learned to think in real-time decision points. "{THE FRIEND}'s late. Wrong. Move." Three thoughts, three beats, three potential action triggers. Abstract cognition is a liability she's edited out. -**The emotional truth beneath the voice:** She cares about people first. Operations second. Institutions never. The concrete voice maps onto this: she sees people, not systems. She notices Kael is distracted before she notices the manifest is wrong. The world is a network of relationships, and her monologue is live monitoring of that network. +**The emotional truth beneath the voice:** She cares about people first. Operations second. Institutions never. The concrete voice maps onto this: she sees people, not systems. She notices {THE FRIEND} is distracted before she notices the manifest is wrong. The world is a network of relationships, and her monologue is live monitoring of that network. **What this means for trait and mood modifiers:** When trait or mood modifiers inflect the smuggler's voice, they do so within this framework. A Bold smuggler is still concrete-first — she just acts on partial information faster. An Anxious smuggler is still relational — she just cycles through the network faster, checking and rechecking. The base is immovable. The modifiers inflect it. @@ -45,11 +45,11 @@ The smuggler's internal voice is trained, not natural. She developed it. It serv The detective's voice is institutional training running as an operating system. He was taught to externalise his cognition — to turn observations into filed reports, to name patterns as data, to treat emotional reactions as information to be processed rather than feelings to be felt. -This is not coldness. It's self-protection. Investigators who let themselves feel first make bad decisions. The detective learned that lesson somewhere — we don't know where, but it's in the bone. The analytical frame is a tool he uses so well he's forgotten it's a tool. Except when Sera makes him forget. +This is not coldness. It's self-protection. Investigators who let themselves feel first make bad decisions. The detective learned that lesson somewhere — we don't know where, but it's in the bone. The analytical frame is a tool he uses so well he's forgotten it's a tool. Except when THE FRIEND makes him forget. The longer sentences and complete syntactic structures aren't pretension. They're habits of evidence: a complete sentence has a subject, verb, and object, which means it has an agent, an action, and a consequence. The detective's brain naturally produces complete sentences because incomplete sentences don't file well. -**The emotional truth beneath the voice:** He cares about doing the work correctly. Not because he's a rule-follower (he'd bend a rule if the evidence demanded it), but because he believes the correct process produces the correct result. When Sera introduces doubt into that belief, the whole framework shudders. His fear isn't being wrong about a fact — it's discovering that correct process produced an unjust outcome, and having no language for what comes next. +**The emotional truth beneath the voice:** He cares about doing the work correctly. Not because he's a rule-follower (he'd bend a rule if the evidence demanded it), but because he believes the correct process produces the correct result. When THE FRIEND introduces doubt into that belief, the whole framework shudders. His fear isn't being wrong about a fact — it's discovering that correct process produced an unjust outcome, and having no language for what comes next. **What this means for trait and mood modifiers:** Detective trait modifiers inflate or compress the analytical frame. A Compassionate detective lets the personal break through the professional more easily. A Ruthless detective turns the analytical frame into a weapon — identifies leverage faster, doesn't dwell on moral weight. Mood modifiers thin or thicken the professional veneer. The base is the analyst. The modifiers determine how much of the person shows through. @@ -70,7 +70,7 @@ D-024 defines 10 personality traits across 5 opposing pairs. These modify the *d **Cautious — transformation logic:** A Cautious character qualifies her observations before she acts on them. She notices things in the same order as a neutral character, but she checks her own conclusions. She hedges internally. She is not less intelligent — she is more aware that she might be wrong. -- Declarations become conditionals: "That's Kael's route" → "That looks like Kael's route" +- Declarations become conditionals: "That's {THE FRIEND}'s route" → "That looks like {THE FRIEND}'s route" - Observations become questions: "Something's off" → "Something might be off" - Concern arrives earlier and stays longer (more re-checking) - The voice is slower, more tentative @@ -83,7 +83,7 @@ A Cautious character qualifies her observations before she acts on them. She not A Bold character acts on partial information. She names the conclusion before she has the evidence. She's often right — bold cognition built on competence. But she's also capable of committing to a wrong read and holding it too long. - Questions become declarations: "Something might be off" → "Something's off" -- Hedges disappear: "That looks like Kael's route" → "That's Kael's route" +- Hedges disappear: "That looks like {THE FRIEND}'s route" → "That's {THE FRIEND}'s route" - Concern arrives fast and crystallizes immediately - The voice is faster, more assertive, shorter latency between observation and conclusion @@ -102,7 +102,7 @@ A Bold character acts on partial information. She names the conclusion before sh **Honest — transformation logic:** An Honest character's monologue is self-correcting. She catches her own spin and revises it. She doesn't lie to herself to feel better. This makes her monologue have a characteristic pattern: initial reaction, then correction. -- Self-correction appears: "Kael's fine. — No. He's not fine." +- Self-correction appears: "{THE FRIEND}'s fine. — No. They're not fine." - Less motivated reasoning: she acknowledges evidence she doesn't want to see - The voice is slightly more uncomfortable with its own conclusions - She doesn't minimize things that scare her @@ -110,7 +110,7 @@ An Honest character's monologue is self-correcting. She catches her own spin and **Deceptive — transformation logic:** A Deceptive character's internal voice shows motivated reasoning. She rationalizes what she wants to be true. She notices threatening evidence and then explains it away. This is not dishonest *about others* — it's dishonest with herself. -- Conclusions favor the preferred reading: "Kael's meeting someone I don't know. Probably work." +- Conclusions favor the preferred reading: "{THE FRIEND}'s meeting someone I don't know. Probably work." - Dismissal appears quickly after observation: "Could be nothing. Probably is nothing." - She notices the tell and then chooses not to follow it - The voice has a self-soothing quality, particularly under threat @@ -131,22 +131,22 @@ A Deceptive character's internal voice shows motivated reasoning. She rationaliz A Compassionate character's first read of a situation is through the lens of what it means for people she cares about. She identifies the person most likely to be hurt before she identifies the operational implication. - People-first sequencing: observation of person → emotional assessment → operational conclusion -- Concern is named: "Naia looks exhausted. Something's wrong at home." -- She personalizes abstract threats: not "ring security is compromised" but "Kael could get caught" +- Concern is named: "{Colleague} looks exhausted. Something's wrong at home." +- She personalizes abstract threats: not "ring security is compromised" but "{THE FRIEND} could get caught" - Moral weight is felt quickly and stays present **Ruthless — transformation logic:** A Ruthless character assesses utility before empathy. She notices a threat and immediately calculates how to neutralize it, including through people. This is not cruelty — it's a habit of assessment that puts operational outcome first. -- Utility assessment appears early: "Kael's behavior is risky. If he cracks, he takes the route with him." -- Moral weight is noted and set aside: "He might not deserve this. Doesn't matter right now." -- People are resources first: "Maret's nervous. That's usable." +- Utility assessment appears early: "{THE FRIEND}'s behavior is risky. If they crack, they take the route with them." +- Moral weight is noted and set aside: "They might not deserve this. Doesn't matter right now." +- People are resources first: "{NPC}'s nervous. That's usable." **How this inflects each character:** -- *Compassionate smuggler:* Most Naia-and-Kael-focused. Her FRIEND arc lines emphasize relationship cost over operational cost. She confronts Kael later because she keeps hoping he'll explain. -- *Ruthless smuggler:* Calculates exposure fast. Cuts contact with Kael earlier once he's flagged. Sees Naia's distress as a data point about Kael's reliability, not as a human problem. -- *Compassionate detective:* The Sera question hits harder and sooner. He identifies the personal cost before the institutional obligation. -- *Ruthless detective:* Uses Sera's knowledge instrumentally. The friendship is real, but usable. +- *Compassionate smuggler:* Most FRIEND-focused. Her FRIEND arc lines emphasize relationship cost over operational cost. She confronts THE FRIEND later because she keeps hoping they'll explain. +- *Ruthless smuggler:* Calculates exposure fast. Cuts contact with THE FRIEND earlier once they're flagged. Sees a colleague's distress as a data point about THE FRIEND's reliability, not as a human problem. +- *Compassionate detective:* The FRIEND question hits harder and sooner. He identifies the personal cost before the institutional obligation. +- *Ruthless detective:* Uses THE FRIEND's knowledge instrumentally. The friendship is real, but usable. **Mellanie — write 2 example rewrite pairs per character: the same FRIEND-arc moment in Compassionate vs. Ruthless voice.** @@ -159,7 +159,7 @@ A Ruthless character assesses utility before empathy. She notices a threat and i **Curious — transformation logic:** A Curious character asks more internal questions, including questions she can't answer. She sits with open threads longer. She generates hypotheses and lets them hang. -- Questions multiply before resolving: "What was Kael doing there? Who was that? Is the route changing? Is Nils moving the window?" +- Questions multiply before resolving: "What was {THE FRIEND} doing there? Who was that? Is the route changing? Is {Supervisor} moving the window?" - The voice has more speculative energy — she follows the thread - She notices more at the margins: background details, things that don't connect yet - Open-endedness is comfortable @@ -183,14 +183,14 @@ An Incurious character categorizes and moves on. She notices, files, and redirec **Social — transformation logic:** A Social character's monologue is populated. She mentions people when she could just mention actions. She frames operations through the network. -- People are named when not necessary: "The route's clear. Kael cleared it." -- She reads absence: "Where's Renn today? He's always here at this hour." -- Mood-reads appear: "Voss is different today. Tired, or something else." +- People are named when not necessary: "The route's clear. {THE FRIEND} cleared it." +- She reads absence: "Where's {NPC} today? Always here at this hour." +- Mood-reads appear: "{Supervisor}'s different today. Tired, or something else." **Reclusive — transformation logic:** A Reclusive character's monologue is depopulated. People appear when they're directly relevant. The environment and operation carry more weight. -- Operations are mentioned without actors: "Route's clear." Not "Kael cleared the route." +- Operations are mentioned without actors: "Route's clear." Not "{THE FRIEND} cleared the route." - Absence of people is comfortable: she doesn't notice it - The environment gets more attention: she describes the space, the sounds, the texture @@ -200,9 +200,9 @@ A Reclusive character's monologue is depopulated. People appear when they're dir ## Chapter 3: Background-Dependent Phrasing -Character background (selected at game start) shapes three things in monologue: the idioms and references the character uses, the assumptions they make about institutions and authority, and how they frame the moral dimension of what's happening in Sova Transit District. +Character background (selected at game start) shapes three things in monologue: the idioms and references the character uses, the assumptions they make about institutions and authority, and how they frame the moral dimension of what's happening in the district. -Three backgrounds for v0.1: +Three backgrounds: | Background | Core assumption | Relationship to institutions | |-----------|----------------|------------------------------| @@ -219,11 +219,11 @@ Three backgrounds for v0.1: **How it inflects the smuggler:** The ring's activities are, to a Guardian-background smuggler, a natural extension of the protective network logic she already believes in. She doesn't see herself as a criminal — she sees herself as part of a system that serves people the regulated system won't. This changes how she frames the ring's cargo: medical lattice components aren't contraband, they're access. The Commission's regulation is a monopoly problem, not a safety protection. -Her monologue references network solidarity: "We look after our own" is a value, not just a statement. When the network is threatened (Kael's situation), her response is to protect, not to report. The Commission is not a solution to her problems — it's the problem with different uniforms. +Her monologue references network solidarity: "We look after our own" is a value, not just a statement. When the network is threatened ({THE FRIEND}'s situation), her response is to protect, not to report. The Commission is not a solution to her problems — it's the problem with different uniforms. Idiom signals: phrases that imply collective or mutual protection ("we look after our own," "this keeps us safe," "not their business"), references to surveillance as adversarial ("they're watching the corridors closer"), reflexive Commission-skepticism ("another Commission inspection" carries more weight, more contempt). -**Mellanie — write 2 examples:** (a) Guardian-background smuggler entering The Terminal on a normal morning; (b) Guardian-background smuggler seeing the detective for the first time. +**Mellanie — write 2 examples:** (a) Guardian-background smuggler entering the logistics hub on a normal morning; (b) Guardian-background smuggler seeing the detective for the first time. **How it inflects the detective:** A Guardian-background detective is in a structurally uncomfortable position: she believes in a community's right to self-determination but is employed by the institution that overrides it. She may have unexamined tension between her institutional role and her network values. Her internal voice sometimes catches itself applying institutional logic and stops — not from disloyalty, but from the habit of checking whether what she's doing serves people or just process. @@ -232,7 +232,7 @@ This creates a more nuanced reading of the ring: she notices earlier that it isn Idiom signals: slight Commission-skepticism applied to her own role, instinct toward community protection over prosecution, "who does this actually hurt?" appears as an internal question earlier in the arc. -**Mellanie — write 2 examples:** (a) Guardian-background detective walking through The Terminal for the first time; (b) Guardian-background detective after a confrontation with Voss that didn't land. +**Mellanie — write 2 examples:** (a) Guardian-background detective walking through the logistics hub for the first time; (b) Guardian-background detective after a confrontation with {Supervisor} that didn't land. --- @@ -241,13 +241,13 @@ Idiom signals: slight Commission-skepticism applied to her own role, instinct to **Narrative framing:** Senator background means exposure to Concord Assembly political culture — either through family, prior work, or a posting in an administrative center. This character thinks in terms of leverage, political capital, and institutional process as tools to be used. They believe in systems (not naively — they've seen how they work), they communicate strategically, and they think about consequences in terms of how they're recorded and remembered. **How it inflects the smuggler:** -A Senator-background smuggler is an unusual animal. She ended up on Sova with this background for reasons that suggest a fall — political family, bad posting, something that deposited her in freight work. She still thinks in political terms. The ring is, to her, a structure with power dynamics that can be managed. She assesses Nils as a faction leader, Voss as a compromisable middle manager, Kael as an uncertain ally. She has more framework for navigating institutional pressure than the default smuggler. +A Senator-background smuggler is an unusual animal. She ended up on Sova with this background for reasons that suggest a fall — political family, bad posting, something that deposited her in freight work. She still thinks in political terms. The ring is, to her, a structure with power dynamics that can be managed. She assesses the ring's leadership as a faction, {Supervisor} as a compromisable middle manager, {THE FRIEND} as an uncertain ally. She has more framework for navigating institutional pressure than the default smuggler. -Her monologue carries strategic calculation that the default smuggler doesn't have: "If Nils moves against us, who has leverage over Nils?" She names power structures. She's more comfortable with authority figures because she spent time being one or adjacent to one. +Her monologue carries strategic calculation that the default smuggler doesn't have: "If {leadership} moves against us, who has leverage over them?" She names power structures. She's more comfortable with authority figures because she spent time being one or adjacent to one. Idiom signals: political vocabulary deployed in operational context ("who holds the leverage here," "what does this cost us politically," "that's a favor spent"), more awareness of chain of command, comfort with complexity and multiple-move thinking. -**Mellanie — write 2 examples:** (a) Senator-background smuggler reading a tense moment between Voss and Nils; (b) Senator-background smuggler deciding whether to warn Kael about the detective. +**Mellanie — write 2 examples:** (a) Senator-background smuggler reading a tense moment between {Supervisor} and ring leadership; (b) Senator-background smuggler deciding whether to warn {THE FRIEND} about the detective. **How it inflects the detective:** A Senator-background detective is most at home in the Commission's formal institutional structure. He knows how to work the process because he's seen political process at close range. He's less likely to be frustrated by bureaucratic obstacles and more likely to use them as tools. He's also more aware of how investigations can be used politically — and more careful to distinguish between evidence that serves justice and evidence that serves someone's career. @@ -256,7 +256,7 @@ This can work two ways: he's more sophisticated about when to file and when not Idiom signals: references to political process ("that'll go on record," "who is this actually going to serve"), awareness of institutional optics, formal courtesy in internal voice (he holds standards in private that mirror public institutional expectations). -**Mellanie — write 2 examples:** (a) Senator-background detective receiving unhelpful cooperation from Maret (deflection, formal compliance); (b) Senator-background detective realizing Sera has evidence she hasn't reported. +**Mellanie — write 2 examples:** (a) Senator-background detective receiving unhelpful cooperation from an NPC (deflection, formal compliance); (b) Senator-background detective realizing THE FRIEND has evidence they haven't reported. --- @@ -271,16 +271,16 @@ Her monologue about the ring's cargo is practical, not moral: "Medical component Idiom signals: shift-economy references ("that's a week's pay gone"), physical work vocabulary, coworker solidarity language that's practical not sentimental ("you cover for your people"), no ideological framing. -**Mellanie — write 2 examples:** (a) Worker-background smuggler after a long shift where nothing went wrong (genuine relief in mundane form); (b) Worker-background smuggler finding out about Kael's corridor meeting. +**Mellanie — write 2 examples:** (a) Worker-background smuggler after a long shift where nothing went wrong (genuine relief in mundane form); (b) Worker-background smuggler finding out about {THE FRIEND}'s unauthorized corridor meeting. **How it inflects the detective:** -A Worker-background detective is a less common institutional profile — someone who came up from the logistics world, or the adjacent working community of a station, and then entered Commission work. This creates the most dramatic read of the Sova Transit District: he *knows* what this world looks like from inside. The community's distrust of him isn't abstract — he grew up in a community that had this relationship with Commission investigators. +A Worker-background detective is a less common institutional profile — someone who came up from the logistics world, or the adjacent working community of a station, and then entered Commission work. This creates the most dramatic read of the district: he *knows* what this world looks like from inside. The community's distrust of him isn't abstract — he grew up in a community that had this relationship with Commission investigators. -His analytical frame is the same, but its application produces a different emotional texture. He reads Voss not just as a shift supervisor but as someone managing his people in a system that gives them no margin. He reads the ring not just as a crime but as what people do when the legal option doesn't work. He's not excusing it — but he's explaining it to himself in ways a Senator-background detective wouldn't. +His analytical frame is the same, but its application produces a different emotional texture. He reads the shift supervisor not just as an authority figure but as someone managing their people in a system that gives them no margin. He reads the ring not just as a crime but as what people do when the legal option doesn't work. He's not excusing it — but he's explaining it to himself in ways a Senator-background detective wouldn't. Idiom signals: working vocabulary that leaks through the institutional frame ("another form to fill out" with genuine frustration), more personal reads on community behavior, faster comprehension of coworker loyalty dynamics. -**Mellanie — write 2 examples:** (a) Worker-background detective entering The Terminal and recognizing it as a place he knows in his bones; (b) Worker-background detective having a moment of sympathy for Kael that he then has to file away. +**Mellanie — write 2 examples:** (a) Worker-background detective entering the logistics hub and recognizing it as a place he knows in his bones; (b) Worker-background detective having a moment of sympathy for {THE FRIEND} that he then has to file away. --- @@ -301,7 +301,7 @@ Each mood bends the character's voice toward a version of itself. The base regis | `frustrated` | Goes flat. Sarcasm. "Of course." | Sardonic understatement. Cold. | | `content` | Warms, expands slightly. More humor. | Structured satisfaction. Humor surfaces. | | `suspicious` | Narrows. More observation of specific people. Hypotheses pile up. | Files faster. More quantification. "Coincidence?" frequency increases. | -| `warm` | More name-drops. Affectionate observations. Longer people-reads. | First-name register expands beyond Sera. More personal disclosure. | +| `warm` | More name-drops. Affectionate observations. Longer people-reads. | First-name register expands beyond THE FRIEND. More personal disclosure. | | `hostile` | Edges. Fewer words about the hostile object. Watchful. | Clinical distance increases. Dehumanizing label (surname-only). | | `focused` | Strips down. Only the current task. Environmental and NPC data pruned ruthlessly. | Most structured voice. Near-mechanical. Labels and flags only. | @@ -328,7 +328,7 @@ Lines tagged `mood: anxious` should feel compressed. Not panicked — the charac Something isn't working. The block is structural, not threatening. -- *Smuggler:* Flat declarations. Sarcastic understatement. "Of course." / "Great." Dark humor returns — she goes wry under frustration. Names get blamed: "Voss did it again." Swearing surfaces (mild — the character swears, but not obscenely). +- *Smuggler:* Flat declarations. Sarcastic understatement. "Of course." / "Great." Dark humor returns — she goes wry under frustration. Names get blamed: "{Supervisor} did it again." Swearing surfaces (mild — the character swears, but not obscenely). - *Detective:* Sardonic compression. Dismissive shorthand: "Standard." meaning the opposite. The institutional frame holds but it fits uncomfortably. He doesn't swear; frustration surfaces as brittle patience. Lines tagged `mood: frustrated` should feel like controlled flat. Both characters have learned not to waste anger — they spend it in specific, pointed ways. @@ -356,7 +356,7 @@ Lines tagged `mood: suspicious` should feel *directed*. The suspicion has an obj The character is in a moment of genuine positive connection. This is not `content` (good situation) — this is specifically warm *toward someone*. - *Smuggler:* More name-drops with positive color. People-reads are generous and long. She notices when someone seems well, not just when they seem off. Humor becomes inclusive rather than dry. She might express something like affection, obliquely. -- *Detective:* First-name register expands beyond Sera — he might first-name someone he normally surnames if the moment calls for it. Personal disclosure is slightly more available. The analytical frame softens: he observes without immediately filing. +- *Detective:* First-name register expands beyond THE FRIEND — he might first-name someone he normally surnames if the moment calls for it. Personal disclosure is slightly more available. The analytical frame softens: he observes without immediately filing. Lines tagged `mood: warm` are most visible in the detective because they represent a departure from his baseline. For the smuggler, warmth is closer to her baseline; the lines should be a slightly more saturated version of her natural register. @@ -364,8 +364,8 @@ Lines tagged `mood: warm` are most visible in the detective because they represe The relationship to the hostile object is adversarial. The character is managing threat. -- *Smuggler:* Less said, more watched. She goes quiet around the hostile object — mentions them tersely, observations are monitoring-reads rather than social-reads. "Nils walked past." Period. No color. -- *Detective:* Dehumanizing label returns even for NPCs who have previously graduated to first-name in his monologue. "Venn, S." instead of "Sera" signals the relationship has turned. Analytical lines about the hostile object are more clinical. +- *Smuggler:* Less said, more watched. She goes quiet around the hostile object — mentions them tersely, observations are monitoring-reads rather than social-reads. "{NPC} walked past." Period. No color. +- *Detective:* Dehumanizing label returns even for NPCs who have previously graduated to first-name in his monologue. "{Surname}, {initial}." instead of first name signals the relationship has turned. Analytical lines about the hostile object are more clinical. Lines tagged `mood: hostile` should feel like distance enforced deliberately. Neither character becomes cruel — cruelty requires emotional investment. The hostile register is managed withdrawal. @@ -388,7 +388,7 @@ The mood tags on monologue lines function as selection weights in the engine: 2. The line selection system applies a weight bonus to lines tagged with the matching mood 3. Lines tagged `mood: [neutral]` or untagged are always eligible; lines tagged with specific moods are preferred when the mood matches -**The same base line should NOT be re-authored per mood.** A smuggler entering The Terminal does not need 9 `enter_location` variants (one per mood). The system should: +**The same base line should NOT be re-authored per mood.** A smuggler entering a location does not need 9 `enter_location` variants (one per mood). The system should: - Select from the available `enter_location` pool - Apply mood-weight bonuses to lines with the matching mood tag - Ensure at least 1-2 lines per trigger/location have each major mood tagged @@ -407,7 +407,7 @@ Traits, backgrounds, and moods interact. Some combinations have emergent propert **High coherence combinations** (reinforce each other): - Cautious + Guardian background: more second-guessing of institutional solutions, more checking of network alternatives - Bold + Ruthless: decisive and instrumental — the fastest decision-maker, for better or worse -- Compassionate + Worker background: the character who most viscerally feels the human cost of what's happening to Kael and Naia +- Compassionate + Worker background: the character who most viscerally feels the human cost of what's happening to THE FRIEND and their community - Suspicious mood + Curious trait: questions multiply exponentially — the character follows every thread simultaneously **High tension combinations** (create internal conflict): @@ -416,16 +416,16 @@ Traits, backgrounds, and moods interact. Some combinations have emergent propert - Senator background + Worker background idioms (where the character's formation bleeds through the professional veneer): the occasional shift vocabulary surfaces in otherwise formal speech **FRIEND arc special case:** -Trait and background modifiers should be considered especially carefully for lines in the FRIEND arc. The same arc beat — "Kael met someone I don't know" — produces dramatically different emotional readings depending on trait combination: +Trait and background modifiers should be considered especially carefully for lines in the FRIEND arc. The same arc beat — "{THE FRIEND} met someone I don't know" — produces dramatically different emotional readings depending on trait combination: -| Trait | Smuggler's first-move internal response to the Kael contradiction | +| Trait | Smuggler's first-move internal response to THE FRIEND contradiction | |-------|------------------------------------------------------------------| | Cautious | Checks herself: "Maybe it's nothing. There could be a work reason." (sits with it longer) | -| Bold | Names it immediately: "That's a breach. Kael met someone unauthorized." | -| Compassionate | Worries about Kael first: "What's he gotten himself into?" | +| Bold | Names it immediately: "That's a breach. {THE FRIEND} met someone unauthorized." | +| Compassionate | Worries about {THE FRIEND} first: "What have they gotten into?" | | Ruthless | Calculates exposure: "How much does this contact know?" | -| Honest | Won't minimize: "He was there. That wasn't anyone we know." | -| Deceptive | Minimizes: "Kael's allowed his own contacts. It's fine." (not fine) | +| Honest | Won't minimize: "They were there. That wasn't anyone we know." | +| Deceptive | Minimizes: "{THE FRIEND}'s allowed their own contacts. It's fine." (not fine) | These aren't separate arc paths — they're the same arc with different pacing and emotional texture. A Cautious smuggler reaches the confrontation later. A Bold one gets there faster and possibly too fast. The arc is the same. The voice is not. @@ -444,7 +444,7 @@ For Mellanie — a vocabulary guide per background to use when writing example l **Senator background idioms:** - "On record" / "that goes on record" / "recorded as" - Leverage vocabulary: "what does that cost us," "who holds the note on that" -- Chain-of-command awareness: "above Nils" / "below Voss on that" +- Chain-of-command awareness: "above {leadership}" / "below {Supervisor} on that" - Process language: "formally," "through channels," "the filing on that says" **Worker background idioms:** diff --git a/wiki/authoring/npc-patterns/contradiction-arc.md b/wiki/authoring/npc-patterns/contradiction-arc.md index 29b9d4fa4..e1d635ae9 100644 --- a/wiki/authoring/npc-patterns/contradiction-arc.md +++ b/wiki/authoring/npc-patterns/contradiction-arc.md @@ -1,16 +1,15 @@ # THE FRIEND: Contradiction Arc Pattern **Ticket:** #332 | **Priority:** Medium | **Sprint:** 12 -**Status:** v0.1 Draft +**Status:** Draft **Owner:** Paula -**Blocked by:** #297 (Kael Davan profile — done), #298 (Sera Venn profile — done) **Decisions referenced:** D-034 (THE FRIEND pattern), D-035 (tag taxonomy), D-039 (wow moment #3), D-041 (knowledge graph), D-062 (invisible locked options), D-063 (confrontation mechanics) --- ## 1. What This Document Is -A reusable design pattern document extracted from the two concrete THE FRIEND implementations: Kael Davan (smuggler's FRIEND) and Sera Venn (detective's FRIEND). Both are complete. Both worked. This document captures the structural logic they share so that future FRIEND NPCs can be authored consistently and quickly. +A reusable design pattern document capturing the structural logic shared by THE FRIEND implementations so that future FRIEND NPCs can be authored consistently and quickly. The pattern is called the **Contradiction Arc**. It is not a mystery. It is not a betrayal in the conventional sense. It is the discovery that someone the player trusts is carrying something they haven't shared — and that what they're carrying changes everything the player thought they understood about the relationship. @@ -45,8 +44,7 @@ A Contradiction Arc is a 5-phase character trajectory built around a single obse - Dialogue: `trust: surface` (greeting, small talk) + `trust: real` (personal warmth, shared history) - Monologue: positive mood tags (content, fond, warm) -**Kael example:** "Kael's already at the dock. Good. The day's better when he's on shift." -**Sera example:** "Good to see Sera. She always was the reliable one. At least someone in this district speaks my language." +*Phase 1 monologue examples: fond, present-tense, no hint of trouble. "Already here. Good. The day's better when they're on shift."* --- @@ -67,8 +65,7 @@ A Contradiction Arc is a 5-phase character trajectory built around a single obse - Monologue: mild concern tone; `trigger: observe_anomaly` for behavioral tell moments - Tell system: all Phase 2 tells fire with `visible_to: peripheral` or `visible_to: any` -**Kael example:** "Kael's distracted today. Checks his lattice more than usual. Probably nothing." -**Sera example:** "Sera left early. 'Headache,' she said. First time she's done that." +*Phase 2 monologue examples: mild concern, plausible innocent explanation. "{FRIEND} is distracted. More lattice checks than usual. Probably nothing." / "{FRIEND} left early. First time for that."* --- @@ -93,8 +90,7 @@ A Contradiction Arc is a 5-phase character trajectory built around a single obse - Monologue should name the observation, not the interpretation - KG update: `contradiction_flagged: true`, relationship shifts to PersonOfInterest -**Kael example:** "That's Kael. But who's he talking to? I don't know that face. And that's not anyone from our rotation." -**Sera example:** "That's the third time. Sera leaves when Torek walks in. Three different excuses. Same result." +*Phase 3 monologue examples: names the observation, not the conclusion. "That's {FRIEND}. But who's that? I don't know that face." / "Third time. {FRIEND} leaves every time {person} walks in. Three different excuses. Same result."* --- @@ -115,8 +111,7 @@ A Contradiction Arc is a 5-phase character trajectory built around a single obse - THE FRIEND's response: `trust: real` (this is as honest as THE FRIEND can be without full confession), `situation: [confrontation]`, mood that indicates concealment - Personal tell confirmation: observation monologue fired by THE FRIEND's specific tell behavior -**Kael example:** "Just a thing. Don't worry about it." [looks left before answering] / Smuggler monologue: "He looked left. He always looks left when he's making something up. Two years I've known that tell. Kael is lying to me." -**Sera example:** "He's just loud. I don't like loud drunks." / Detective monologue: "She's not lying. But she's not telling me everything. Sera, what do you know?" +*Phase 4 examples: THE FRIEND deflects, personal tell fires, character's monologue confirms. "Just a thing. Don't worry about it." [{tell fires}] / "{Character} monologue: 'That tell. I know that tell. {FRIEND} is lying to me.'"* --- @@ -140,8 +135,7 @@ A Contradiction Arc is a 5-phase character trajectory built around a single obse - Monologue: `mood: [conflicted]` or `mood: [analytical]`; prerequisite gates on relationship state PersonOfInterest - If player chose Understanding path: additional monologue lines for partial-confession scenario -**Kael example:** "Same old Kael. Same jokes, same routine. ...What are you not telling me?" -**Sera example:** "Still the same Sera. Still reliable. ...But reliable about what?" +*Phase 5 monologue examples: surface warmth, underlying doubt. "Same old {FRIEND}. Same routine. ...What are you not telling me?"* --- @@ -170,9 +164,7 @@ Every FRIEND NPC has a **personal tell** — a specific behavioral marker establ 3. Be **unique to this NPC** — not a generic "nervousness" tell, but a specific habit 4. Be **explainable differently before and after** — innocent early, incriminating late -**Kael's tell:** Looks left before answering. Established as a habit the smuggler has observed for two years. Becomes proof of lying at Phase 4 because the smuggler knows the tell AND its meaning. - -**Sera's tell:** Gathers her things quickly when leaving. Not a lie tell — Sera isn't lying when she leaves. But the timing (always when Torek arrives) and the variety of excuses (genuine, not scripted) creates the pattern the detective reads as behavioral. +*Tell examples are authored per-NPC against the active roster — see the character-exemplar template for the tell table structure.* **Tell design rule:** The tell should produce a different emotional register for each playable character observing it: - The character with the relationship reads the tell as **personal** ("I know that tell — I've seen it before") @@ -192,10 +184,7 @@ Every FRIEND NPC must produce different monologue experiences for both character | Phase 4 | Personal confrontation (uses the personal tell as confirmation) | Investigative confrontation (uses behavioral pattern as evidence) | | Phase 5 | Contaminated intimacy (every warm moment now suspect) | Professional caution (reliable informant now uncertain quantity) | -**The second-playthrough resonance:** The player who has experienced both sides of Triangle 4 understands: -- Kael is trying to get OUT of the ring to protect Naia. His exit attempt is an act of love, not treachery. -- Sera is protecting Naia by NOT reporting what she found. Her concealment is loyalty, not corruption. -- The smuggler and detective are both experiencing friendship fractured by the same cause — Naia's worry about Kael, and the chain of protection that worry created. +**The second-playthrough resonance:** The player who has experienced both sides of the triangle understands that THE FRIEND's concealment comes from care — protection of someone they love, fear of consequences, not treachery. The smuggler and detective are both experiencing friendship fractured by the same cause, approached from opposite angles. This is the design. The contradiction is not "THE FRIEND is bad." The contradiction is "THE FRIEND is doing something complicated for reasons that make sense, and it's happening to YOU." @@ -248,4 +237,4 @@ This pattern is designed to be reused. When designing a future FRIEND NPC for a --- -*Ticket #332 — Contradiction arc design document. Reusable FRIEND pattern. v0.1 scope.* +*Ticket #332 — Contradiction arc design document. Reusable FRIEND pattern.* diff --git a/wiki/authoring/npc-patterns/mirror-moment.md b/wiki/authoring/npc-patterns/mirror-moment.md index dabe92744..cab8b1c60 100644 --- a/wiki/authoring/npc-patterns/mirror-moment.md +++ b/wiki/authoring/npc-patterns/mirror-moment.md @@ -1,9 +1,6 @@ # Mirror Moment Design Document -**Ticket:** #329 | **Priority:** Medium | **Sprint:** 12 -**Status:** v0.1 Draft -**Owners:** Paula (design), Mellanie (authoring) -**Blocked by:** #297 (Kael profile — done), #298 (Sera profile — done) +**Status:** Design pattern (v0.1 examples removed — see D-122, D-117) **Decisions referenced:** D-032 (separate monologue pools), D-034 (THE FRIEND), D-039 (wow moment #4 — Divergence Reveal) --- @@ -17,7 +14,7 @@ The player who has completed both playthroughs encounters the mirror moments as **What a mirror moment is NOT:** - A branching dialogue option - A triggered cutscene -- An informational difference ("the smuggler knows X and the detective doesn't") +- An informational difference ("character A knows X and character B doesn't") A mirror moment is an **interpretive difference** — same information, same NPC behavior, same physical event. Different internal frame. Different emotional weight. @@ -26,187 +23,41 @@ A mirror moment is an **interpretive difference** — same information, same NPC ## 2. Design Principles **Principle 1: Same trigger, different pool (D-032 hard partition)** -Mirror moments operate because monologue pools are hard-partitioned by character. The same trigger key fires into the smuggler pool OR the detective pool — never both. The authoring requirement is to write both sides of every shared trigger. +Mirror moments operate because monologue pools are hard-partitioned by character. The same trigger key fires into one character's pool OR the other's — never both. The authoring requirement is to write both sides of every shared trigger. **Principle 2: The difference must be felt, not explained** A mirror moment works when the player FEELS the divergence without having it explained. The two monologue lines should be immediately recognizable as coming from different places — different relationships, different frames, different fears. **Principle 3: The mirror reveals what the character CARES about** -The smuggler's monologue reveals personal loyalty (people). The detective's monologue reveals investigative analysis (patterns). A mirror moment that doesn't surface this difference is a content gap, not a mirror. +The relationship to a place, person, or object is what the mirror reveals. A mirror moment that doesn't surface this difference is a content gap, not a mirror. **Principle 4: At least some mirrors should work on first playthrough** Not every mirror moment requires a second playthrough to land. Some mirrors work as a moment of character voice — the player just hears what their character notices. Second playthrough makes the divergence explicit, but first playthrough should have its own emotional coherence. --- -## 3. The 10 Mirror Moments (v0.1) - -### Mirror 1: The Friend's Routine - -**Trigger:** `observe_npc` — Seeing THE FRIEND (Kael/Sera) going about their daily routine in their expected location. - -**Shared observation:** THE FRIEND is doing exactly what they always do. Nothing unusual. The baseline before anything cracks. - -**Smuggler monologue:** -*"Kael's at his station. Right where he always is. Something settles when the shift starts right."* - -**Detective monologue:** -*"The dock worker — Davan — is on the floor again. Same position, same timing. Three days in a row. That's a routine. File it."* - -**What the mirror reveals:** The smuggler sees a person. The detective sees a data point. Same NPC at the same station. The relationship determines the register. - ---- - -### Mirror 2: The Empty Corridor - -**Trigger:** `enter_location` — Player enters a maintenance corridor when no other NPCs are present. - -**Shared observation:** The corridor is empty. The maintenance systems hum. No one is watching. - -**Smuggler monologue:** -*"Clear. Good. Transition window's still open for eleven more minutes."* - -**Detective monologue:** -*"Three separate entries to this corridor in my district walkthrough. Nothing documented in my file about why workers access this route. Off-books path? Add it to the log."* - -**What the mirror reveals:** The smuggler reads the empty corridor as operational safety. The detective reads it as an investigative lead. The physical space is identical; the cognitive frame inverts it. - ---- - -### Mirror 3: The Worried Partner (Naia Tamm) - -**Trigger:** `observe_npc` — Seeing Naia Tamm sitting alone at the bar, visibly preoccupied. - -**Shared observation:** Naia is at The Last Shift without Kael. She looks tired or worried. Not in distress — just carrying something heavy. - -**Smuggler monologue:** -*"Naia's here without Kael again. She looks rough. Should check in. ...Not now. Later."* - -**Detective monologue:** -*"That woman — Tamm, I think Sera mentioned her — is sitting alone. Wrong energy for a social evening. Something at home, or something she's heard?"* - -**What the mirror reveals:** The smuggler has a protective impulse toward Naia but defers it. The detective categorizes Naia as a potential information source. Same worried woman, same empty chair across from her. One character plans to check on a person; the other plans to assess a witness. - ---- - -### Mirror 4: The Spending - -**Trigger:** `observe_npc` — Watching Torek Lintar buy rounds at the bar. - -**Shared observation:** Torek is buying drinks for several people he doesn't know well. The drinks are nicer than they should be on a compliance officer's salary. He's clearly enjoying himself. - -**Smuggler monologue:** -*"Torek's buying rounds again. That's the third time this week. Either he won something, or he's getting paid from somewhere he shouldn't be. Starting to worry about that."* - -**Detective monologue:** -*"Commission compliance officer, buying grain spirit for half the bar. On his salary? That doesn't close. Financial tell. Noted."* - -**What the mirror reveals:** Both characters notice the same behavioral anomaly. The smuggler frames it as a security risk to the ring. The detective frames it as an evidentiary lead. Both have the same concern (Torek's spending is unusual) — but the concern has completely different stakes. - ---- - -### Mirror 5: Sera Leaving - -**Trigger:** `observe_npc` — Watching Sera Venn gather her things and leave the bar when Torek arrives. - -**Shared observation:** Sera gives a brief excuse (headache, kiosk check, early shift) and leaves. She was comfortable until the moment Torek walked in. - -**Smuggler monologue:** -*"Sera left. Good timing — she was starting to make everyone nervous anyway. Commission presence at Lera's always shifts the temperature."* - -**Detective monologue:** -*"Second time now. Sera leaves when Torek walks in. Same type of excuse. 'Headache' last time, 'kiosk' tonight. Same result. That's two data points. Third is a pattern."* - -**What the mirror reveals:** The smuggler reads Sera's departure as relief (Commission leaving = safer conversation). The detective reads the same departure as a behavioral anomaly. The event is identical. The emotional response is inverted. - -This mirror is structurally important: it shows the detective's FRIEND arc developing through observational patience, while simultaneously showing the smuggler's categorical relationship with Commission presence. - ---- - -### Mirror 6: The Station Hum - -**Trigger:** `time_idle` — Player is stationary in the terminal for more than a few seconds with no active interaction. - -**Shared observation:** The station's ambient systems — span gate hum, ventilation cycle, cargo machinery in the background — fill the silence. Sova at rest. - -**Smuggler monologue:** -*"Span gate's cycling early. One hour to the next transit. Voss'll be running the schedule check in twenty."* - -**Detective monologue:** -*"They've been on this station their whole lives. That hum is just background to them. I'm still trying to tune it out."* - -**What the mirror reveals:** The smuggler hears operational data in the ambient sound. The detective hears alienation. The station hum carries the same frequency to both characters' ears. It means completely different things to their experience of being in this place. - ---- - -### Mirror 7: The Commission Kiosk - -**Trigger:** `enter_location` or `observe_npc` — The player walks past or observes the Commission compliance kiosk near the terminal entrance. - -**Shared observation:** The kiosk is a small Commission compliance desk near the terminal entrance — mostly unmanned, used for permit verification and compliance queries. Standard infrastructure. - -**Smuggler monologue:** -*"Commission kiosk. Nobody uses it. Institutional furniture. Long as nobody decides to run a full cargo audit, that's exactly what I want it to stay."* - -**Detective monologue:** -*"The compliance kiosk has public access to manifest verification records. Local. Less filtered than the request I made through channels. Check it when Maret's not watching."* - -**What the mirror reveals:** The smuggler reads the kiosk as a passive threat to be ignored. The detective reads it as an investigative tool. Same object. Same physical location. The smuggler hopes it stays irrelevant; the detective plans to use it. - ---- - -### Mirror 8: Kael and Naia Together (Bar) - -**Trigger:** `observe_npc` — Seeing Kael and Naia sitting together at their usual table. Naia is talking; Kael is listening but seems distracted. - -**Shared observation:** A couple having dinner. Naia is clearly talking seriously about something. Kael is present but not quite there. The gap between them is subtle but visible. - -**Smuggler monologue:** -*"Kael and Naia look... off. Naia's talking a lot. Kael's nodding but he's somewhere else. Something's going on at home. He doesn't say."* - -**Detective monologue:** -*"Couple — the dock worker, Davan, and the woman who sits with Sera sometimes. She's animated; he's distracted. Relationship tension. That level of checked-out usually means someone's keeping something."* - -**What the mirror reveals:** The smuggler reads this as a friend's private trouble that deserves respect and distance. The detective reads it as behavioral evidence — someone keeping something from a partner. Same visible tension. One character looks away; the other leans in. - ---- - -### Mirror 9: The Manifest Terminal - -**Trigger:** `observe_npc` or `enter_location` — The freight manifest terminal in the terminal hub. - -**Shared observation:** A freight terminal kiosk showing manifest data. Busy during shifts; the data moves constantly. - -**Smuggler monologue:** -*"That's Maret's terminal. She's got access to all the schedules from here. If anything's getting flagged in the manifest data, she'd see it before anyone else. Maret's solid. She won't say anything."* - -**Detective monologue:** -*"Freight manifests for the last six months, loaded from here. The cluster analysis shows three anomaly windows, all at shift transition. That's not clerical error. Someone's using this terminal to adjust records after the fact."* - -**What the mirror reveals:** The smuggler sees a trusted colleague's workspace and trusts that colleague's loyalty. The detective sees the exact location where evidence of the ring's operations lives. The terminal is simultaneously proof of criminal activity and proof of a trusted relationship — depending on which character is reading it. - ---- - -### Mirror 10: The End of Shift - -**Trigger:** `observe_npc` — Watching the shift change happen across the terminal floor — workers clocking out, new crew arriving, a brief period of cross-traffic and handoffs. - -**Shared observation:** Dozens of workers moving at once. The shift change is organized chaos. Cargo gets routed, schedules are handed off, the floor changes. - -**Smuggler monologue:** -*"Shift transition. Twenty-minute window. The floor's all cross-traffic now — nobody's tracking individual movement. This is when it runs."* - -**Detective monologue:** -*"Shift change. Every anomaly in my manifest data clusters around this. The window. The handoff moment. Someone is using the cross-traffic as cover. But for WHAT?"* - -**What the mirror reveals:** The smuggler knows exactly what the shift change covers. The detective sees the pattern but not the specific. Both characters observe the same 20-minute window of organized chaos. One is running something through it; the other is trying to figure out what's being run. +## 3. Mirror Moment Examples + +*v0.1 examples removed (cited named NPCs no longer in v0.2 pipeline — D-122). Author mirror pairs against the active district's social sites and NPC roster.* + +**Structural types to cover in any district:** +- THE FRIEND at baseline routine (personal vs. analytical read) +- Empty operational space (operational safety vs. investigative lead) +- NPC in emotional distress (protective impulse vs. witness assessment) +- Behavioral tell (security concern vs. evidentiary lead) +- THE FRIEND avoiding another NPC (relief vs. behavioral anomaly) +- Ambient environment (familiarity vs. alienation) +- Institutional infrastructure (passive threat vs. investigative tool) +- THE FRIEND with their significant relationship (privacy vs. evidence) +- Information terminal (trusted colleague's workspace vs. crime scene) +- Routine operational window (cover vs. pattern recognition) --- ## 4. Mirror Moment Authoring Rules ### Rule 1: Both sides are mandatory -A mirror moment is only complete when both the smuggler monologue and the detective monologue are authored. Omitting one side is a content gap. +A mirror moment is only complete when both sides of the mirror are authored. Omitting one side is a content gap. ### Rule 2: Same trigger key, different pool Both lines use the same `trigger` type and similar `prerequisite` conditions. They appear in separate character monologue files (D-032 hard partition). The only difference is the `character` tag. @@ -225,30 +76,30 @@ Add `tags: [mirror_moment]` to both sides of every mirror pair so they can be id ## 5. YAML Example ```yaml -# Smuggler side — monologue-smuggler.yaml -- id: pc-smuggler_m_s_044 - character: smuggler +# Character A side — monologue-character-a.yaml +- id: pc-{archetype-a}_m_s_001 + character: {archetype-a} trigger: observe_npc prerequisite: - location: the-terminal - target: npc:naia-tamm + location: {location-slug} + target: npc:{npc-slug} relationship_state: Known - text: "Naia's here without Kael again. She looks rough. Should check in. ...Not now. Later." - mood: [concerned, fond] + text: "{Line from character A's relationship frame — personal, protective, operational}" + mood: [warm, concerned] topic: [colleague] - tags: [mirror_moment, mirror_worried_partner] + tags: [mirror_moment, mirror_{name}] -# Detective side — monologue-detective.yaml -- id: pc-detective_m_d_044 - character: detective +# Character B side — monologue-character-b.yaml +- id: pc-{archetype-b}_m_d_001 + character: {archetype-b} trigger: observe_npc prerequisite: - location: the-last-shift - target: npc:naia-tamm - text: "That woman — Tamm, I think Sera mentioned her — is sitting alone. Wrong energy for a social evening. Something at home, or something she's heard?" + location: {location-slug} + target: npc:{npc-slug} + text: "{Same trigger, different frame — analytical, investigative, pattern-seeking}" mood: [analytical, curious] topic: [investigation] - tags: [mirror_moment, mirror_worried_partner] + tags: [mirror_moment, mirror_{name}] ``` --- @@ -267,14 +118,10 @@ For each mirror pair: --- -## 7. Expansion Notes (Post-v0.1) +## 7. Expansion Notes -Additional mirror moments to author in future content passes: - -- **The Missing Person Notice:** A posted notice near the bar about a missing dock worker (pre-existing, unrelated to main plot). Smuggler: "People disappear. Station life." Detective: "Filed under 'before my posting.' What was the investigative status?" -- **Voss Walking the Floor:** The shift supervisor doing a routine floor inspection. Smuggler sees cover being maintained. Detective sees a potential informant. -- **Drin's Inspection:** Dock inspector doing a container verification. Smuggler knows Drin will find nothing. Detective sees the inspection as either genuine compliance or evidence of a compromised process. +Mirror moments should be authored for every repeated trigger point in a district's social sites. Priority triggers: THE FRIEND's daily routine, shift transitions, any institutional infrastructure, behavioral tells, NPC pairings that create observable social dynamics. The more a location has observable social texture, the more mirror moments it can support. --- -*Ticket #329 — Mirror moment design document. 10 paired observations. v0.1 scope.* +*Design pattern document — Mirror Moments. Examples are authored per-district against the active NPC roster.* diff --git a/wiki/authoring/npc-patterns/the-mirror.md b/wiki/authoring/npc-patterns/the-mirror.md index 7c489d525..f89f684b4 100644 --- a/wiki/authoring/npc-patterns/the-mirror.md +++ b/wiki/authoring/npc-patterns/the-mirror.md @@ -3,7 +3,6 @@ **Pattern Type:** Production-level Tier 1 (emotional depth, full 10-axis model) **Design Principle:** Transparency as contrast mechanism **Ticket:** #380 -**Reference Implementation:** Naia Tamm (Sova Transit District v0.1) --- @@ -26,10 +25,10 @@ THE MIRROR is the honest-character NPC pattern. No contradiction arc, no deep se | Absent System | Why Missing | Content Signal | |--------------|-------------|----------------| | **No tells** | Tells imply deception or concealment. MIRROR has nothing to conceal from the player (though they may be uninformed about events around them). The absence of tells IS the tell — when the player has learned to read behavioral flags on every other NPC, encountering someone without them is the anomaly. | The player's monologue might note: "No hesitation. No evasion. Either she's telling the truth or she's the best liar I've ever met." The absence becomes noticeable. | -| **No dishonesty ≠ no misinformation** | MIRROR NPCs can be *wrong* without being *deceptive*. A MIRROR who has been lied to will repeat that lie in good faith -- they are transparent about what they believe, not omniscient about what is true. Naia reporting "Kael said he's picking up extra shifts" is honest transmission of a lie she was told. | The player recognizes the MIRROR is being used as an unwitting conduit. This makes the liar's deception feel worse, not the MIRROR's honesty feel cheaper. | +| **No dishonesty ≠ no misinformation** | MIRROR NPCs can be *wrong* without being *deceptive*. A MIRROR who has been lied to will repeat that lie in good faith -- they are transparent about what they believe, not omniscient about what is true. A MIRROR repeating a partner's cover story is honest transmission of a lie — they're being transparent about what they believe, not what is true. | The player recognizes the MIRROR is being used as an unwitting conduit. This makes the liar's deception feel worse, not the MIRROR's honesty feel cheaper. | | **No secrets** (or only mundane surface-level ones) | The `secret_held` field is empty or contains only ordinary privacy (e.g., "worried about partner's late nights" — visible to anyone observant). No trust gates that reveal hidden criminal knowledge or conspiracies. | If a MIRROR has a "secret," it's one they'd share with a sympathetic stranger at a bar. There's no revelation moment where the player discovers the MIRROR was hiding something all along. | | **No contradiction arc** | No phases, no discovery moment, no color shift from green to amber. The relationship with MIRROR is stable across the session. | The trust level may deepen (public → insider → peer), but there's no betrayal moment. The MIRROR you meet at minute 5 is the same MIRROR at minute 25. | -| **No trust-gated dialogue that changes the picture of who they are** | Trust progression reveals more FEELING, not more SECRETS. Deeper access tiers show emotional vulnerability, not concealed information. | At `public` tier: "I'm worried about Kael." At `peer` tier: "I don't know what to do. I love him, but I can't keep living like this." Same truth, deeper emotion. | +| **No trust-gated dialogue that changes the picture of who they are** | Trust progression reveals more FEELING, not more SECRETS. Deeper access tiers show emotional vulnerability, not concealed information. | At `public` tier: "I'm worried about them." At `peer` tier: "I don't know what to do. I love them, but I can't keep living like this." Same truth, deeper emotion. | ### What MIRROR NPCs DO Have @@ -50,7 +49,7 @@ THE MIRROR is the honest-character NPC pattern. No contradiction arc, no deep se |-------------|-----------|----------| | **Dialogue** | 25-35 | Greetings (5), emotional state conversation (8-10), relationship discussion (5-7), situation responses (5-8), peer-tier vulnerability (3-5) | | **Trust-gated dialogue** | 10-15 | Deeper emotional exposure at insider/peer tiers. Not secret revelations — emotional revelations. "I'm scared" vs "I'm worried." | -| **Unprompted lines** | 3-5 | MIRROR volunteers emotional state or asks for help. "Have you seen Kael today? I'm worried." | +| **Unprompted lines** | 3-5 | MIRROR volunteers emotional state or asks for help. "Have you seen {partner} today? I'm worried." | | **Monologue triggers** | 10-15 per character | Player's internal reaction to MIRROR's honesty. Smuggler: guilt (if protecting someone the MIRROR loves). Detective: relief (finally someone not lying) + strategic value (MIRROR as witness to behavioral change). | | **Voice sample** | 3-5 lines | Covering: baseline warm, worried, brittle (close to tolerance break) | @@ -73,7 +72,7 @@ THE MIRROR is the honest-character NPC pattern. No contradiction arc, no deep se | What the Player Experiences | System State | Mechanical Expression | |-----------------------------|--------------|---------------------| | Early game: MIRROR seems ordinary | No behavioral flags set. No `contradiction_flagged`. No tell observations in monologue. | The player's training (from interacting with NPCs who DO have tells) hasn't fired. This feels normal. | -| Mid game: Player has learned to read other NPCs | The player has observed: Kael looks left when lying, Sera leaves when Torek arrives, Voss fidgets when questioned about manifests. | The player's mental model now expects tells. They're watching for them. | +| Mid game: Player has learned to read other NPCs | The player has observed: one NPC deflects eye contact when lying, another leaves when a third NPC arrives, a third fidgets when questioned about their role. | The player's mental model now expects tells. They're watching for them. | | MIRROR interaction: No tells present | Player talks to MIRROR. MIRROR makes eye contact, answers directly, emotional state matches words. No spatial deviation, no topic deflection, no nervous tics. | The ABSENCE is striking. The player's monologue notes it: "No hesitation. She's either telling the truth or she's the best actor I've ever seen." | | Resolution: Trust through transparency | If the player cross-references MIRROR's information with other sources, it checks out. MIRROR was telling the truth. | The player LEARNS that honesty exists in this world. That one person isn't performing. That becomes the emotional fulcrum for everything else. | @@ -99,10 +98,10 @@ MIRROR dialogue follows the standard four-layer system (D-028) but with simplifi | Tier | What MIRROR Shares | Example | |------|-------------------|---------| -| **Public** | Observable emotional state, general information about their life/relationships | "I teach at the community school. The kids are doing well this term." | -| **Insider** | Specific worry, named relationships, genuine vulnerability | "Kael's been coming home late. Says it's work, but the schedule doesn't match. I don't know what to think." | -| **Peer** | Deep emotional exposure, requests for help or advice | "I'm scared, honestly. Not of Kael — of what Kael might be involved in. I don't know who else to talk to." | -| **Authority** (if detective) | Cooperation with investigation, willingness to provide information about loved one despite emotional cost | "If you think Kael is in trouble, I want to know. I'll help if I can. Just — please don't hurt him." | +| **Public** | Observable emotional state, general information about their life/relationships | "I work at the station school. The kids are doing well this term." | +| **Insider** | Specific worry, named relationships, genuine vulnerability | "{Partner} has been coming home late. Says it's work, but the schedule doesn't match. I don't know what to think." | +| **Peer** | Deep emotional exposure, requests for help or advice | "I'm scared, honestly. Not of them — of what they might be involved in. I don't know who else to talk to." | +| **Authority** (if detective) | Cooperation with investigation, willingness to provide information about loved one despite emotional cost | "If you think they're in trouble, I want to know. I'll help if I can. Just — please don't hurt them." | **No secret tier that reveals hidden criminal knowledge.** The MIRROR doesn't have hidden criminal knowledge. The "secret" tier for MIRROR is the deepest emotional vulnerability, not a plot revelation. @@ -115,14 +114,14 @@ What changes: Depth of emotional sharing, not type of information. What doesn't change: The facts. MIRROR tells the same truth at all tiers. The emotion around it deepens. ``` -**Example progression (Naia about Kael):** +**Example progression (MIRROR about their entangled partner):** -- **Public:** "Kael works at the freight hub. Dock worker. We've been together six years." -- **Insider:** "Kael's been stressed lately. Late nights, evasive when I ask about it. I'm worried." -- **Peer:** "I love him. But I can't keep doing this — the not-knowing is killing me. I think something's wrong. I just don't know what." -- **Authority (detective):** "If you're investigating something at the hub, and if Kael is involved — I need to know. I'll help. I just need the truth." +- **Public:** "{Partner} works at the freight terminal. We've been together {n} years." +- **Insider:** "{Partner} has been stressed lately. Late nights, evasive when I ask about it. I'm worried." +- **Peer:** "I love them. But I can't keep doing this — the not-knowing is killing me. I think something's wrong. I just don't know what." +- **Authority (detective):** "If you're investigating something there, and if {partner} is involved — I need to know. I'll help. I just need the truth." -Same story. Deeper emotion. No revelation that changes the player's understanding of who Naia is. +Same story. Deeper emotion. No revelation that changes the player's understanding of who the MIRROR is. ### Monologue Trigger Design @@ -132,153 +131,29 @@ MIRROR NPCs trigger monologue focused on the PC's EMOTIONAL REACTION to the MIRR | Trigger | Monologue Content | Emotional Layer | |---------|------------------|-----------------| -| Observe MIRROR waiting at bar | "Naia's at the bar again. Alone. Keeps looking at the door. I know where Kael is. I can't say." | Guilt. The smuggler's operational knowledge creates distance from the MIRROR's suffering. | -| MIRROR asks about loved one | "She asked if I'd seen Kael today. What do I say? 'Yeah, he's fine, just moving contraband?' Can't tell her. Can't lie to her face either." | Moral tension. The MIRROR's directness makes evasion feel worse. | -| MIRROR shares deep worry | "She's really scared. Not just worried — scared. And she has no idea what's actually happening. If she knew..." | Protective instinct + guilt. The smuggler wants to shield the MIRROR from both the truth and the consequences. | +| Observe MIRROR waiting at bar | "{MIRROR} is at the bar again. Alone. Keeps looking at the door. I know where {partner} is. I can't say." | Guilt. The smuggler's operational knowledge creates distance from the MIRROR's suffering. | +| MIRROR asks about loved one | "They asked if I'd seen {partner} today. What do I say? Can't tell them. Can't lie to their face either." | Moral tension. The MIRROR's directness makes evasion feel worse. | +| MIRROR shares deep worry | "They're really scared. Not just worried — scared. And they have no idea what's actually happening. If they knew..." | Protective instinct + guilt. The smuggler wants to shield the MIRROR from both the truth and the consequences. | **Detective monologue about MIRROR:** | Trigger | Monologue Content | Emotional Layer | |---------|------------------|-----------------| -| First conversation with MIRROR | "She's not hiding anything. I've interviewed enough people to know when someone's performing. She's genuinely worried." | Relief. In a district where everyone seems evasive, the MIRROR is a breath of fresh air. | -| MIRROR shares information about loved one | "She knows his routine better than anyone. The late nights, the evasions — she's been tracking them without realizing it. She's building my case for me." | Strategic recognition. The MIRROR is a witness to behavioral change — the best kind. | -| MIRROR asks for help | "She wants me to figure out what's wrong. Not to arrest anyone — just to know. That's... trust. Real trust." | Emotional weight. The detective realizes the investigation has personal stakes for the MIRROR. Success means breaking someone's heart. | +| First conversation with MIRROR | "Not hiding anything. I've interviewed enough people to know when someone's performing. This person is genuinely worried." | Relief. In a district where everyone seems evasive, the MIRROR is a breath of fresh air. | +| MIRROR shares information about loved one | "Knows {partner}'s routine better than anyone. The late nights, the evasions — been tracking them without realizing it. Building my case for me." | Strategic recognition. The MIRROR is a witness to behavioral change — the best kind. | +| MIRROR asks for help | "They want me to figure out what's wrong. Not to arrest anyone — just to know. That's... trust. Real trust." | Emotional weight. The detective realizes the investigation has personal stakes for the MIRROR. Success means breaking someone's heart. | --- -## 6. Naia Tamm — Reference Implementation +## 6. Reference Implementation -Naia Tamm is the v0.1 MIRROR NPC in Sova Transit District. Let me walk through how her 10-axis profile demonstrates each MIRROR rule. +*v0.1 named-NPC example removed (cited NPCs no longer in v0.2 pipeline — D-122). Author MIRROR reference implementations against the active district's roster using the generator template in Section 7.* -### Core Identity - -- **Name:** Naia Tamm -- **Age:** 33 -- **Role:** Teacher, Station Sova community school -- **Social Site:** The Last Shift (Bar) -- **Triangle:** Triangle 4 — The Worried Partner (Naia - Kael - Sera) - -### 10-Axis MIRROR Implementation - -#### 1. Want (Tier 1 depth, no deception) - -**Primary:** Understand what's happening with Kael. - -Naia and Kael have been together 6 years. Kael started coming home late, evasive answers, money that doesn't match hours. Naia doesn't know about the ring. Naia knows the person they share a life with is hiding something. The not-knowing is worse than almost any truth. - -**Secondary:** Protect the life they've built. - -Naia wants it resolved without destroying everything — the home, the relationship, the stability. This is why Naia confides in Sera instead of confronting Kael directly: wants advice, not a fight. - -**MIRROR rule demonstrated:** Want is ABOUT someone else's secret, not concealing Naia's own. Naia's motivation is transparent to the player from the first conversation. - -#### 2. Secret / Vulnerability (surface-level only) - -**Surface secret:** Worried about Kael. Visible to anyone who sees Naia's stress. - -**Deep secret:** Naia confided in Sera about Kael's behavior. This is the action that set Sera's compliance check in motion, though Naia doesn't know that. Naia shared a personal worry with a trusted friend. - -**Vulnerability:** Emotional exposure. Naia's worry is genuine, visible, exploitable. - -**MIRROR rule demonstrated:** Naia's "secret" is that she confided in a friend. That's not a conspiracy — it's ordinary human behavior under stress. The vulnerability is EMOTIONAL, not criminal. - -#### 3. Relationships (genuine, no hidden agendas) - -**Kael Davan (partner, 6 years):** Deep love, growing anxiety. Doesn't question Kael's character — just Kael's honesty. - -**Sera Venn (close friend, 10 months):** Genuine friendship. Trusts Sera as someone who can give perspective without gossip. - -**Lera Sessik (bar acquaintance):** Social connection. Lera is warm to Naia — protective attention to someone visibly struggling. - -**MIRROR rule demonstrated:** All relationships are exactly what they appear to be. No hidden resentments, no secret alliances, no ulterior motives. Naia likes who she likes for straightforward reasons. - -#### 4. Tolerance Threshold (moderate, genuine limits) - -**Moderate.** Patient — teaching station kids requires it. But patience is fraying. Every evasive answer from Kael chips at tolerance. If pushed to breaking point, Naia confronts Kael directly — which could trigger Kael's crisis, force Sera's hand, or give the detective an opening. - -**MIRROR rule demonstrated:** Tolerance threshold is real and observable. No hidden resilience, no secret breaking point. What Naia says she can tolerate is what she can tolerate. - -#### 5. Daily Routine (predictable, no spatial deviations) - -- 07:00 - 15:00: Teaching (community school, Residential Radial A) -- 15:00 - 15:30: Commute back to Transit District -- 15:30 - 17:30: Bar (The Last Shift) — meets Sera, social time -- 17:30 - 22:00: Home. Waits for Kael. -- Late evenings: Alone in apartment, wondering where Kael is. - -**MIRROR rule demonstrated:** Routine is stable, observable, doesn't hide anything. Naia is where she says she'll be. No unauthorized corridor meetings, no suspicious timing patterns. The routine itself is transparent. - -#### 6. Information Inventory (knows what she knows, doesn't know what she doesn't) - -**Knows:** Kael's normal routine (6 years of partnership), Kael's recent deviations (late nights, evasive answers), Sera's Commission role (knows Sera is a tech, not investigator), bar social dynamics, school community. - -**Doesn't know:** Ring, smuggling, Kael's membership, manifest discrepancies, Sera's compliance check, the detective's investigation. - -**MIRROR rule demonstrated:** Naia's knowledge state is exactly what it appears to be. She's not concealing anything she knows. She genuinely doesn't know the conspiracy exists. This makes her the perfect witness to BEHAVIORAL change without knowledge of CAUSE. - -#### 7. Contentment (low and declining — thematically essential) - -**Was content:** Stable job, loving partner, community. Now relationship anxiety is coloring everything. Teaching is harder when distracted. Bar visits tinged with worry. Home is where the absence lives. - -**MIRROR rule demonstrated:** Contentment trajectory is VISIBLE and GENUINE. Naia isn't pretending to be happy or hiding dissatisfaction. Her emotional state is observable in her voice, her behavior, her routine changes (increased bar presence = avoiding empty apartment). - -#### 8. Personality Traits (no performance, no mask) - -- **Primary: Caring** — genuinely invested in other people's wellbeing -- **Secondary: Patient** — tolerates uncertainty longer than most, but not indefinitely -- **Tertiary: Perceptive** — reads emotional states well. Knows when Kael is lying even if can't prove it. - -**MIRROR rule demonstrated:** These traits are REAL, not performed. Naia's caring isn't a manipulation tactic. Her perceptiveness makes her WORRIED (she knows something's wrong) but doesn't make her SUSPICIOUS (she trusts Kael's character even while doubting his honesty about the situation). - -#### 9. Tell System (ABSENT — the design payload) - -Naia's entry in the wiki lists three "tells": - -| Tell | Trigger | Observable To | -|------|---------|---------------| -| Visible stress | Tired eyes, distracted conversation, checking lattice | Sera, Lera, Detective, bar regulars | -| Mentions Kael unprompted | Worry overflowing into conversation | Sera, Detective (if sitting nearby) | -| Increased bar presence | Coming more often, staying longer — avoiding empty apartment | Lera (notices pattern), Sera (recognizes coping mechanism) | - -**CRITICAL MIRROR DISTINCTION:** These are NOT tells in the deception-detection sense. They're not "behavioral flags that signal concealment." They're GENUINE STRESS MARKERS. Naia is visibly worried because Naia IS worried. There's no contradiction between internal state and external behavior. - -**The system perspective:** A TELL is a deviation that signals deception (Kael looks left when lying, Sera leaves when Torek arrives). Naia's behaviors are COPING MECHANISMS and EMOTIONAL EXPRESSIONS, not tells. The player's monologue doesn't say "She's hiding something." It says "She's really struggling." - -**MIRROR rule demonstrated:** The absence of deception-tells IS the content. The player who has learned to read evasion on other NPCs will notice that Naia makes direct eye contact, answers questions fully, doesn't deflect topics, doesn't have spatial anomalies beyond her normal routine. That ABSENCE becomes the signal: "This person is being honest with me." - -#### 10. Skill Set (civilian, no hidden capabilities) - -**Occupational:** Teaching, community engagement, youth education, curriculum management. - -**Combat tag:** NO. Entirely civilian. - -**Lattice capability:** Baseline. - -**MIRROR rule demonstrated:** No hidden skills, no secret training, no combat capability concealed behind a civilian facade. Naia is exactly what she presents: a teacher who's worried about her partner. - -### Naia's Triangle Role (Emotional Center) - -**Triangle 4: The Worried Partner (Naia - Kael - Sera)** - -Naia is the emotional center. Naia's worry about Kael triggered Sera's investigation. Naia's trust in Sera makes Sera's concealment more painful. Naia connects the detective's investigation to Kael's personal life through Sera, through Naia's own observations, through the fact that a worried partner is the best witness to behavioral change. - -**Why MIRROR works here:** Naia is UNINVOLVED in the conspiracy but CENTRAL to its emotional impact. She's the person both the smuggler and detective want to protect — and the person whose honest worry makes the smuggling operation's human cost visible. If Naia were lying, the triangle would be about competing deceptions. Because Naia is honest, the triangle is about the COST of everyone else's deceptions. - -### Dual-Lens Implementation - -**Smuggler perspective (if smuggler is Kael's friend):** - -Naia is emotional collateral. The smuggler knows why Kael is busy and can't say. Seeing Naia's worry creates guilt. If Naia asks the smuggler about Kael, there's no good answer. - -Sample monologue: *"Naia's at the bar again. Alone. Looking at the door every time it opens. I know where Kael is. I can't say."* - -**Detective perspective:** - -Naia is a potential source. A partner who suspects their loved one is hiding something is a classic entry point. The detective can cultivate Naia's trust by being sympathetic — listen, validate, gently probe. Naia might not know specifics, but knows Kael's routine, habits, recent changes better than anyone. - -Sample monologue: *"The partner — Naia Tamm. Teacher. Visibly stressed. Keeps looking at the door. If Davan is involved, this partner knows something changed, even if they don't know what."* - -**MIRROR payload in dual-lens:** SAME transparency, DIFFERENT player reaction. Smuggler feels guilt. Detective sees opportunity. Both recognize honesty. The MIRROR's transparency makes the two characters' different relationships to truth more visible by contrast. +**What a reference implementation demonstrates:** +- 10-axis profile with the MIRROR rules annotated at each axis +- Triangle role showing how the MIRROR's honesty creates emotional pressure on entangled NPCs +- Dual-lens comparison showing same transparency producing different player reactions (guilt vs. strategic recognition) +- Visible stress markers explicitly distinguished from deception tells --- @@ -459,7 +334,7 @@ MIRROR is mechanically interesting BECAUSE of the surrounding systems. In a game ### The Emotional Fulcrum -When the ring's actions threaten the MIRROR (Naia worrying about Kael, potentially losing her relationship and stability), the player FEELS it because they've learned to believe this person. +When the ring's actions threaten the MIRROR's relationships and stability, the player FEELS it because they've learned to believe this person. **Smuggler:** The guilt of watching an innocent person suffer because of your operations. You can't tell her. You can't protect her. You're part of the cause of her pain. @@ -469,18 +344,18 @@ When the ring's actions threaten the MIRROR (Naia worrying about Kael, potential ### The Trust Anchor -In a district where everyone has an agenda, the MIRROR is the person the player can RELY on. When the smuggler needs to know what's happening with Kael, Naia will tell the truth as she understands it. When the detective needs a witness, Naia will cooperate fully. The MIRROR's reliability is itself a strategic asset — but one that comes with emotional cost (using an innocent person's trust). +In a district where everyone has an agenda, the MIRROR is the person the player can RELY on. When the smuggler needs to know what's happening with {partner}, the MIRROR will tell the truth as they understand it. When the detective needs a witness, the MIRROR will cooperate fully. The MIRROR's reliability is itself a strategic asset — but one that comes with emotional cost (using an innocent person's trust). -**System interaction:** The trust-gated gossip system (D-028 Layer 3, #171) means NPCs share information at different access tiers. With most NPCs, the player wonders: "Is this real or are they steering me?" With MIRROR, that question is answered: "This is real. She's telling me everything she knows." That certainty is VALUABLE in a game built on asymmetric information. +**System interaction:** The trust-gated gossip system (D-028 Layer 3, #171) means NPCs share information at different access tiers. With most NPCs, the player wonders: "Is this real or are they steering me?" With MIRROR, that question is answered: "This is real. They're telling me everything they know." That certainty is VALUABLE in a game built on asymmetric information. ### The Replay Dimension -On second playthrough, playing the other character, the MIRROR's honesty becomes even more visible. The player KNOWS Naia isn't involved. They see her worry from a different angle: +On second playthrough, playing the other character, the MIRROR's honesty becomes even more visible. The player KNOWS this person isn't involved. They see their worry from a different angle: -- **Playthrough 1 (smuggler):** "I know why Kael is busy. Naia's worry is collateral damage." -- **Playthrough 2 (detective):** "Naia's worry is my opening. She's the way in." +- **Playthrough 1 (smuggler):** "I know why {partner} is busy. {MIRROR}'s worry is collateral damage." +- **Playthrough 2 (detective):** "{MIRROR}'s worry is my opening. They're the way in." -Same honesty. Different use. The player's knowledge that Naia is a MIRROR (from first playthrough) makes the second playthrough's interaction with her more complex: "I know she's honest. How do I use that? Should I?" +Same honesty. Different use. The player's knowledge that this NPC is a MIRROR (from first playthrough) makes the second playthrough's interaction more complex: "I know they're honest. How do I use that? Should I?" **Replay payload:** MIRROR transparency survives across playthroughs. FRIEND contradictions change (different seed might assign FRIEND to different NPC). MIRROR remains honest regardless of seed. That constancy is mechanically useful for teaching the player to recognize honesty — and ethically complex when the player knows they'll exploit it. @@ -617,16 +492,11 @@ In a world where everyone is hiding something, the one person who isn't becomes - That trust makes the MIRROR's emotional stakes real - Threats to the MIRROR create urgency and moral weight -**Naia Tamm demonstrates every rule:** She has full Tier 1 depth, genuine emotional complexity, visible stress, transparent relationships, predictable routine, and zero deception. Her honesty makes Kael's secrets painful, Sera's concealment costly, and the investigation's human consequences visible. - -**For content authors:** MIRROR is mechanically simple (no contradiction content) but emotionally complex (full 10-axis depth). The 50-70 line budget focuses on genuine emotional expression, trust progression through vulnerability, and dual-lens player reaction. The MIRROR is the person both characters want to protect — and the person who makes the cost of deception real. +**For content authors:** MIRROR is mechanically simple (no contradiction content) but emotionally complex (full 10-axis depth). Full Tier 1 depth, genuine emotional complexity, visible stress, transparent relationships, predictable routine, zero deception — the MIRROR's honesty makes the entangled NPC's secrets painful, other NPCs' concealment costly, and the investigation's human consequences visible. The 50-70 line budget focuses on genuine emotional expression, trust progression through vulnerability, and dual-lens player reaction. The MIRROR is the person both characters want to protect — and the person who makes the cost of deception real. --- **End Pattern Specification.** -**Files referenced:** -- `/var/mnt/data/projects/settled-reach/copy/wiki/npcs/naia-tamm.md` — Reference implementation -- `/var/mnt/data/projects/settled-reach/copy/decisions/content.md` — D-024 (10-axis model), D-028 (dialogue architecture), D-029 (entanglement ratio), D-032 (separate monologue pools), D-034 (THE FRIEND pattern), D-035 (tag taxonomy) -- `/var/mnt/data/projects/settled-reach/copy/docs/workshops/v01-content-scoping/round2-gestalt.md` — Pattern definitions and NPC mapping -- `/var/mnt/data/projects/settled-reach/copy/docs/workshops/v01-gap-analysis/round2-gestalt.md` — Unified observation system, character identity integration +**Decisions referenced:** +- `decisions/content.md` — D-024 (10-axis model), D-028 (dialogue architecture), D-029 (entanglement ratio), D-032 (separate monologue pools), D-034 (THE FRIEND pattern), D-035 (tag taxonomy) diff --git a/wiki/authoring/tier1-module-authoring.md b/wiki/authoring/tier1-module-authoring.md index 1dbe06559..e20523712 100644 --- a/wiki/authoring/tier1-module-authoring.md +++ b/wiki/authoring/tier1-module-authoring.md @@ -3,13 +3,13 @@ **Schema:** `content/schemas/drama_module.schema.yaml` **Module pool:** `content/modules/tier1/*.yaml` **Decisions:** D-023 (three-tier model), D-027 (vertical slice), D-029 (30/50/20 population), D-034 (FRIEND pattern) -**Vertical slice reference:** `content/modules/tier1/smuggling_ring_v0_1.yaml` +**Vertical slice reference:** `content/modules/tier1/` --- ## What Is a Tier 1 Drama Module? -Tier 1 is the authored conspiracy layer of D-023. Drama modules are the things that can go wrong — or go very right, or simply happen — beneath the surface of daily life in Sova Transit. They are: +Tier 1 is the authored conspiracy layer of D-023. Drama modules are the things that can go wrong — or go very right, or simply happen — beneath the surface of daily life in the district. They are: - **Hand-authored.** Every event sequence, every NPC role, every outcome was written by a person. - **Pool-based.** Multiple modules exist. The storyteller draws from the pool at game start and activates a subset based on the district and the storyteller's pacing decisions. @@ -33,8 +33,8 @@ content/ drama_module.schema.yaml ← Schema reference (this file validates against it) modules/ tier1/ - smuggling_ring_v0_1.yaml ← The v0.1 vertical slice module - future_module_v0_1.yaml ← Future modules go here + smuggling_ring.yaml ← Canonical smuggling ring drama module + future_module.yaml ← Future modules go here ``` One `.yaml` file per drama module. The storyteller's content loader scans `content/modules/tier1/` at startup and adds all valid modules to the pool. @@ -68,7 +68,7 @@ Controls how the storyteller samples this module. | `pool.incompatible_with` | No | Module IDs that can't run concurrently. | | `pool.max_concurrent` | No | Almost always 1. | -**Design note on weight:** Use weight to tune narrative variety, not difficulty. A weight-1 module is a rare playthrough surprise. A weight-8 module like the smuggling ring is "this is usually what's happening in Sova Transit." +**Design note on weight:** Use weight to tune narrative variety, not difficulty. A weight-1 module is a rare playthrough surprise. A weight-8 module is "this is usually what's happening in this district." --- @@ -119,7 +119,7 @@ Each module specifies its NPC slots. Roles are internal slugs used throughout th #### Named vs. Generated Bindings -**Named bindings** reference specific hand-authored NPCs from the district. All v0.1 roles are named. This is the right choice for: +**Named bindings** reference specific hand-authored NPCs from the district. This is the right choice for: - THE FRIEND NPCs (D-034) — they have authored arcs, not generic behavior - NPCs with unique relationships in the 5-triangle web - Roles where voice, history, and moral weight matter @@ -185,10 +185,10 @@ Events are world-state changes the storyteller fires. They are not scripted play | **Sequence** | Ordered narrative beats. Step N+1 becomes eligible only after step N fires. Use for character arcs. | | **Pool** | Unordered ambient activity. The storyteller fires any eligible event at any time. Use for texture and background. | -The vertical slice uses: -- `kael_exit_arc` (sequence) — Kael's ordered character arc +A typical module uses: +- `{friend}_exit_arc` (sequence) — THE FRIEND's ordered character arc - `investigation_pressure` (sequence) — Parallel pressure escalation -- `ambient_ring_activity` (pool) — Background ring business that runs throughout +- `ambient_activity` (pool) — Background conspiracy business that runs throughout Most modules should have 1-2 sequences plus 1 pool. @@ -306,7 +306,7 @@ Every event and outcome must mean something different to the smuggler and the de ### 3. No Clean Resolutions -D-034 and D-027 both require moral ambiguity. The smuggling ring doesn't have a "good" ending. The detective arresting Kael is not obviously better than letting him go. Every outcome must have a cost. If one outcome is obviously correct, you've failed the design. +D-034 and D-027 both require moral ambiguity. No Tier 1 module has a "good" ending. Confronting THE FRIEND is not obviously better than protecting them. Every outcome must have a cost. If one outcome is obviously correct, you've failed the design. ### 4. THE FRIEND Contradiction Is the Pivot @@ -315,7 +315,7 @@ If your module involves a FRIEND-pattern NPC, the observable contradiction (D-03 - **Ambiguous before context** — the player sees the behavior before they understand what it means - **Irreversible once witnessed** — seeing changes the relationship, even if the player does nothing -The secret meeting in corridor B-7 is the canonical example. After witnessing it, neither character can pretend they don't know what they saw. +The canonical example: witnessing THE FRIEND in an unauthorized location, with an unknown contact, outside their stated routine. After witnessing it, neither character can pretend they don't know what they saw. ### 5. Expiry Is Not Failure @@ -343,7 +343,7 @@ These rules cover the schema's format constraints and the validation gaps that J | `outcome_id` | `^[a-z][a-z0-9_-]*$` | `ring_exposed` | | `sets_flag` / flag references | `^[a-z][a-z0-9_-]*$` | `kael_behavior_changed` | | `role` (npc slot) | `^[a-z][a-z0-9-]*$` | `ring-member-exiting` | -| `named_npc` | `^npc:[a-z][a-z0-9-]*$` | `npc:kael-davan` | +| `named_npc` | `^npc:[a-z][a-z0-9-]*$` | `npc:{slug}` | | `version` | `^[0-9]+\\.[0-9]+$` | `0.1` | Note the difference: `event_id`, `outcome_id`, `sequence_id`, and flags use underscores and hyphens (`[a-z0-9_-]*`). NPC `role` slugs use hyphens only (`[a-z0-9-]*`). Mixing them in wrong fields will fail schema validation. @@ -388,13 +388,13 @@ Events with `ticks_since_activation` triggers fire automatically without player **Wrong:** ```yaml -# kael_goes_cold fires automatically at tick 300, sets kael_behavior_changed +# friend_goes_cold fires automatically at tick 300, sets friend_behavior_changed # This expiry can never fire after tick 300 - outcome_id: module_abandoned is_expiry: true conditions: flags_not_set: - - kael_behavior_changed # This flag is always set by tick 300 + - friend_behavior_changed # This flag is always set by tick 300 ticks_since_activation: 5400 ``` @@ -405,8 +405,8 @@ Events with `ticks_since_activation` triggers fire automatically without player is_expiry: true conditions: facts_not_known: - - "ring.cargo_discrepancy_pattern" # Only known if player examined terminal - - "ring.kael_unauthorized_corridor_access" # Only known if player observed Kael + - "{module}.cargo_discrepancy_pattern" # Only known if player examined terminal + - "{module}.friend_unauthorized_location" # Only known if player observed THE FRIEND ticks_since_activation: 5400 ``` @@ -419,7 +419,7 @@ Events with `ticks_since_activation` triggers fire automatically without player - [ ] `min_play_ticks` ≥ 1800 (30 minutes at 1 tick/second) - [ ] Every event sequence step has at least one tick-based trigger - [ ] Every `fact_becomes_discoverable` effect has a `discovery_method` note -- [ ] The module includes at least one named FRIEND-pattern NPC (for v0.1 modules) +- [ ] The module includes at least one named FRIEND-pattern NPC - [ ] Expiry outcome is present (`is_expiry: true`) with conditions gated on `facts_not_known`, NOT `flags_not_set` - [ ] All outcomes have been reviewed for moral ambiguity — no "obviously correct" resolution - [ ] `npc_requirements` covers every role referenced in events and outcomes @@ -439,10 +439,10 @@ Events with `ticks_since_activation` triggers fire automatically without player | Vertical slice scope | `decisions/scope.md` D-027 | | Population ratios | `decisions/content.md` D-029 | | THE FRIEND pattern | `decisions/content.md` D-034 | -| Smuggling ring module | `content/modules/tier1/smuggling_ring_v0_1.yaml` | +| Module pool | `content/modules/tier1/` | | Drama module schema | `content/schemas/drama_module.schema.yaml` | | Fact catalog | `content/global/knowledge/` | -| NPC profiles (v0.1) | `content/campaigns/main/systems/van-maanens-star/` | +| NPC profiles | `content/campaigns/main/systems/{system-slug}/` | | Storyteller stub | `server/src/storyteller/mod.rs` | --- diff --git a/wiki/concepts/entity-attributes.md b/wiki/concepts/entity-attributes.md index ef3207a50..118f4706f 100644 --- a/wiki/concepts/entity-attributes.md +++ b/wiki/concepts/entity-attributes.md @@ -38,11 +38,11 @@ The knowledge graph uses these attributes to determine: **Value format**: Full name as known to the observer. **Examples**: -- `"Kael Davan"` — observer knows full name -- `"Kael"` — observer knows first name only +- `"{NPC Full Name}"` — observer knows full name +- `"{First Name}"` — observer knows first name only - `"the dock worker"` — observer doesn't know name, only role -**Usage**: Monologue and dialogue rendering. If `name` is absent or generic, monologue says "the dock worker" instead of "Kael." +**Usage**: Monologue and dialogue rendering. If `name` is absent or generic, monologue uses role description. --- @@ -66,7 +66,7 @@ The knowledge graph uses these attributes to determine: **Value format**: Institutional or organizational allegiance. **Examples**: -- `"Commission"` — Sera, Torek, Detective +- `"Commission"` — institutional contacts, inspectors, detective - `"civilian"` — most NPCs - `"ring member"` — if discovered - `"unknown"` — not yet determined @@ -77,13 +77,13 @@ The knowledge graph uses these attributes to determine: ### `species` -**Value format**: Species identifier (future-proofing — v0.1 is all human). +**Value format**: Species identifier. **Examples**: - `"human"` (default) - (Future: other species as defined) -**Usage**: Not load-bearing in v0.1. Placeholder for future non-human NPCs. +**Usage**: Future-proofing for non-human NPCs. --- @@ -94,11 +94,11 @@ The knowledge graph uses these attributes to determine: **Value format**: Relationship category from observer's perspective. **Examples**: -- `"colleague"` — Kael to smuggler -- `"friend"` — Sera to detective -- `"authority figure"` — Voss to subordinates -- `"suspect"` — Kael to detective (post-discovery) -- `"partner"` — Naia to Kael +- `"colleague"` — ring member to fellow ring member +- `"friend"` — institutional contact to detective +- `"authority figure"` — shift supervisor to subordinates +- `"suspect"` — ring member to detective (post-discovery) +- `"partner"` — non-ring partner to ring member - `"stranger"` — new NPCs **Usage**: Drives `RelationshipState` calculation (Unknown/Known/Friendly/PersonOfInterest/Hostile). Determines emotional tone of monologue. @@ -142,9 +142,9 @@ The knowledge graph uses these attributes to determine: **Value format**: Comma-separated behavioral observations. **Examples**: -- `"nervous,lattice_checking"` — Kael during contradiction arc -- `"avoidance_pattern,evasive"` — Sera avoiding Torek -- `"spending_beyond_means"` — Torek buying rounds +- `"nervous,lattice_checking"` — ring member showing stress during contradiction arc +- `"avoidance_pattern,evasive"` — contact avoiding a suspect +- `"spending_beyond_means"` — inspector buying rounds on a dock worker's income - `"reliable,punctual"` — baseline normal behavior **Usage**: Tell system. Multiple flags accumulate as evidence. Detective's analytical lattice auto-flags some behaviors. @@ -158,11 +158,11 @@ The knowledge graph uses these attributes to determine: **Value format**: What the observer believes gives them (or could give them) power over this entity. This covers secrets, debts, promises, obligations, and compromising positions — not just secrets. Any information or relationship that creates asymmetric power over the target qualifies as leverage. **Examples**: -- `"ring membership"` — detective's suspicion about Kael (secret) -- `"unreported evidence"` — smuggler's read on Sera (concealed information) -- `"gambling debt"` — if Drin's vulnerability is discovered (financial obligation) -- `"exit attempt"` — if Kael's unauthorized contact is discovered (betrayal) -- `"owes favor to Voss"` — social obligation +- `"ring membership"` — detective's suspicion about a cargo handler (secret) +- `"unreported evidence"` — smuggler's read on an institutional contact (concealed information) +- `"gambling debt"` — if a peripheral member's vulnerability is discovered (financial obligation) +- `"exit attempt"` — if a ring member's unauthorized contact is discovered (betrayal) +- `"owes favor to supervisor"` — social obligation - `"witnessed the handoff"` — compromising position **Usage**: Drives PersonOfInterest state. Gates confrontation dialogue. Smuggler and detective track different leverage about the same NPCs. The broader scope (beyond secrets) allows content authors to capture debts, promises, and obligations that create power dynamics without requiring additional keys. @@ -189,8 +189,8 @@ The knowledge graph uses these attributes to determine: **Value format**: Specific tell noted by the observer. **Examples**: -- `"looks left when lying"` — Kael's tell -- `"leaves when Torek arrives"` — Sera's avoidance +- `"looks left when lying"` — ring member's tell +- `"leaves when inspector arrives"` — contact's avoidance - `"checks lattice before answering"` — nervous behavior - `"forced casualness after shift supervisor passes"` — hypervigilance @@ -205,9 +205,9 @@ The knowledge graph uses these attributes to determine: **Value format**: Boolean-ish flag (presence of key = true). **Examples**: -- `"meeting_unknown_contact"` — Kael contradiction -- `"avoidance_inconsistency"` — Sera contradiction -- `"manifest_access_mismatch"` — Maret handling cargo she shouldn't process +- `"meeting_unknown_contact"` — {THE FRIEND} smuggler path contradiction +- `"avoidance_inconsistency"` — {THE FRIEND} detective path contradiction +- `"manifest_access_mismatch"` — manifest clerk handling cargo they shouldn't process **Usage**: THE FRIEND arc trigger. When this attribute is set, monologue tone shifts. Dialogue options change. RelationshipState moves toward PersonOfInterest. @@ -226,9 +226,9 @@ These four keys capture the observer's subjective assessment of the target throu **Values**: `none`, `low`, `moderate`, `high`, `critical`. **Examples**: -- Smuggler's assessment of Pell (wavering member) = `"high"` (unpredictable, could expose the ring) -- Detective's assessment of Voss = `"moderate"` (obstructive but not directly dangerous) -- Smuggler's assessment of Naia = `"low"` (uninvolved, unlikely to cause exposure) +- Smuggler's assessment of a wavering ring member = `"high"` (unpredictable, could expose the ring) +- Detective's assessment of the shift supervisor = `"moderate"` (obstructive but not directly dangerous) +- Smuggler's assessment of an uninvolved partner = `"low"` (unlikely to cause exposure) **Usage**: Gates operational monologue. High-risk targets trigger cautionary internal dialogue. Critical-risk targets may trigger evasion or preemptive action. The nature of "risk" depends on the archetype (see interpretation note). @@ -241,9 +241,9 @@ These four keys capture the observer's subjective assessment of the target throu **Values**: `solid`, `dependable`, `uncertain`, `wavering`, `hostile`. **Examples**: -- Smuggler's assessment of Renn (courier) = `"dependable"` (reliable, follows instructions) -- Smuggler's assessment of Kael (mid-game) = `"wavering"` (showing signs of doubt) -- Detective's assessment of Sera = `"solid"` (committed to the investigation) +- Smuggler's assessment of the courier = `"dependable"` (reliable, follows instructions) +- Smuggler's assessment of {THE FRIEND} mid-game = `"wavering"` (showing signs of doubt) +- Detective's assessment of their institutional contact = `"solid"` (committed to the investigation) **Usage**: Determines how much the observer relies on or confides in the target. Wavering loyalty triggers monitoring behavior. Hostile loyalty triggers defensive or adversarial posture. @@ -256,7 +256,7 @@ These four keys capture the observer's subjective assessment of the target throu **Values**: `solid`, `thin`, `cracking`, `blown`, `N/A`. **Examples**: -- Ring member's assessment of Kael = `"thin"` (behavior changes are visible to anyone watching) +- Ring member's assessment of a compromised colleague = `"thin"` (behavior changes are visible to anyone watching) - Smuggler's self-assessment near the detective = `"cracking"` (too many close calls) - Detective's assessment of a civilian witness = `"N/A"` (no cover to assess) @@ -271,13 +271,13 @@ These four keys capture the observer's subjective assessment of the target throu **Values**: `innocent`, `peripheral`, `complicit`, `compromised`, `willing`. **Examples**: -- Detective's assessment of Naia = `"innocent"` (uninvolved partner caught in the fallout) -- Smuggler's assessment of Drin = `"compromised"` (dragged in by debt, not by choice) -- Smuggler's assessment of Torek = `"willing"` (fully aware, actively participating) +- Detective's assessment of an uninvolved partner = `"innocent"` (caught in the fallout) +- Smuggler's assessment of a debt-dragged peripheral = `"compromised"` (dragged in by debt, not by choice) +- Smuggler's assessment of the compromised inspector = `"willing"` (fully aware, actively participating) **Usage**: Shapes the observer's moral arc and internal conflict. Monologue tone shifts when the observer assigns moral weight — guilt, justification, and rationalization are driven by this key. The Comfort-Doubt-Reckoning-Compromise arc references `moral_weight` to determine which phase the observer occupies relative to specific NPCs. -**Archetype note**: Both smuggler and detective use `moral_weight` with the same enum values but different criteria. The smuggler assesses complicity in the ring's operations ("how dirty are their hands?") — see [Smuggler Moral Arc](../../design/smuggler-moral-arc.md). The detective assesses culpability in the crime ("how responsible are they for the harm?"). Same scale, different lens. A smuggler might mark Drin as `"compromised"` (dragged in, not choosing) while the detective marks Drin as `"complicit"` (he knew and did nothing). The detective's moral arc spec is unwritten in v0.1 but follows the same key. +**Archetype note**: Both smuggler and detective use `moral_weight` with the same enum values but different criteria. The smuggler assesses complicity in the ring's operations ("how dirty are their hands?") — see [Smuggler Moral Arc](../../design/smuggler-moral-arc.md). The detective assesses culpability in the crime ("how responsible are they for the harm?"). Same scale, different lens. A smuggler might mark a debt-driven peripheral as `"compromised"` (dragged in, not choosing) while the detective marks the same NPC as `"complicit"` (they knew and did nothing). --- @@ -298,7 +298,7 @@ This pattern scales to all 8 planned archetypes without schema modification. An ## Examples: Full EntityKnowledge Entries -### Smuggler's knowledge of Kael (early game, pre-contradiction) +### Smuggler's knowledge of {THE FRIEND} (early game, pre-contradiction) ```rust EntityKnowledge { @@ -310,7 +310,7 @@ EntityKnowledge { state: KnowledgeState::Active, relationship: RelationshipState::Friendly, known_attributes: BTreeMap::from([ - ("name".to_string(), "Kael Davan".to_string()), + ("name".to_string(), "{NPC Full Name}".to_string()), ("role".to_string(), "dock worker".to_string()), ("faction".to_string(), "ring member".to_string()), // smuggler knows ("species".to_string(), "human".to_string()), @@ -318,7 +318,7 @@ EntityKnowledge { ("trust_level".to_string(), "trusted".to_string()), ("routine_pattern".to_string(), "morning shift 06:00-14:00, bar after shift".to_string()), ("behavior_flags".to_string(), "reliable,punctual".to_string()), - ("risk_assessment".to_string(), "low".to_string()), // Kael is reliable, no exposure concern + ("risk_assessment".to_string(), "low".to_string()), // reliable, no exposure concern ("loyalty_assessment".to_string(), "solid".to_string()), // loyal to the ring ("position_integrity".to_string(), "solid".to_string()), // cover is intact ("moral_weight".to_string(), "willing".to_string()), // fully aware, active participant @@ -326,7 +326,7 @@ EntityKnowledge { } ``` -### Detective's knowledge of Kael (mid-game, post-contradiction discovery) +### Detective's knowledge of a suspect (mid-game, post-contradiction discovery) ```rust EntityKnowledge { @@ -343,7 +343,7 @@ EntityKnowledge { state: KnowledgeState::Active, relationship: RelationshipState::PersonOfInterest, // flagged known_attributes: BTreeMap::from([ - ("name".to_string(), "Kael Davan".to_string()), + ("name".to_string(), "{NPC Full Name}".to_string()), ("role".to_string(), "dock worker".to_string()), ("faction".to_string(), "civilian".to_string()), // detective doesn't know ring membership yet ("species".to_string(), "human".to_string()), @@ -357,13 +357,13 @@ EntityKnowledge { ("contradiction_flagged".to_string(), "meeting_unknown_contact".to_string()), ("risk_assessment".to_string(), "high".to_string()), // obstructing investigation, potential flight risk ("loyalty_assessment".to_string(), "hostile".to_string()), // uncooperative, evasive - ("position_integrity".to_string(), "cracking".to_string()), // his story is falling apart + ("position_integrity".to_string(), "cracking".to_string()), // their story is falling apart ("moral_weight".to_string(), "complicit".to_string()), // involved, degree of responsibility unclear ]), } ``` -### Smuggler's knowledge of Sera (if observant, mid-game) +### Smuggler's knowledge of the institutional contact (if observant, mid-game) ```rust EntityKnowledge { @@ -373,9 +373,9 @@ EntityKnowledge { confidence: KnowledgeConfidence::KnowsOf, source: KnowledgeSource::DirectObservation { tick: 1800 }, state: KnowledgeState::Active, - relationship: RelationshipState::Known, // not Friendly -- smuggler doesn't know Sera well + relationship: RelationshipState::Known, // not Friendly -- smuggler doesn't know them well known_attributes: BTreeMap::from([ - ("name".to_string(), "Sera Venn".to_string()), + ("name".to_string(), "{Institutional Contact Name}".to_string()), ("role".to_string(), "Commission field tech".to_string()), ("faction".to_string(), "Commission".to_string()), ("species".to_string(), "human".to_string()), @@ -383,11 +383,11 @@ EntityKnowledge { ("trust_level".to_string(), "uncertain".to_string()), ("routine_pattern".to_string(), "bar regular, off-duty evenings".to_string()), ("behavior_flags".to_string(), "observant,avoidance_pattern".to_string()), - ("leverage_held".to_string(), "knows something about Torek or Naia".to_string()), + ("leverage_held".to_string(), "knows something about the inspector or someone close to the ring".to_string()), ("leverage_confidence".to_string(), "suspected".to_string()), ("risk_assessment".to_string(), "moderate".to_string()), // Commission presence is inherently risky ("loyalty_assessment".to_string(), "uncertain".to_string()), // unknown allegiance - ("position_integrity".to_string(), "N/A".to_string()), // Sera isn't maintaining a cover + ("position_integrity".to_string(), "N/A".to_string()), // not maintaining a cover ("moral_weight".to_string(), "peripheral".to_string()), // not involved in ring, but near it ]), } diff --git a/wiki/concepts/fact-catalog.md b/wiki/concepts/fact-catalog.md index 9cff377c6..864e1dbed 100644 --- a/wiki/concepts/fact-catalog.md +++ b/wiki/concepts/fact-catalog.md @@ -1,6 +1,6 @@ --- title: "Knowledge Fact Catalog" -description: "All 27 canonical FactIds for v0.1 with confidence progressions, smuggler/detective starting levels, and mechanical purposes" +description: "Canonical FactIds for smuggling scenario content — confidence progressions, character starting levels, and mechanical purposes" slug: fact-catalog category: concept status: canonical @@ -14,7 +14,7 @@ cross_refs: [] # Knowledge Fact Catalog -Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.topic` format defined in `server/src/knowledge/types.rs`. +Canonical FactIds for smuggling scenario content. All facts follow the `category.topic` format defined in `server/src/knowledge/types.rs`. ## Format @@ -31,14 +31,14 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "Something's going on with the cargo schedules. Too many off-manifest deliveries." **KnowsOf**: "There's a smuggling operation running through the logistics hub." -**KnowsDetails**: "The ring moves unlicensed lattice components during shift transitions. Voss manages the timing." +**KnowsDetails**: "The ring moves unlicensed lattice components during shift transitions. The shift supervisor manages the timing." **Direct**: N/A (abstract knowledge -- never directly observed) **Mechanical Purpose**: Gates investigation dialogue trees. Required for ring-specific monologue. The detective starts at Suspects and escalates. The smuggler (if playing the ring member path) starts at KnowsDetails. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Our operation. Nils runs coordination, Voss covers the schedule, Kael and I handle cargo. Two years now. Runs like clockwork when everyone hits their marks." +**KnowsDetails**: "Our operation. The coordinator runs things off-site, the shift supervisor covers the schedule, and I handle cargo. Two years now. Runs like clockwork when everyone hits their marks." --- @@ -76,52 +76,52 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to ### `contraband.severance_tech` -**Suspects**: "Sealed containers Nils won't discuss. Heavier than lattice components." +**Suspects**: "Sealed containers the coordinator won't discuss. Heavier than lattice components." **KnowsOf**: "Severance equipment. Counter-surveillance tech. Illegal across most of the Reach." -**KnowsDetails**: "Guardians of Severance supply chain. This isn't local -- it's connected to something bigger." -**Direct**: N/A (not directly visible in v0.1) +**KnowsDetails**: "Guardians of Autonomy supply chain. This isn't local -- it's connected to something bigger." +**Direct**: N/A (not directly visible in the early arc) **Mechanical Purpose**: Contamination seed for storyteller expansion. The thing that makes the smuggler question how deep the ring goes. **Smuggler Starting Level**: Suspects **Smuggler Perspective**: -**Suspects**: "Sealed containers Nils won't talk about. Different markings, heavier than lattice mods. He said don't ask. So I don't ask." -**KnowsOf**: "Severance gear. Counter-surveillance equipment. Whoever Nils is supplying, it's not just local lattice demand." -**KnowsDetails**: "Guardians of Severance supply chain. Nils has been using us as a distribution point for something I didn't sign up for. This is bigger than Sova." +**Suspects**: "Sealed containers the coordinator won't talk about. Different markings, heavier than lattice mods. Told me don't ask. So I don't ask." +**KnowsOf**: "Severance gear. Counter-surveillance equipment. Whoever the coordinator is supplying, it's not just local lattice demand." +**KnowsDetails**: "Guardians of Autonomy supply chain. We've been used as a distribution point for something I didn't sign up for. This is bigger than this district." --- ### `contraband.supply_chain` **Suspects**: "The cargo doesn't originate on this station." -**KnowsOf**: "Off-station coordinator manages incoming shipments. Someone named Sabel." -**KnowsDetails**: "Supply chain: aftermarket manufacturers (Syndic-adjacent) -> freight networks -> Sabel (off-station) -> ring coordinator (Devra or Nils) -> local distribution." +**KnowsOf**: "Off-station coordinator manages incoming shipments." +**KnowsDetails**: "Supply chain: aftermarket manufacturers (Syndic-adjacent) -> freight networks -> off-station coordinator -> local coordinator -> distribution." **Direct**: N/A (network knowledge) **Mechanical Purpose**: Investigation depth. Detective at KnowsDetails can map the full chain. Smuggler at KnowsDetails understands their position in the network. **Smuggler Starting Level**: KnowsOf **Smuggler Perspective**: -**KnowsOf**: "Cargo comes through Sabel, off-station. Sabel handles the incoming shipments, we handle local. What happens upstream, I don't ask." -**KnowsDetails**: "Syndic-adjacent manufacturers, freight networks, Sabel, then Nils or Devra, then us. I'm a link in a chain I can't see the end of." +**KnowsOf**: "Cargo comes through the off-station coordinator. They handle the incoming shipments, we handle local. What happens upstream, I don't ask." +**KnowsDetails**: "Syndic-adjacent manufacturers, freight networks, the off-station coordinator, then local distribution, then us. I'm a link in a chain I can't see the end of." --- ## Location Facts -### `location.corridor_b7_restricted` +### `location.restricted_corridor` -**Suspects**: "Corridor B-7 should see foot traffic during shift change. It's empty." +**Suspects**: "The maintenance corridor should see foot traffic during shift change. It's empty." **KnowsOf**: "Maintenance corridor used for smuggling operations. Access requires hub clearance." -**KnowsDetails**: "Corridor B-7 is between old and new prefab sections. Service hatch from break room. The ring routes shipments through here during shift transitions." -**Direct**: "I'm in Corridor B-7 right now. Old construction smell, minimal Meridian coverage, no surveillance." +**KnowsDetails**: "The corridor runs between old and new prefab sections. Service hatch from break room. The ring routes shipments through here during shift transitions." +**Direct**: "I'm in the restricted corridor right now. Old construction smell, minimal Meridian coverage, no surveillance." **Mechanical Purpose**: Spatial knowledge. Required for investigation progression (detective) and operational planning (smuggler). Direct confidence gates monologue about current surroundings. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "B-7. Between the old and new panels. Service hatch from the break room gets you in. No Meridian, no cameras. Our corridor." -**Direct**: "In B-7 right now. Stale air, maintenance lighting. The usual." +**KnowsDetails**: "Between the old and new panels. Service hatch from the break room gets you in. No Meridian, no cameras. Our corridor." +**Direct**: "In the corridor right now. Stale air, maintenance lighting. The usual." --- @@ -129,15 +129,15 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "Cargo movements don't match the official routing." **KnowsOf**: "The ring uses a specific path: freight bay -> service corridor -> temporary storage -> bar district back room." -**KnowsDetails**: "Timing is critical. The route only works during shift transition when patrol coverage thins. Lera provides the final handoff point." -**Direct**: "Watching the route right now. Kosse moving a container through the service hatch." +**KnowsDetails**: "Timing is critical. The route only works during shift transition when patrol coverage thins. The bar provides the final handoff point." +**Direct**: "Watching the route right now. The courier moving a container through the service hatch." **Mechanical Purpose**: Investigation mechanics. Detective needs KnowsOf to predict NPC movements. Smuggler needs KnowsDetails for operational participation. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Freight bay to service corridor to temp storage to Lera's back room. Twenty-minute window during shift change. The route runs itself when everyone hits their marks." -**Direct**: "Watching the handoff. Renn's moving through the service hatch now. Clean." +**KnowsDetails**: "Freight bay to service corridor to temp storage to the bar back room. Twenty-minute window during shift change. The route runs itself when everyone hits their marks." +**Direct**: "Watching the handoff. The courier moving through the service hatch now. Clean." --- @@ -145,31 +145,31 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "Some areas feel less monitored than others." **KnowsOf**: "Meridian coverage degrades in older sections. Maintenance corridors have minimal surveillance." -**KnowsDetails**: "Corridor B-7, break room service hatch, bar back room -- all Meridian dead spots. The ring exploits these systematically." +**KnowsDetails**: "The restricted corridor, break room service hatch, bar back room -- all Meridian dead spots. The ring exploits these systematically." **Direct**: "Checking my lattice overlay now. Zero Meridian signal in this section." **Mechanical Purpose**: Stealth and observation mechanics. Detective's augmented lattice can detect coverage gaps (requires KnowsOf). Smuggler uses gaps operationally (requires KnowsDetails). **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "B-7, the break room hatch, Lera's back room -- all dead spots. Old construction left the gaps. We just learned the map." +**KnowsDetails**: "The restricted corridor, the break room hatch, the bar back room -- all dead spots. Old construction left the gaps. We just learned the map." **Direct**: "No signal here. Same as always." --- ### `location.dead_drop_location` -**Suspects**: "Kael leaves things in the break room locker area. Not his own locker." -**KnowsOf**: "Locker 47 in the hub break room. Unofficial dead drop for small items." -**KnowsDetails**: "Locker 47 is registered to a worker who transferred off-station 18 months ago. Never reassigned. The ring has used it ever since." -**Direct**: "Locker 47 is open. There's a sealed packet inside." +**Suspects**: "A ring member leaves things in the break room locker area. Not their own locker." +**KnowsOf**: "An inactive locker in the hub break room. Unofficial dead drop for small items." +**KnowsDetails**: "The locker is registered to a worker who transferred off-station over a year ago. Never reassigned. The ring has used it ever since." +**Direct**: "The locker is open. There's a sealed packet inside." **Mechanical Purpose**: Discovery mechanic. Detective can discover through observation (Suspects -> KnowsOf). Smuggler knows from background (starts at KnowsDetails). **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Locker 47. Break room. Registered to someone who left a year and a half ago. Small items, messages, keys. Don't use it for actual cargo." -**Direct**: "47's open. Sealed packet. Not mine -- someone else has been using it." +**KnowsDetails**: "Break room. Dead locker, registered to someone who left over a year ago. Small items, messages, keys. Don't use it for actual cargo." +**Direct**: "Locker's open. Sealed packet. Not mine -- someone else has been using it." --- @@ -179,29 +179,29 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "Cargo manifests have inconsistencies. Weight doesn't match volume." **KnowsOf**: "Systematic manifest doctoring. Someone with freight scheduler access is altering records." -**KnowsDetails**: "Maret Korr processes manifests. She's noticed the discrepancies but hasn't reported them. She's either complicit or terrified." +**KnowsDetails**: "The manifest clerk processes the documents. They've noticed the discrepancies but haven't reported them. Either complicit or terrified." **Direct**: "Comparing the manifest right now. Container 4471 -- logged weight 240kg, actual weight closer to 310kg." -**Mechanical Purpose**: Core investigation mechanic. Detective's analytical lattice flags discrepancies at Suspects. Full understanding requires KnowsDetails. Smuggler knows Maret's position from background. +**Mechanical Purpose**: Core investigation mechanic. Detective's analytical lattice flags discrepancies at Suspects. Full understanding requires KnowsDetails. Smuggler knows the clerk's position from background. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Maret handles the manifests. She adjusts the numbers for us -- or at least doesn't flag them. Whether she's on board or just scared, the result's the same." +**KnowsDetails**: "The clerk handles the manifests. Adjusts the numbers for us -- or at least doesn't flag them. Whether they're on board or just scared, the result's the same." --- ### `investigation.shift_mismatch` **Suspects**: "Night shift schedules don't align with freight volume." -**KnowsOf**: "Voss adjusts shift schedules to create coverage gaps. Deliberate understaffing during high-risk windows." -**KnowsDetails**: "Shift mismatches occur every third rotation. Coincides exactly with off-station shipment arrivals. Voss takes a cut." +**KnowsOf**: "The shift supervisor adjusts schedules to create coverage gaps. Deliberate understaffing during high-risk windows." +**KnowsDetails**: "Shift mismatches occur every third rotation. Coincides exactly with off-station shipment arrivals. The supervisor takes a cut." **Direct**: "Checking the current schedule. Night shift is short two workers -- again." **Mechanical Purpose**: Pattern recognition. Detective needs KnowsOf to connect schedule to smuggling. Smuggler knows the pattern operationally. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Voss thins the rotation every third cycle. Two short on nights, right when Sabel's shipment comes in. Not a coincidence -- it's the plan. Voss takes his cut." +**KnowsDetails**: "The supervisor thins the rotation every third cycle. Two short on nights, right when the shipment comes in. Not a coincidence -- it's the plan. The supervisor takes their cut." --- @@ -209,22 +209,22 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "That container sat in temporary storage for 18 hours. Standard procedure is 4-6 hours max." **KnowsOf**: "Delayed processing indicates off-manifest handling. Someone's buying time to repackage cargo." -**KnowsDetails**: "Nils coordinates timing. Container arrives, sits in temp storage during shift A, gets repackaged during shift B transition, moves out during shift C startup." +**KnowsDetails**: "The coordinator handles timing. Container arrives, sits in temp storage during shift A, gets repackaged during shift B transition, moves out during shift C startup." **Direct**: "Container 4471 has been sitting here for 14 hours. No movement orders logged." **Mechanical Purpose**: Observation-based discovery. Detective builds case from Suspects upward. Smuggler knows the workflow (starts KnowsDetails). **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Container arrives, sits in temp during A shift, gets repackaged during B transition, moves out during C startup. Nils handles the timing. I handle the routing. Clockwork." +**KnowsDetails**: "Container arrives, sits in temp during A shift, gets repackaged during B transition, moves out during C startup. The coordinator handles the timing. I handle the routing. Clockwork." --- ### `investigation.evidence_collected` **Suspects**: N/A (binary fact -- you either have evidence or you don't) -**KnowsOf**: "I have documented manifest discrepancies, shift schedule anomalies, and witness testimony from Drin." -**KnowsDetails**: "Full case file: manifest logs, Drin's testimony under pressure, Maret's reluctant cooperation, surveillance footage from observation gallery showing Corridor B-7 access." +**KnowsOf**: "I have documented manifest discrepancies, shift schedule anomalies, and witness testimony." +**KnowsDetails**: "Full case file: manifest logs, witness testimony under pressure, the manifest clerk's reluctant cooperation, surveillance footage showing restricted corridor access." **Direct**: N/A (abstract accumulation) **Mechanical Purpose**: Investigation state tracker. Gates confrontation dialogue. Detective-specific -- smuggler doesn't collect evidence against themselves. (Smuggler equivalent: `progress.operation_compromised`.) @@ -261,24 +261,24 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Smuggler Starting Level**: Suspects **Smuggler Perspective**: **Suspects**: "Cargo's not local. Different seals, different packaging. Someone manufacturing off-station." -**KnowsOf**: "Syndic supply chain. Medical-grade lattice parts diverted from legitimate production. Sabel's our connection point." +**KnowsOf**: "Syndic supply chain. Medical-grade lattice parts diverted from legitimate production. The off-station coordinator is our connection point." **KnowsDetails**: "Two sources, based on the serial patterns. The Syndics aren't partners -- they're wholesalers. We're downstream, and we're replaceable." --- -### `world.sova_district_layout` +### `world.district_layout` **Suspects**: "The district is a mix of old and new construction." **KnowsOf**: "40-year-old prefab base with retrofitted partitions. Logistics hub, bar district, residential sections. Meridian coverage is uneven." **KnowsDetails**: "Older sections have hidden spaces between wall layers. Service corridors from original construction still exist but aren't on current maps. The ring exploits architectural legacy." -**Direct**: "I'm looking at the district map overlay right now. Official layout vs. actual structure don't match in Section 3." +**Direct**: "I'm looking at the district map overlay right now. Official layout vs. actual structure don't match in the old section." **Mechanical Purpose**: Navigation and investigation. Detective needs KnowsDetails to find hidden spaces. Smuggler starts with KnowsOf (knows layout from living here). **Smuggler Starting Level**: KnowsOf **Smuggler Perspective**: -**KnowsOf**: "Forty-year-old prefab, retrofitted to hell. The hub, Lera's, residential blocks. I know every corridor by feel. Meridian's patchy in the old sections." -**KnowsDetails**: "Hidden spaces between old walls in Section 3. Service corridors from original construction, not on any current map. The ring uses what the builders left behind." +**KnowsOf**: "Forty-year-old prefab, retrofitted to hell. The hub, the bar, residential blocks. I know every corridor by feel. Meridian's patchy in the old sections." +**KnowsDetails**: "Hidden spaces between old walls in the original construction zones. Service corridors not on any current map. The ring uses what the builders left behind." --- @@ -286,14 +286,14 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: "Logistics hub runs three shifts: morning, day, night." **KnowsOf**: "Shift transitions are 30-minute windows with reduced oversight. Ring operations happen during transitions." -**KnowsDetails**: "Shift A: 06:00-14:00. Shift B: 14:00-22:00. Shift C: 22:00-06:00. Transition windows: 13:30-14:30, 21:30-22:30, 05:30-06:30. Voss manages the schedule." +**KnowsDetails**: "Shift A: 06:00-14:00. Shift B: 14:00-22:00. Shift C: 22:00-06:00. Transition windows: 13:30-14:30, 21:30-22:30, 05:30-06:30. The shift supervisor manages the schedule." **Direct**: "Current time: 21:45. Shift transition active. Observing movement patterns." **Mechanical Purpose**: Temporal mechanics. Required for NPC routine prediction and investigation timing. Smuggler starts KnowsDetails. Detective learns through observation. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "A shift: 06:00 to 14:00. B shift: 14:00 to 22:00. C shift: 22:00 to 06:00. Thirty-minute transitions. That's when the oversight thins and the route opens. Voss keeps it thin." +**KnowsDetails**: "A shift: 06:00 to 14:00. B shift: 14:00 to 22:00. C shift: 22:00 to 06:00. Thirty-minute transitions. That's when the oversight thins and the route opens. The supervisor keeps it thin." **Direct**: "Transition's active. Twenty minutes of open corridor. Time to move." --- @@ -302,65 +302,65 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to ### `relationship.ring_membership` -**Suspects**: "Kael's behavior suggests involvement in something off-book." -**KnowsOf**: "Kael is a ring member. Mid-level, handles physical cargo." -**KnowsDetails**: "Ring structure: Devra or Nils coordinate, Voss provides scheduling cover, Kael and Kosse handle cargo, Lera provides handoff point, Pell is wavering." -**Direct**: "Watching Kael move a container right now. Ring operation in progress." +**Suspects**: "A ring member's behavior suggests involvement in something off-book." +**KnowsOf**: "A mid-level ring member handles physical cargo." +**KnowsDetails**: "Ring structure: coordinators manage the operation, the shift supervisor provides scheduling cover, cargo handlers move product, the bar owner provides a handoff point, and at least one member is wavering." +**Direct**: "Watching a ring member route a container right now. Operation in progress." **Mechanical Purpose**: Social knowledge. Detective builds this through investigation. Smuggler knows from shared membership (if on that path) or observation. **Smuggler Starting Level**: KnowsDetails **Smuggler Perspective**: -**KnowsDetails**: "Nils coordinates from off-site. Devra handles messages. Voss covers the schedule. Kael and I handle cargo. Renn's the courier. Lera runs the handoff point. Pell's been shaky lately -- that worries me." -**Direct**: "Watching Kael work a shipment. We've done this a hundred times. Smooth." +**KnowsDetails**: "The off-station coordinator runs the chain. The local coordinator manages operations. The shift supervisor covers the schedule. Cargo handlers route product. The bar owner runs the handoff point. One member's been shaky lately -- that worries me." +**Direct**: "Watching a ring member work a shipment. We've done this a hundred times. Smooth." --- -### `relationship.kael_naia_connection` +### `relationship.friend_personal_life` -**Suspects**: "Kael mentions a partner. Someone named Naia." -**KnowsOf**: "Kael's partner is Naia, a teacher. They're worried about Kael's late nights." -**KnowsDetails**: "Naia confides in Sera Venn. Sera knows something is wrong but hasn't reported it. The worry is contaminating Kael's operational security." +**Suspects**: "{THE FRIEND} mentions someone outside the ring. A partner." +**KnowsOf**: "{THE FRIEND}'s partner is someone not involved in the operation. They're worried about {THE FRIEND}'s late nights." +**KnowsDetails**: "The partner confides in a mutual contact who has institutional access. That contact knows something is wrong but hasn't reported it. The worry is contaminating {THE FRIEND}'s operational security." **Direct**: N/A (relationship knowledge) -**Mechanical Purpose**: Emotional leverage. Detective can use Naia as pressure point. Smuggler (if Kael's friend) must protect Naia from knowledge. +**Mechanical Purpose**: Emotional leverage. Detective can use the partner as a pressure point. Smuggler (if {THE FRIEND}'s colleague) must protect the partner from knowledge. **Smuggler Starting Level**: KnowsOf **Smuggler Perspective**: -**KnowsOf**: "Naia's Kael's partner. Good person. Worries about him working late. Doesn't know about the ring -- at least that's what Kael says." -**KnowsDetails**: "Naia's been talking to Sera. Sera's Commission. If Naia shares too much and Sera connects the dots, Kael's problem becomes everyone's problem." +**KnowsOf**: "{THE FRIEND}'s partner is good people. Worries about them working late. Doesn't know about the ring -- at least that's what {THE FRIEND} says." +**KnowsDetails**: "The partner's been talking to someone with institutional connections. If that person connects the dots, {THE FRIEND}'s problem becomes everyone's problem." --- ### `relationship.trust_network` **Suspects**: "People here know each other. Tight social bonds." -**KnowsOf**: "The ring depends on trust networks: Kael trusts Nils (sibling), Lera trusts the regulars, Drin is compromised by debt to Harek." -**KnowsDetails**: "Trust map: Kael <-> Nils (blood), Kael <-> Naia (partnership), Naia <-> Sera (friendship), Sera <-> Detective (professional/personal), Drin -> Harek (debt), Voss -> Devra/Nils (financial)." +**KnowsOf**: "The ring depends on trust networks: the cargo handler trusts the off-station coordinator (prior relationship), the bar owner trusts the regulars, at least one peripheral member is compromised by debt." +**KnowsDetails**: "Trust map: coordinator chain (off-station to local, prior loyalty), {THE FRIEND} to their partner (personal), {THE FRIEND}'s partner to a mutual institutional contact (friendship), compromised peripheral to their creditor (debt), shift supervisor to ring leadership (financial)." **Direct**: N/A (social network knowledge) **Mechanical Purpose**: Social manipulation mechanics. Detective at KnowsDetails can exploit trust fractures. Smuggler at KnowsDetails knows whom to protect. **Smuggler Starting Level**: KnowsOf **Smuggler Perspective**: -**KnowsOf**: "Kael trusts Nils -- blood. Lera's reliable, keeps her mouth shut. Drin's compromised somehow. Voss is solid as long as the money flows." -**KnowsDetails**: "Full picture: Kael to Nils is blood. Kael to Naia is heart. Naia to Sera is friendship. Drin owes Harek. Voss follows whoever's paying. Pull one thread, the whole thing comes apart." +**KnowsOf**: "The coordinator chain runs on prior loyalty. The bar owner keeps her mouth shut. At least one person's compromised somehow. The shift supervisor is solid as long as the money flows." +**KnowsDetails**: "Full picture: coordinator chain is loyalty. {THE FRIEND} to their partner is personal. The partner to a mutual contact is friendship. The compromised member owes someone. The supervisor follows whoever's paying. Pull one thread, the whole thing comes apart." --- ### `relationship.faction_allegiance` **Suspects**: "Some people here are Commission-aligned. Others resent the Commission." -**KnowsOf**: "Sera is Commission. Torek Lintar is nominally Commission but lives here. The detective represents institutional authority. Everyone else is civilian." -**KnowsDetails**: "Faction tensions: Commission (Sera, Torek, Detective) vs. ring (Kael, Nils, Kosse, Voss, Lera) vs. civilians (Naia, Maret, Drin, Resha). Drin is compromised between civilian and Commission." +**KnowsOf**: "The institutional contact is Commission. The inspector is nominally Commission but lives in the district. The detective represents institutional authority. Everyone else is civilian." +**KnowsDetails**: "Faction tensions: Commission (institutional contact, inspector, detective) vs. ring (coordinators, cargo handlers, shift supervisor, bar owner) vs. civilians (partners, manifest clerk, peripheral workers). Some civilians are compromised between civilian and Commission." **Direct**: N/A (political knowledge) **Mechanical Purpose**: Access tier logic. Explains why NPCs treat characters differently. Detective at KnowsDetails understands institutional barriers. **Smuggler Starting Level**: KnowsOf **Smuggler Perspective**: -**KnowsOf**: "Sera's Commission. Torek's Commission-adjacent but lives here, so who knows where he really stands. The new investigator is Commission, full stop. Everyone else is us or civilian." -**KnowsDetails**: "Lines aren't simple. Drin's civilian but compromised. Maret's civilian but knows too much. The detective is Commission sent to investigate. Commission versus ring versus people caught in between -- and nobody gets to be just one thing." +**KnowsOf**: "The institutional contact is Commission. The inspector is Commission-adjacent but lives here, so who knows where they really stand. The new investigator is Commission, full stop. Everyone else is us or civilian." +**KnowsDetails**: "Lines aren't simple. Some civilians are compromised. The manifest clerk knows too much. The detective is Commission sent to investigate. Commission versus ring versus people caught in between -- and nobody gets to be just one thing." --- @@ -381,7 +381,7 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to **Suspects**: N/A (binary -- investigation is active or it isn't) **KnowsOf**: "I'm building a case. Evidence collected, witnesses identified, patterns mapped." -**KnowsDetails**: "Case file: manifest logs, Drin testimony, Maret's reluctant cooperation, surveillance data, NPC behavioral analysis. Ready to escalate." +**KnowsDetails**: "Case file: manifest logs, witness testimony, the manifest clerk's reluctant cooperation, surveillance data, NPC behavioral analysis. Ready to escalate." **Direct**: N/A (meta-knowledge) **Mechanical Purpose**: Detective arc state. Gates confrontation options. Changes NPC dialogue (they know they're being investigated). @@ -391,7 +391,7 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to ### `progress.confrontation_ready` **Suspects**: N/A -**KnowsOf**: "I have enough to confront specific NPCs. Kael, Voss, or Lera." +**KnowsOf**: "I have enough to confront specific NPCs — the shift supervisor, the bar owner, or a cargo handler." **KnowsDetails**: "Full case built. Can confront the ring, turn an informant, or escalate to Commission enforcement." **Direct**: N/A (meta-knowledge) @@ -416,12 +416,12 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva ### `progress.operation_compromised` -**Suspects**: "Something feels wrong today. Voss is tenser than usual. Kael's distracted." +**Suspects**: "Something feels wrong today. The shift supervisor is tenser than usual. A ring member's distracted." **KnowsOf**: "There's pressure on the ring. Someone's asking questions about manifests. The Commission presence isn't routine." -**KnowsDetails**: "The detective isn't here for compliance review. They're building a case. Maret's nervous, Drin might crack, and Kael's doing something unauthorized that makes everything worse." +**KnowsDetails**: "The detective isn't here for compliance review. They're building a case. The manifest clerk's nervous, witnesses might crack, and a ring member's doing something unauthorized that makes everything worse." **Direct**: N/A (meta-knowledge) -**Mechanical Purpose**: Smuggler arc state. Gates operational monologue, defensive decision-making, and ring NPC dialogue. The smuggler's analog to `progress.initial_suspicion` + `progress.active_investigation`. Escalation triggers: detective asking questions about manifests, ring members reporting close calls, Kael's behavioral shift, Maret's visible anxiety. +**Mechanical Purpose**: Smuggler arc state. Gates operational monologue, defensive decision-making, and ring NPC dialogue. The smuggler's analog to `progress.initial_suspicion` + `progress.active_investigation`. Escalation triggers: detective asking questions about manifests, ring members reporting close calls, a ring member's behavioral shift, the manifest clerk's visible anxiety. **Discoverable by**: smuggler only. @@ -430,7 +430,7 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva ### `progress.cover_threatened` **Suspects**: "That was a close call. The detective looked at me a beat too long." -**KnowsOf**: "I'm on someone's radar. The detective, or Torek, or both. Need to be more careful." +**KnowsOf**: "I'm on someone's radar. The detective, or the inspector, or both. Need to be more careful." **KnowsDetails**: "They know. Maybe not everything, but enough. My routine's being watched. My associates flagged. My cargo containers noted." **Direct**: N/A (meta-knowledge) @@ -442,12 +442,12 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva ### `progress.detective_tracking` -**Suspects**: "New Commission liaison. Showed up a few days ago. Voss mentioned it." -**KnowsOf**: "The detective is investigating freight irregularities. They've been requesting manifests, talking to Maret and Drin. This isn't routine." -**KnowsDetails**: "The detective has evidence. Don't know how much, but enough to make Maret sweat and Drin avoid eye contact. They're close." +**Suspects**: "New Commission liaison. Showed up a few days ago. A ring member mentioned it." +**KnowsOf**: "The detective is investigating freight irregularities. They've been requesting manifests, talking to the manifest clerk and witnesses. This isn't routine." +**KnowsDetails**: "The detective has evidence. Don't know how much, but enough to make the manifest clerk sweat and others avoid eye contact. They're close." **Direct**: N/A (meta-knowledge) -**Mechanical Purpose**: Smuggler's tracking of the detective's investigation. Inverse of the detective's evidence tracking. The smuggler's monologue shifts from operational confidence to defensive awareness as this fact escalates. Gates ring-related dialogue: at KnowsOf, ring members start discussing countermeasures; at KnowsDetails, Nils may order the smuggler to change routines or go dark. +**Mechanical Purpose**: Smuggler's tracking of the detective's investigation. Inverse of the detective's evidence tracking. The smuggler's monologue shifts from operational confidence to defensive awareness as this fact escalates. Gates ring-related dialogue: at KnowsOf, ring members start discussing countermeasures; at KnowsDetails, the coordinator may order the smuggler to change routines or go dark. **Discoverable by**: smuggler only. @@ -459,7 +459,7 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva - **Confidence levels** are ordered: Suspects < KnowsOf < KnowsDetails < Direct. Use `KnowledgeConfidence::decayed()` for time-based degradation. - **Direct confidence** is perception-system-managed. Content authors rarely set this manually -- it's automatically assigned when an entity/location is in the observer's LOS. - **Abstract facts** (e.g., `contraband.ring_exists`, `world.commission_regulations`) never reach Direct -- they're conceptual, not observable. -- **Spatial facts** (e.g., `location.corridor_b7_restricted`) can reach Direct when the observer is physically present. +- **Spatial facts** (e.g., `location.restricted_corridor`) can reach Direct when the observer is physically present. - **Progression text** is for content authoring reference, not runtime display. Monologue lines reference these facts as prerequisites; they don't display the progression text directly. - **Smuggler perspective text** follows the smuggler voice register (see [Smuggler Voice Card](../../docs/design/smuggler-voice-card.md)): fragments, first names, feeling-first, concrete, operational. Where the detective discovers facts through investigation, the smuggler often starts with operational knowledge and discovers threats to the operation. @@ -470,22 +470,22 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva | `contraband.ring_exists` | KnowsDetails | Suspects | Insider knowledge | | `contraband.lattice_components` | KnowsDetails | Suspects | Handles the cargo | | `contraband.medical_grade` | KnowsOf | Suspects | Knows the cargo, reckons with meaning later | -| `contraband.severance_tech` | Suspects | Suspects | Nils won't discuss -- both characters discover | -| `contraband.supply_chain` | KnowsOf | Suspects | Knows Sabel, not full upstream | -| `location.corridor_b7_restricted` | KnowsDetails | Suspects | Uses it regularly | +| `contraband.severance_tech` | Suspects | Suspects | Coordinator won't discuss -- both characters discover | +| `contraband.supply_chain` | KnowsOf | Suspects | Knows off-station contact, not full upstream | +| `location.restricted_corridor` | KnowsDetails | Suspects | Uses it regularly | | `location.smuggling_route` | KnowsDetails | Suspects | Works the route | | `location.surveillance_gaps` | KnowsDetails | Suspects | Knows them operationally | -| `location.dead_drop_location` | KnowsDetails | Suspects | Uses Locker 47 | +| `location.dead_drop_location` | KnowsDetails | Suspects | Uses the dead drop | | `investigation.manifest_discrepancy` | KnowsDetails | Suspects | Creates the discrepancies | | `investigation.shift_mismatch` | KnowsDetails | Suspects | Part of the operation | | `investigation.cargo_anomaly` | KnowsDetails | Suspects | Knows the workflow | | `investigation.evidence_collected` | N/A | Suspects | Detective-only | | `world.commission_regulations` | KnowsOf | Suspects | Lives under them | | `world.syndic_supply_chain` | Suspects | Suspects | Knows cargo's off-station, not source | -| `world.sova_district_layout` | KnowsOf | Suspects | Born here, knows lived layout | +| `world.district_layout` | KnowsOf | Suspects | Lives here, knows the lived layout | | `world.shift_schedule` | KnowsDetails | Suspects | Works the shifts | | `relationship.ring_membership` | KnowsDetails | Suspects | Is a member | -| `relationship.kael_naia_connection` | KnowsOf | Suspects | Knows Kael's partner through Kael | +| `relationship.friend_personal_life` | KnowsOf | Suspects | Knows {THE FRIEND}'s partner through {THE FRIEND} | | `relationship.trust_network` | KnowsOf | Suspects | Knows who's who from living there | | `relationship.faction_allegiance` | KnowsOf | Suspects | Knows the social landscape | | `progress.operation_compromised` | Suspects | N/A | Smuggler-only arc state | @@ -494,4 +494,4 @@ These facts track the smuggler's operational arc. They are the smuggler's equiva --- -**Total FactIds**: 27 (5 contraband, 4 location, 4 investigation, 4 world, 4 relationship, 3 detective progress, 3 smuggler progress). 21 existing facts received smuggler-perspective text. 3 new smuggler-specific progress facts added. Sufficient for v0.1 vertical slice. Expandable by adding new categories or topics within existing categories. +**Total FactIds**: 24 (5 contraband, 4 location, 4 investigation, 4 world, 4 relationship, 3 detective progress, 3 smuggler progress). Expandable by adding new categories or topics within existing categories. diff --git a/wiki/concepts/relationship-states.md b/wiki/concepts/relationship-states.md index 7d57d0710..00f982e69 100644 --- a/wiki/concepts/relationship-states.md +++ b/wiki/concepts/relationship-states.md @@ -68,15 +68,15 @@ pub enum RelationshipState { **What it means**: Positive relationship, trusted. Emotional connection or reliable professional rapport. -**Monologue tone**: Warm, personal. "Good to see Kael. Always reliable." +**Monologue tone**: Warm, personal. "Good to see them. Always reliable." **Dialogue availability**: Public + peer + insider-tier. Trust-gated content unlocks. Some secret-tier content if relationship deepens. **Color**: Soft green (same as Known — the distinction is semantic, not visual). -**Typical entities**: THE FRIEND NPCs (Kael to smuggler, Sera to detective), close colleagues, trusted contacts. +**Typical entities**: THE FRIEND NPCs, close colleagues, trusted contacts. -**Why same color as Known**: Visual simplicity for v0.1. Future refinement could add subtle shader variation (warmth, pulse, saturation). +**Why same color as Known**: Visual simplicity in early implementation. Future refinement could add subtle shader variation (warmth, pulse, saturation). --- @@ -84,7 +84,7 @@ pub enum RelationshipState { **What it means**: Flagged. Something's wrong. Under observation or suspicion. -**Monologue tone**: Analytical, cautious. "Kael's meeting someone I don't recognize. That's not normal." +**Monologue tone**: Analytical, cautious. "{THE FRIEND}'s meeting someone I don't recognize. That's not normal." **Dialogue availability**: Shifts. Trust-gated content may become unavailable. Confrontation options unlock. @@ -108,7 +108,7 @@ pub enum RelationshipState { **Typical entities**: NPCs who've turned on the player, authority figures during a confrontation gone bad, exposed ring members cornered by the detective. -**Rare in v0.1**: Most NPCs don't reach Hostile. It's the endgame state for failed social maneuvering. +**Rare**: Most NPCs don't reach Hostile. It's the endgame state for failed social maneuvering. --- @@ -139,93 +139,93 @@ Unknown → Known → PersonOfInterest → Hostile (if confrontation fails) - Known → PersonOfInterest: Behavioral flags accumulate, tells observed, manifest discrepancy linked to this NPC. - PersonOfInterest → Hostile: Confrontation attempt rejected, NPC realizes they're under investigation, escalation. -**Example**: Detective observes Kael. Unknown (first sight) → Known (lattice query: "Davan, K., dock worker") → PersonOfInterest (observed in restricted corridor, evasive answers) → Hostile (confrontation: "I know you're involved. You need to cooperate." / Kael: "Stay away from me."). +**Example**: Detective observes a cargo handler. Unknown (first sight) → Known (lattice query: "dock worker, logistics") → PersonOfInterest (observed in restricted corridor, evasive answers) → Hostile (confrontation: "I know you're involved. You need to cooperate." / handler: "Stay away from me."). --- -### THE FRIEND Contradiction Arc (Kael — Smuggler's Perspective) +### THE FRIEND Contradiction Arc (Smuggler's Perspective) ``` Friendly → PersonOfInterest → [resolution: Friendly-but-contaminated OR Hostile] ``` **Phase 1: Friendly (baseline)** -- Kael is the smuggler's trusted colleague. +- {THE FRIEND} is the smuggler's trusted colleague. - Monologue: fond, casual. - Color: soft green. - Dialogue: insider-tier, warm. **Phase 2: First Crack (still Friendly, but flags accumulating)** - Behavioral flags: `lattice_checking,distracted`. -- Monologue shifts slightly: "Kael's been quiet lately." +- Monologue shifts slightly: "{THE FRIEND}'s been quiet lately." - State unchanged (still Friendly), but `EntityKnowledge.known_attributes["behavior_flags"]` updates. **Phase 3: The Contradiction (Friendly → PersonOfInterest)** -- Trigger: Direct observation of Kael meeting unknown contact in Corridor B-7. +- Trigger: Direct observation of {THE FRIEND} meeting an unknown contact off-route. - `EntityKnowledge.known_attributes["contradiction_flagged"] = "meeting_unknown_contact"`. - `RelationshipState` transitions to `PersonOfInterest`. - Color shifts: soft green → amber. -- Monologue: "That wasn't anyone from our rotation. Kael, what are you doing?" -- Dialogue options change: confrontation unlocks, trust-tier content locks (Kael is evasive). +- Monologue: "That wasn't anyone from our rotation. {THE FRIEND}, what are you doing?" +- Dialogue options change: confrontation unlocks, trust-tier content locks ({THE FRIEND} is evasive). **Phase 4: Post-Confrontation** -- **Path A (understanding)**: Smuggler confronts Kael gently. Kael confesses: trying to exit the ring to protect Naia. `RelationshipState` remains `PersonOfInterest` but monologue tone shifts to conflicted sympathy. Color stays amber (still a problem), but dialogue reflects empathy. -- **Path B (betrayal)**: Smuggler reports Kael to Nils or pressures Kael harshly. Kael turns defensive. `RelationshipState` → `Hostile`. Color → red. Kael avoids the smuggler, might actively obstruct. +- **Path A (understanding)**: Smuggler confronts {THE FRIEND} gently. {THE FRIEND} confesses: trying to exit the ring to protect someone close to them. `RelationshipState` remains `PersonOfInterest` but monologue tone shifts to conflicted sympathy. Color stays amber (still a problem), but dialogue reflects empathy. +- **Path B (betrayal)**: Smuggler reports {THE FRIEND} to ring leadership or applies harsh pressure. {THE FRIEND} turns defensive. `RelationshipState` → `Hostile`. Color → red. {THE FRIEND} avoids the smuggler, might actively obstruct. -**THE FRIEND pattern**: Friendly → PersonOfInterest is the emotional core. The player trusted Kael. Now Kael is amber. That color shift IS the narrative moment. +**THE FRIEND pattern**: Friendly → PersonOfInterest is the emotional core. The player trusted {THE FRIEND}. Now {THE FRIEND} is amber. That color shift IS the narrative moment. --- -### THE FRIEND Contradiction Arc (Sera — Detective's Perspective) +### THE FRIEND Contradiction Arc (Detective's Perspective) ``` Friendly → PersonOfInterest → [resolution: Friendly-but-contaminated OR Known-distanced OR Hostile] ``` **Phase 1: Friendly (baseline)** -- Sera is the detective's institutional contact and social anchor. +- {THE FRIEND} is the detective's institutional contact and social anchor. - Monologue: professional warmth, relief. - Color: soft green. - Dialogue: peer-tier, cooperative, helpful. **Phase 2: Pattern Observation (still Friendly, but flags accumulating)** -- Behavioral flags: `avoidance_pattern` (Sera leaves when Torek arrives). -- Monologue: "That's the third time. Sera leaves when Torek shows up." +- Behavioral flags: `avoidance_pattern` ({THE FRIEND} leaves when a suspect arrives). +- Monologue: "That's the third time. {THE FRIEND} leaves when that person shows up." - State unchanged (still Friendly), but `EntityKnowledge.known_attributes["behavior_flags"]` updates. **Phase 3: The Contradiction (Friendly → PersonOfInterest)** -- Trigger: Detective asks Sera directly about Torek. Sera deflects unconvincingly. +- Trigger: Detective asks {THE FRIEND} directly about their avoidance. {THE FRIEND} deflects unconvincingly. - `EntityKnowledge.known_attributes["contradiction_flagged"] = "avoidance_inconsistency"`. - `EntityKnowledge.known_attributes["secret_held"] = "unreported evidence"` (detective's inference). - `RelationshipState` transitions to `PersonOfInterest`. - Color shifts: soft green → amber. -- Monologue: "She's not lying. But she's not telling me everything. Sera, what do you know?" +- Monologue: "They're not lying. But they're not telling me everything. {THE FRIEND}, what do you know?" - Dialogue options change: pressing questions unlock, casual warmth diminishes. **Phase 4: Post-Confrontation** -- **Path A (loyalty test)**: Detective confronts Sera about concealment. Sera confesses: sitting on evidence to protect Naia (friend of Sera, partner of Kael). Detective can choose: report Sera (Hostile), use the information without reporting her (PersonOfInterest → Known, relationship damaged), or protect Sera and accept the information gap (PersonOfInterest → Friendly-but-contaminated). -- **Path B (institutional)**: Detective reports Sera immediately. `RelationshipState` → `Hostile`. Sera is reprimanded or reassigned. Color → red. The detective loses their only local ally. +- **Path A (loyalty test)**: Detective confronts {THE FRIEND} about concealment. {THE FRIEND} confesses: sitting on evidence to protect a third party. Detective can choose: report {THE FRIEND} (Hostile), use the information without reporting them (PersonOfInterest → Known, relationship damaged), or protect {THE FRIEND} and accept the information gap (PersonOfInterest → Friendly-but-contaminated). +- **Path B (institutional)**: Detective reports {THE FRIEND} immediately. `RelationshipState` → `Hostile`. {THE FRIEND} is reprimanded or reassigned. Color → red. The detective loses their only local ally. -**THE FRIEND pattern**: The detective's trust in Sera is tested. Amber means "my friend is hiding something." The resolution determines whether the friendship survives. +**THE FRIEND pattern**: The detective's trust in {THE FRIEND} is tested. Amber means "my contact is hiding something." The resolution determines whether the friendship survives. --- -## Contradiction Patterns: Kael + Sera +## Contradiction Patterns: Smuggler vs. Detective Paths Both THE FRIEND NPCs follow the same structural arc, but the **nature of the contradiction differs**: -| Dimension | Kael (Smuggler's FRIEND) | Sera (Detective's FRIEND) | -|-----------|--------------------------|---------------------------| -| **Contradiction type** | Spatial deviation (meeting unknown contact) | Behavioral avoidance (leaving when Torek arrives) | +| Dimension | {THE FRIEND} — Smuggler Path | {THE FRIEND} — Detective Path | +|-----------|------------------------------|-------------------------------| +| **Contradiction type** | Spatial deviation (meeting unknown contact) | Behavioral avoidance (leaving when a suspect arrives) | | **Discovery method** | Direct observation in restricted area | Pattern recognition over multiple visits | -| **What they're hiding** | Attempt to exit the ring (protect Naia) | Unreported evidence (protect Naia) | -| **Sympathetic motivation** | Family protection (Naia is Kael's partner) | Friendship loyalty (Naia is Sera's friend) | -| **Naia as connection** | Kael's personal life | Sera's social network | +| **What they're hiding** | Attempt to exit the ring (protect someone close) | Unreported evidence (protect a third party) | +| **Sympathetic motivation** | Personal protection (someone they care about) | Friendship loyalty (mutual third-party connection) | +| **Third-party connection** | {THE FRIEND}'s personal life | {THE FRIEND}'s social network | | **Color shift timing** | Single observation event (immediate) | Third occurrence (cumulative) | | **Confrontation stakes** | Ring security vs. personal loyalty | Institutional duty vs. personal loyalty | | **Resolution spectrum** | Understanding ↔ Betrayal | Protect friend ↔ Report corruption | -**Common structure**: Both contradictions involve **Naia** as the emotional anchor. Naia is worried about Kael. Sera knows why (unreported evidence). Kael is trying to protect Naia (exit attempt). The smuggler and detective approach the same NPC web from opposite sides. THE FRIEND, in both cases, is the person caught in the middle trying to protect someone they care about. +**Common structure**: Both contradictions involve a **shared third party** as the emotional anchor — someone both THE FRIEND NPCs are trying to protect, approached from opposite sides of the case. --- @@ -239,7 +239,7 @@ Both THE FRIEND NPCs follow the same structural arc, but the **nature of the con **Effect on relationship**: None directly. A Friendly NPC with Active knowledge remains Friendly. -**Example**: Smuggler's knowledge of Kael as "trusted colleague" is Active until the contradiction. +**Example**: Smuggler's knowledge of {THE FRIEND} as "trusted colleague" is Active until the contradiction. --- @@ -254,7 +254,7 @@ When `KnowledgeState` becomes `Contradicted`, the system: 2. Triggers a monologue event: "Wait, that doesn't match what I thought I knew." 3. Evaluates `RelationshipState` transition. If the contradicted knowledge is about a Friendly NPC, transition to PersonOfInterest. -**Example**: Smuggler's knowledge "Kael operates within ring protocol" contradicts with new observation "Kael meeting unauthorized contact." Both entries become `Contradicted`. Monologue fires. Kael's `RelationshipState` → `PersonOfInterest`. +**Example**: Smuggler's knowledge "{THE FRIEND} operates within ring protocol" contradicts with new observation "{THE FRIEND} meeting unauthorized contact." Both entries become `Contradicted`. Monologue fires. {THE FRIEND}'s `RelationshipState` → `PersonOfInterest`. --- @@ -264,7 +264,7 @@ When `KnowledgeState` becomes `Contradicted`, the system: **Effect on relationship**: Degrades confidence but doesn't change relationship state. A Friendly NPC remains Friendly, but positional knowledge becomes unreliable. -**Example**: Smuggler last saw Kael at the hub 7 hours ago. `last_known_position` becomes Stale. Monologue: "Kael should be off-shift by now. Probably at the bar, but I haven't seen him." +**Example**: Smuggler last saw {THE FRIEND} at the hub 7 hours ago. `last_known_position` becomes Stale. Monologue: "{THE FRIEND} should be off-shift by now. Probably at the bar, but I haven't seen them." --- @@ -289,7 +289,7 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: ### Unknown → Known - **Before**: "Who's that?" -- **After**: "That's Drin, the maintenance tech." +- **After**: "That's the maintenance tech." **Shift**: Identification. Observer now has context. @@ -297,8 +297,8 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: ### Known → Friendly -- **Before**: "Drin's over there." -- **After**: "Good to see Drin. Always fixes things without making a fuss." +- **Before**: "They're over there." +- **After**: "Good to see them. Always fixes things without making a fuss." **Shift**: Warmth. Personal regard. @@ -306,8 +306,8 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: ### Friendly → PersonOfInterest (THE FRIEND) -- **Before**: "There's Kael. Good — I was starting to worry." -- **After**: "Kael's here. But he's been acting strange. What's going on?" +- **Before**: "There's {THE FRIEND}. Good — I was starting to worry." +- **After**: "{THE FRIEND}'s here. But they've been acting strange. What's going on?" **Shift**: Doubt contaminates warmth. The fond observation is now analytical. @@ -315,8 +315,8 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: ### PersonOfInterest → Hostile -- **Before**: "Kael's avoiding me. Something's wrong." -- **After**: "Kael just signaled security. He's turned on me." +- **Before**: "{THE FRIEND}'s avoiding me. Something's wrong." +- **After**: "{THE FRIEND} just signaled security. They've turned on me." **Shift**: Assessment → alarm. @@ -329,7 +329,7 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: ```yaml prerequisite: relationship_state: PersonOfInterest - subject: kael_davan + subject: {npc_id} ``` - **Dialogue lines** filter on `access` tier, which is derived from `RelationshipState` + character type (smuggler/detective/NPC role). - **Color shifts** are client-side rendering, but the knowledge graph determines the state. Content authors write to the state; the client handles the color. @@ -343,4 +343,4 @@ The dialogue system (D-028, D-035) uses `RelationshipState` as a filter: --- -**Total states**: 5. **Load-bearing transitions for v0.1**: Unknown → Known (universal), Known/Friendly → PersonOfInterest (THE FRIEND), PersonOfInterest → Hostile (confrontation failure). Other transitions exist but are less structurally critical. +**Total states**: 5. **Load-bearing transitions**: Unknown → Known (universal), Known/Friendly → PersonOfInterest (THE FRIEND), PersonOfInterest → Hostile (confrontation failure). Other transitions exist but are less structurally critical. diff --git a/wiki/contraband/index.md b/wiki/contraband/index.md index 9f3fdfb20..47e0d19c7 100644 --- a/wiki/contraband/index.md +++ b/wiki/contraband/index.md @@ -1,11 +1,11 @@ # Contraband -Illegal and restricted goods in the Settled Reach. Primary gameplay focus for the v0.1 smuggler/detective vertical slice. +Illegal and restricted goods in the Settled Reach. Smuggling scenarios turn on the moral and political weight of what's in the containers. ## Contraband Types -| Item | Category | v0.1 Role | -|------|----------|-----------| +| Item | Category | Role | +|------|----------|------| | [Lattice Components](lattice-components.md) | Unlicensed neural mods | Primary contraband | | [Medical-Grade Replacements](medical-grade-replacements.md) | Diverted healthcare | Secondary | | [Severance Equipment](severance-equipment.md) | Counter-surveillance gear | Restricted tech | diff --git a/wiki/contraband/lattice-components.md b/wiki/contraband/lattice-components.md index 929232017..ca09baa5e 100644 --- a/wiki/contraband/lattice-components.md +++ b/wiki/contraband/lattice-components.md @@ -17,13 +17,13 @@ cross_refs: [] **Status:** Canonical **Legality:** Category 3 violation (unauthorized lattice modification) **Source:** Aftermarket manufacturers, Syndic-adjacent supply chains -**Moved By:** The ring (Sova Transit District smuggling operation) +**Moved By:** The ring (district smuggling operation) --- ## Overview -Unlicensed lattice components are the primary contraband in the v0.1 smuggling scenario. These are aftermarket neural lattice modifications — processing nodes, capability packages, interface upgrades — that bypass [Lattice Commission](../technology/neural-lattice.md#commission-regulation) certification. +Unlicensed lattice components are the primary contraband in the district smuggling scenario. These are aftermarket neural lattice modifications — processing nodes, capability packages, interface upgrades — that bypass [Lattice Commission](../technology/neural-lattice.md#commission-regulation) certification. They are not defective. They are not dangerous. They are unauthorized. And that distinction is the moral core of the smuggling operation. @@ -43,7 +43,7 @@ They are not defective. They are not dangerous. They are unauthorized. And that **Professional capability:** A freight scheduler with an aftermarket processing upgrade handles manifests faster, catches errors sooner, becomes more valuable at work. A maintenance technician with enhanced diagnostic capabilities works more efficiently. The upgrade pays for itself in job performance. -**Perception access:** The Commission's tier system means most people on Station Sova are locked into Baseline perception — natural vision and basic Meridian access. Enhanced perception modes (camera access, audio analysis, tracking) require institutional sponsorship. People who want to see more of their own world must either get institutional approval or go to the aftermarket. +**Perception access:** The Commission's tier system means most people in a mid-Reach freight district are locked into Baseline perception — natural vision and basic Meridian access. Enhanced perception modes (camera access, audio analysis, tracking) require institutional sponsorship. People who want to see more of their own world must either get institutional approval or go to the aftermarket. **Economic calculation:** Commission-certified upgrades cost 3-5x more than aftermarket equivalents and take 6-12 months to process. For a dock worker making 2,400 credits per month with 200 credits margin, the choice between waiting a year for certification or buying aftermarket this month is not a difficult calculation. @@ -57,11 +57,11 @@ From `contraband.supply_chain` (fact catalog): 1. **Manufacturing:** Syndic-adjacent independent manufacturers produce lattice components outside Commission jurisdiction. Quality is professional-grade — these aren't garage operations. 2. **Interstellar transit:** Components move through [Founder Gate](../technology/founder-gates.md) networks to distribution nodes. -3. **Off-station coordination:** Sabel (off-station) manages incoming shipments, coordinates timing with ring operations. +3. **Off-station coordination:** The off-station coordinator manages incoming shipments, coordinates timing with ring operations. 4. **Gate arrival:** Contraband arrives mixed with legitimate freight through [span gates](../technology/span-gates.md) on scheduled cargo cycles. 5. **Inspection bypass:** Containers with doctored manifests pass through inspection. Weight discrepancies are the primary forensic evidence (logged weight vs. actual weight). -6. **Ring coordination:** Devra or Nils coordinate local distribution. Kael and Kosse handle physical cargo. Voss provides scheduling cover. -7. **Local distribution:** Components reach buyers through informal networks, facilitated through The Last Shift as a social clearing house. +6. **Ring coordination:** Ring leadership coordinates local distribution. Cargo handlers manage physical routing. The shift supervisor provides scheduling cover. +7. **Local distribution:** Components reach buyers through informal networks, facilitated through the district bar as a social clearing house. --- @@ -70,7 +70,7 @@ From `contraband.supply_chain` (fact catalog): **For the detective:** - `investigation.manifest_discrepancy` — Weight-to-volume mismatches in cargo manifests. The detective's Analytical lattice flags these automatically at Suspects confidence. - `investigation.cargo_anomaly` — Containers sitting in temporary storage longer than standard procedure allows. -- `investigation.shift_mismatch` — Night shift schedules inconsistent with freight volume (Voss creating coverage gaps). +- `investigation.shift_mismatch` — Night shift schedules inconsistent with freight volume (shift supervisor creating coverage gaps). - `contraband.lattice_components` — At KnowsOf: "Unlicensed lattice components. Aftermarket mods that bypass Commission certification." At Direct: "I'm looking at a crate of lattice components right now. Serial numbers don't match any certified batch." **For the smuggler:** @@ -106,7 +106,7 @@ But also: **Perception Connection (D-017):** - Lattice components connect directly to the perception system — a smuggled upgrade could theoretically change what the player perceives -- This connection is referenced in lore and dialogue, not mechanically implemented in v0.1 +- This connection is referenced in lore and dialogue, not mechanically implemented in the initial build - Future scope: aftermarket lattice upgrade as player progression mechanic **Investigation Mechanics:** @@ -121,7 +121,6 @@ But also: - [Neural Lattice](../technology/neural-lattice.md) — The technology being modified - [Medical-Grade Replacements](medical-grade-replacements.md) — Secondary contraband (healthcare dimension) - [Severance Equipment](severance-equipment.md) — Tertiary contraband (political dimension) -- [Sova Transit District](../world/sova-transit-district.md) — The ring's operational infrastructure - [Fact Catalog](../knowledge/fact-catalog.md) — FactId confidence progressions - D-037: Contraband specification - D-017: Perception modes (lattice tier determines available modes) diff --git a/wiki/contraband/medical-grade-replacements.md b/wiki/contraband/medical-grade-replacements.md index 2ee15cc7d..f90b9cbe9 100644 --- a/wiki/contraband/medical-grade-replacements.md +++ b/wiki/contraband/medical-grade-replacements.md @@ -17,7 +17,7 @@ cross_refs: [] **Status:** Canonical **Legality:** Category 3 violation (unauthorized lattice modification) + controlled medical device distribution **Source:** Diverted from Syndic supply chains -**Moved By:** The ring (Sova Transit District smuggling operation) +**Moved By:** The ring (district smuggling operation) --- @@ -46,7 +46,7 @@ Neural lattices are biotech. They degrade over time. For most people in the Sett 4. Installation at a certified facility 5. Post-installation compliance verification -**Cost:** Prohibitive for most workers on Station Sova. A full lattice replacement through legitimate channels costs 8-12 months of a dock worker's total salary. Component-by-component replacement (replacing only the failing nodes) is cheaper but still requires the full approval cycle for each component. +**Cost:** Prohibitive for most workers at a mid-Reach freight station. A full lattice replacement through legitimate channels costs 8-12 months of a dock worker's total salary. Component-by-component replacement (replacing only the failing nodes) is cheaper but still requires the full approval cycle for each component. **Wait time:** The approval cycle exists because the Commission certifies each replacement component individually. For someone whose lattice is degrading now — whose professional capability is declining this month, whose perception overlays are failing this week — "6-12 months" is not an acceptable medical timeline. @@ -70,7 +70,7 @@ The ring's medical-grade replacements are the same components available through ## Who Needs Them -**Aging workers:** Long-term Sova residents whose lattices were installed 15-20+ years ago. Nodes degrade. Processing slows. These workers need replacements to maintain professional capability and daily function. +**Aging workers:** Long-term district residents whose lattices were installed 15-20+ years ago. Nodes degrade. Processing slows. These workers need replacements to maintain professional capability and daily function. **Economically locked-out workers:** People who could get Commission approval but can't afford the certified pricing or can't afford to wait. Their lattices are degrading now. Their jobs depend on lattice function now. The black market serves them because the legitimate market won't — not on their timeline, not at their price point. @@ -120,7 +120,7 @@ Medical-grade replacements are the smuggling ring's moral shield. When the ring - Detective monologue at KnowsOf: recognition that enforcement has human costs - Both character monologues shift in tone when medical-grade knowledge is established -**v0.1 Scope:** +**Scope:** - Medical-grade replacements are dialogue and monologue content — not a visible gameplay mechanic - No player character experiences lattice degradation in the vertical slice - The moral dimension is expressed through NPC conversations and internal monologue, not through systems diff --git a/wiki/contraband/severance-equipment.md b/wiki/contraband/severance-equipment.md index 568382af7..aa95ad82a 100644 --- a/wiki/contraband/severance-equipment.md +++ b/wiki/contraband/severance-equipment.md @@ -17,7 +17,7 @@ cross_refs: [] **Status:** Canonical **Legality:** Highest-severity violation — intelligence-level enforcement response **Source:** Guardians of Autonomy supply chain -**Moved By:** The ring (Sova Transit District smuggling operation — not all members aware) +**Moved By:** The ring (district smuggling operation — not all members aware) --- @@ -31,7 +31,7 @@ This is the cargo that makes the ring scary. Not because it's weapons — it's n ## What's in the Containers -The specific Severance equipment in the ring's cargo is not fully cataloged in v0.1 — it lives in sealed containers that most ring members don't open and Nils doesn't discuss. What's known: +The specific Severance equipment in the ring's cargo is not fully cataloged — it lives in sealed containers that most ring members don't open and ring leadership doesn't discuss. What's known: **Hardware:** - Meridian signal jammers (localized blackout devices, portable) @@ -39,7 +39,7 @@ The specific Severance equipment in the ring's cargo is not fully cataloged in v - Signature masking units (individual-wear devices that suppress lattice tracking signatures) **Characteristics:** -- Heavier than lattice components (the sealed containers Nils won't discuss are "heavier than lattice components" per fact progression) +- Heavier than lattice components (the sealed containers ring leadership won't discuss are "heavier than lattice components" per fact progression) - Professionally manufactured — not improvised or garage-built - Sourced through Guardians of Autonomy supply networks - Transit through the same interstellar routes as the ring's other cargo @@ -50,7 +50,7 @@ The specific Severance equipment in the ring's cargo is not fully cataloged in v The Guardians of Autonomy are a decentralized political movement spread across multiple systems in the Settled Reach. They oppose lattice-mediated institutional surveillance and advocate for individual control over perception technology. Severance technology is their tool of choice — the mechanism for opting out of the information architecture. -**What this means for the ring:** The ring didn't set out to be part of a political movement. They started as a local commercial operation — moving lattice components to serve community demand. The Severance equipment arrived through the same supply chain, managed by the same off-station coordinator (Sabel), distributed through the same infrastructure. The ring became a Guardians distribution node by logistics, not ideology. +**What this means for the ring:** The ring didn't set out to be part of a political movement. They started as a local commercial operation — moving lattice components to serve community demand. The Severance equipment arrived through the same supply chain, managed by the same off-station coordinator, distributed through the same infrastructure. The ring became a Guardians distribution node by logistics, not ideology. **What this means for the story:** The Guardians connection is the contamination seed. It transforms the ring from "local grey market, community immune system" into "local node in an interstellar political network." Not because the ring members are political actors — most of them aren't — but because their infrastructure serves political purposes they didn't choose and may not fully understand. @@ -58,13 +58,13 @@ The Guardians of Autonomy are a decentralized political movement spread across m ## Who Knows What -**Ring members who know:** Nils (manages the sealed containers directly), Devra (coordinates with off-station contact Sabel, likely aware). The sealed containers are Nils's domain — he handles them personally, doesn't discuss contents, stores them separately from lattice cargo. +**Ring members who know:** Ring leadership (manages the sealed containers directly, coordinates with the off-station contact). The sealed containers are leadership's domain — handled personally, contents not discussed, stored separately from lattice cargo. -**Ring members who suspect:** Kael (has noticed the sealed containers, hasn't asked), Voss (provides scheduling cover for all cargo, doesn't differentiate). Others in the ring handle lattice components and medical-grade replacements; the Severance cargo moves through a tighter channel. +**Ring members who suspect:** Some cargo handlers (have noticed the sealed containers, haven't asked), the shift supervisor (provides scheduling cover for all cargo, doesn't differentiate). Others in the ring handle lattice components and medical-grade replacements; the Severance cargo moves through a tighter channel. -**Ring members who don't know:** Kosse, Lera, Pell, and other peripheral members. They know the ring moves lattice cargo. The Severance equipment is compartmentalized. +**Ring members who don't know:** Peripheral members. They know the ring moves lattice cargo. The Severance equipment is compartmentalized. -**The smuggler (player):** Starts without knowledge of the Severance cargo. Discovery follows the fact progression — suspicious sealed containers, Nils's evasion, eventually the truth. This discovery is the contamination moment that complicates the smuggler's moral position. +**The smuggler (player):** Starts without knowledge of the Severance cargo. Discovery follows the fact progression — suspicious sealed containers, ring leadership's evasion, eventually the truth. This discovery is the contamination moment that complicates the smuggler's moral position. **The detective (player):** Discovers Severance equipment through investigation — either by identifying the containers, by following the supply chain, or through NPC testimony. The discovery transforms the case. @@ -79,21 +79,21 @@ Lattice components? Serving community demand. Medical-grade replacements? Provid Manifest fraud and unlicensed lattice components are a local enforcement matter. Severance equipment distribution is an intelligence-level concern. The detective's case changes from "file a report with the Commission" to "flag this for system-level authorities." The stakes of every decision — who to confront, who to protect, what to report — increase dramatically. Turning an informant isn't just building a smuggling case anymore; it's potentially exposing a Guardians network. **For the narrative:** -Severance equipment is the thing that prevents the v0.1 story from being small. A smuggling ring on a freight station is a local story. A smuggling ring unknowingly serving as a node in an interstellar political movement is a story that points beyond its setting. The Severance cargo is the promise that this story has roots and branches the player can't see yet. +Severance equipment is the thing that prevents the district story from being small. A smuggling ring on a freight station is a local story. A smuggling ring unknowingly serving as a node in an interstellar political movement is a story that points beyond its setting. The Severance cargo is the promise that this story has roots and branches the player can't see yet. --- ## Knowledge Graph Integration **FactId: `contraband.severance_tech`** -- **Suspects:** "Sealed containers Nils won't discuss. Heavier than lattice components." +- **Suspects:** "Sealed containers ring leadership won't discuss. Heavier than lattice components." - **KnowsOf:** "Severance equipment. Counter-surveillance tech. Illegal across most of the Reach." - **KnowsDetails:** "Guardians of Autonomy supply chain. This isn't local — it's connected to something bigger." -- **Direct:** N/A (not directly visible in v0.1) +- **Direct:** N/A (not directly visible in the early arc) **Mechanical Purpose:** Contamination seed for storyteller expansion. The thing that makes the smuggler question how deep the ring goes. The thing that transforms the detective's case from local to systemic. -**Progression design:** Note the deliberate knowledge gap — neither character reaches Direct confidence with Severance tech in v0.1. They know it exists, they know where it comes from, but they never handle it directly or see it deployed. The technology remains slightly abstract, slightly ominous. This is intentional: Severance equipment is a thread to pull in future content, not a puzzle to solve in the vertical slice. +**Progression design:** Note the deliberate knowledge gap — neither character reaches Direct confidence with Severance tech in the vertical slice. They know it exists, they know where it comes from, but they never handle it directly or see it deployed. The technology remains slightly abstract, slightly ominous. This is intentional: Severance equipment is a thread to pull in future content, not a puzzle to solve in the vertical slice. --- @@ -106,11 +106,11 @@ Severance equipment is the thing that prevents the v0.1 story from being small. - Case transformation trigger for the detective **Dialogue Impact:** -- Discovery of Severance equipment changes available dialogue options with Nils, Devra, and Sabel-related threads -- Smuggler confrontation with Nils about sealed containers is a relationship-testing moment +- Discovery of Severance equipment changes available dialogue options with ring leadership and off-station contacts +- Smuggler confrontation with ring leadership about sealed containers is a relationship-testing moment - Detective reporting options bifurcate: local enforcement vs. intelligence escalation -**v0.1 Scope:** +**Scope:** - Severance equipment is knowledge content — discovered, discussed, worried about - No Severance technology is deployed or used in the vertical slice - The equipment's significance is narrative (what it implies about the ring's connections) not mechanical (what it does) @@ -123,7 +123,6 @@ Severance equipment is the thing that prevents the v0.1 story from being small. - [Lattice Components](lattice-components.md) — Primary contraband (commercial dimension) - [Medical-Grade Replacements](medical-grade-replacements.md) — Secondary contraband (healthcare dimension) - [Fact Catalog](../knowledge/fact-catalog.md) — `contraband.severance_tech` confidence progression -- [Sova Transit District](../world/sova-transit-district.md) — Ring operational infrastructure - D-037: Contraband specification - D-023: Three-tier content model (contamination seed for storyteller) diff --git a/wiki/corporations/adams-ford-publishing.md b/wiki/corporations/adams-ford-publishing.md index 41d847b2c..d17dda11f 100644 --- a/wiki/corporations/adams-ford-publishing.md +++ b/wiki/corporations/adams-ford-publishing.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Parallax (GJ 280A) tags: [media, publishing, guide, humor, content] decision_refs: [] -cross_refs: [gate-corporation, parallax] +cross_refs: [parallax, lattice-commission, guardians-of-autonomy, ashwick-broadcasting] --- # Adams & Ford Publishing Syndicate @@ -112,6 +112,7 @@ Adams herself is a potential contact — a Perpetual-class journalist with a cen - [Parallax](../star-systems/GJ-280A/index.md) — Headquarters system; media production hub - [Lattice Commission](../factions/lattice-commission.md) — Regulatory adversary; content classification dispute - [Guardians of Autonomy](../factions/guardians-of-autonomy.md) — Frequent citers; uncomfortable allies +- [Ashwick Broadcasting](ashwick-broadcasting.md) — North reach documentary partner; archival access exchange; forty-year standing distribution relationship - [Veridian Syndicate] — Adams's former employer; founding grievance --- diff --git a/wiki/corporations/alcazar-hospitality.md b/wiki/corporations/alcazar-hospitality.md index 8c888ae0c..0bda65965 100644 --- a/wiki/corporations/alcazar-hospitality.md +++ b/wiki/corporations/alcazar-hospitality.md @@ -1,24 +1,97 @@ --- title: "Alcazar Hospitality" -description: "Alcazar Hospitality — premium service provider based in Altair, south reach" +description: "South reach premium hospitality group at Altair (GJ 768) — corridor-transit accommodation, private dining, and a reputation for discretion that has been its primary commercial asset for eighty years" slug: alcazar-hospitality category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Altair (GJ 768) tags: [service_premium, south_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [the-registry] --- # Alcazar Hospitality -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Premium Hospitality Group +**Also Known As:** Alcazar, the Alcazar properties **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Altair (GJ 768) +**Scope:** South reach corridor primary; four properties across three systems +**Headquarters:** Altair (GJ 768) — 3-aperture junction, 4 hops from Gateway +**Classification:** Sub-Syndic service enterprise; family-held independent -Alcazar Hospitality is a premium service provider operating out of Altair (GJ 768). Details to be expanded. +--- + +## Overview + +Altair is a junction system — three gate apertures, south reach position, commercial traffic moving in four directions through its transit infrastructure. People pass through Altair constantly. Most of them do not stay. The ones who do tend to have reasons for discretion: commercial negotiations that are not yet concluded, arbitration proceedings that require both parties to be in the same system without being in the same room, transit layovers that have stretched beyond the scheduled window for reasons the traveler is not explaining. + +Alcazar Hospitality serves these people. Not exclusively — the properties are open to any traveler who can meet the room rate — but predominantly. The commercial travelers, negotiating parties, long-stay guests with complicated itineraries, and institutional representatives who need accommodation that does not ask questions: these are Alcazar's real market. They have been Alcazar's real market since the group's founding, eighty years ago, and the product the group has sold in that time is less the rooms than the reputation that comes with them. Alcazar is discreet. Everyone in the south reach commercial community understands this. The understanding is the asset. + +The properties are not lavish. They are precise. The difference between a lavish hotel and a precise one is that a lavish hotel wants you to notice how much it has spent on your comfort, while a precise hotel has decided exactly what you need and provided it without expecting your admiration for the effort. Alcazar does not have lobbies designed to impress. It has rooms designed to function, dining rooms calibrated to conversation rather than spectacle, and staff trained to understand that the most important thing they can do for most guests is to behave as though they have not noticed them. + +--- + +## Origin + +The group was founded eighty years ago by Inês Alcácer, who had spent twelve years as a senior accommodation manager at a commercial transit facility at Altair's principal station before concluding that the facility she worked for was solving the wrong problem. Transit accommodation at junction systems defaults to volume — many guests, short stays, efficient turnover. This works for most travelers. It does not work for the commercial negotiating party that needs three days of extended accommodation while two corporations argue over a freight contract, or for the arbitration delegation that cannot be housed in the same wing as the other arbitration delegation, or for the person who needs a room that will not appear in any standard booking system. + +Inês Alcácer opened the first Alcazar property with twelve rooms in a refurbished section of an older Altair station district. The rooms were expensive. The property was impossible to find unless someone told you where it was. Within two years, the commercial community that needed what Alcazar offered had found it through the mechanism by which these things are found: one person telling another person, with confidence, that this was a place that worked. The expansion to three properties across two additional south reach systems happened over the following thirty years. A fourth property opened fifteen years ago at a junction system that had developed enough commercial traffic to support the model. + +Inês Alcácer died forty years ago, non-Perpetual, and left the properties to her two children in equal shares. One of those children, now in her seventies, is the group's current managing director. The other holds equity and does not participate in operations. The shareholding structure is family-held and has not been offered to outside investment. This is policy, not circumstance. + +--- + +## Operations + +**Properties:** Four properties total — the original Altair flagship (forty-two rooms), two south reach corridor locations at systems with significant commercial transit, and the newer fourth property at a junction with growing arbitration and commercial negotiation traffic. All four properties share a common operational philosophy and guest protocols. They do not share a booking system — reservations at each property are managed independently, through property-specific contacts, and do not cross-reference between locations by design. + +**Guest profile:** Long-stay commercial travelers, arbitration and negotiation delegations, institutional representatives requiring accommodation that does not draw attention. The average stay is longer than any other premium hospitality operation in the south reach corridor. This is a feature, not an artifact — Alcazar's properties are designed for people who need to be somewhere for an extended period without the experience of that period becoming the subject of discussion. + +**Staff:** The group employs forty-three people across all four properties, including property managers, room staff, dining personnel, and a small logistics operation managing supply across the corridor. Staff are hired with an explicit understanding that guest matters are not discussed outside the property. This is not an unusual condition in hospitality; what distinguishes Alcazar's enforcement of it is that the condition is taken seriously. + +**Revenue:** Room rates are high, turnover is low, and the group's margins depend on occupancy continuity — long-stay guests rather than one-night transits. The dining operations at each property are profitable in their own right, catering to external guests who have been referred by long-stay clients and to private event bookings that require a venue without a public profile. The group does not publish revenue figures. + +--- + +## Location + +Altair's three-aperture topology routes commercial traffic from four directions through the same transit infrastructure. The original Alcazar property serves the main station district at Altair's principal settlement — the oldest and largest property, with the longest waiting list for extended-stay bookings. The two intermediate corridor properties handle south reach overflow and the specialized traffic that moves between adjacent systems along the corridor's industrial and commercial routes. The fourth property, opened fifteen years ago at a junction system whose commercial arbitration traffic had developed to support the model, is Alcazar's newest and smallest. + +None of the properties are listed in standard transit accommodation directories. Addresses circulate in the south reach commercial community through direct referral — the same mechanism by which the original Altair property was found eighty years ago. This is not secrecy. It is the oldest and most reliable form of reputation management: the people who need to find something will find it, and the process of finding it is itself a qualification. + +--- + +## What They Don't Talk About + +Alcazar's guest records do not exist, as a matter of stated policy. The group does not retain documentation of who stayed where, for how long, or with whom they dined. This is true. + +What is also true is that the group's managing director, for the past twenty years, has maintained a personal record of guest interaction patterns — not identities, not stated purposes, but behavioral data: who requested adjacent suites, which guest combinations required the dining room to be arranged so that two parties could not see each other, how often specific corporate entities sent delegations at the same time without appearing on the same booking. This record has never been described as a guest record because it does not contain guest names. It has been shared, on three occasions in the past decade, with The Registry at Groombridge, which purchases commercial pattern data of this kind for its due-diligence intelligence services. The Registry's clients, who are attempting to understand the structure of south reach commercial relationships, receive analysis derived from Alcazar's guest interaction records without knowing the source. Alcazar's guests, who are paying for discretion, are providing some fraction of the intelligence that circulates about them. + +The managing director considers this consistent with Alcazar's privacy commitments. The commitments, on examination, do not promise that behavioral patterns will not be observed and shared. They promise that names will not be recorded. The names are not recorded. + +--- + +## Gameplay Relevance + +Alcazar is ambient infrastructure for any investigation touching south reach commercial relationships. The properties are where negotiations happen before they become contracts, where delegations stay before they appear in official filings, where the people whose names appear in arbitration records spent the nights before and after the hearings. A player tracing a commercial dispute, a hostile acquisition, or a pattern of coordinated commercial activity in the south reach will encounter Alcazar's properties as the physical location where those activities were organized — even if the activities themselves happened elsewhere. + +The guest records do not exist. This is what Alcazar's staff will say, accurately, when asked. What does exist is The Registry's commercial intelligence archive at Groombridge, which contains behavioral pattern analysis derived from Alcazar data across at least three separate purchase transactions. A Registry analyst with access to the relevant archive files could confirm, without naming sources, that a specific corporate entity has sent delegations to Altair on dates that correlate with events the player is investigating — and could indicate, from the pattern data, who else was in the property at the same time. The Registry's cooperation is not free and is not guaranteed. The analyst knows what the data is worth and will price it accordingly. + +The managing director is a secondary source: difficult to approach, professionally courteous, and unlikely to confirm the data-sharing arrangement unless the player can demonstrate they already know about it. She has spent twenty years maintaining the technical accuracy of Alcazar's privacy commitments, which means she has thought carefully about exactly which questions she can answer honestly and which she cannot. An investigator who asks the right question — not "did you keep records" but "did you sell anything to The Registry" — will get a response that is notably different from her standard deflection. + +The properties as physical environments provide investigation texture that indirect sources cannot replicate. Alcazar's premises are designed for guest privacy — sightlines managed for room separation, staff trained to be present without drawing notice, layout that makes it possible to be in the dining room or corridor without an obvious stated purpose. A player with a referral as a legitimate patron can observe long-stay clientele without appearing to. Commercial guests on extended stays develop routines: the same table at the same hour, the same route between meals and rooms. Three days of presence in a well-placed seat can produce a more accurate account of who is meeting whom than three weeks of approaching the same people through their public contacts. + +--- + +**Cross-References:** +- [The Registry](the-registry.md) — Groombridge commercial intelligence firm; purchaser of behavioral pattern data + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/alcyone-tech.md b/wiki/corporations/alcyone-tech.md index cb125be17..3fc17f4e3 100644 --- a/wiki/corporations/alcyone-tech.md +++ b/wiki/corporations/alcyone-tech.md @@ -1,24 +1,102 @@ --- title: "Alcyone Tech" -description: "Alcyone Tech — precision technology manufacturer based in Groombridge, core" +description: "Groombridge precision technology manufacturer — authentication hardware, settlement terminals, and encrypted relay components that form the physical substrate of the Reach's interstellar financial infrastructure" slug: alcyone-tech category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [tech_premium, core, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, the-registry, meridian-risk] --- # Alcyone Tech **Type:** Corporation — Precision Technology Manufacturer +**Also Known As:** Alcyone **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; reach-wide institutional client base secondary +**Headquarters:** Groombridge (GJ 380), Lendel district — 2-aperture loop_member, 2 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; sole-source institutional supplier -Alcyone Tech is a precision technology manufacturer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Interstellar commerce runs on institutional trust. Institutional trust runs on verified process integrity. Verified process integrity runs, at its physical base, on hardware: the authentication terminals, encrypted relay components, and settlement verification devices that allow a financial commitment made at Ran to be cleared at Groombridge without either party needing to send a representative in person. Alcyone Tech makes this hardware. + +The company does not manufacture consumer electronics. It does not pursue volume markets, retail distribution, or the kind of product recognition that comes with a brand name on something ordinary people hold. Its clients are financial houses, insurance institutions, legal service providers, and the settlement infrastructure that underlies Tractus-denominated commerce. These clients buy in small quantities, require exacting specifications, and expect the hardware they receive to perform without deviation under conditions their own legal liability depends on. Alcyone's product quality is not optional. The contracts that define Alcyone's institutional relationships make this explicit. + +Eighty years of manufacturing from the same Lendel facility, with an unblemished certification record, has produced the kind of institutional confidence that no marketing exercise can substitute for. Alcyone Tech's clients do not shop around for terminal hardware. They have an Alcyone relationship and they maintain it, because changing hardware suppliers in a clearing context requires re-certification of every process that touches the equipment, and re-certification is expensive, time-consuming, and introduces risk. + +--- + +## Origin + +Alcyone Tech was founded by an engineer named Rosamund Osei-Frempong, who had spent twelve years as a hardware maintenance contractor for several of the Groombridge financial houses before concluding that the hardware layer the houses depended on was being systematically underbuilt. The individual houses maintained their own equipment, sourced from multiple off-Groombridge suppliers, and managed maintenance schedules that prioritized cost over coordination. The result was a fragmented infrastructure with version inconsistencies between adjacent systems — a risk that no individual house had incentive to address because addressing it would require coordinating with competitors. + +Osei-Frempong's founding proposition was consolidation: one manufacturer, certified to Commission standards, building and maintaining the hardware for multiple institutions under a common architecture. The argument was that consistent hardware across the Groombridge financial district would reduce the systemic fragmentation risk and that the cost of certification could be shared. The first institution to sign was a smaller insurance house that had recently experienced a hardware-related clearing failure and was prepared to spend money to not experience it again. The Groombridge Settlement House signed four years later, after two of its terminal batches from different suppliers produced version-incompatible authentication outputs. The rest of the district followed over the next decade. + +The company has been the primary hardware supplier for Groombridge's financial infrastructure for sixty years. + +--- + +## Operations + +**Product lines:** Settlement terminals — the hardware that GSH's correspondent institutions use to authenticate and submit clearing requests. Encrypted relay nodes — physical components in the communication infrastructure that the financial houses maintain independently of gate transit. Authentication token systems — cryptographic hardware for biometric contract signing, used wherever Tractus-denominated contracts require physical identity verification. These are not consumer products; they are institutional infrastructure items purchased in batches of tens to hundreds with expected service lives of eight to twelve years. + +**Manufacturing:** The Lendel facility employs ninety-one people, almost entirely technical specialists. The facility is small relative to the capital managed by Alcyone's clients. This is characteristic of Groombridge: the economic leverage of an institution here is not proportional to its headcount. Alcyone's ninety-one people are responsible for the continuous operational integrity of hardware that clears a substantial fraction of Reach-wide interstellar commerce. They understand this. It is reflected in their compensation and in the quality of the facility they work in. + +**Certification:** Every product line Alcyone manufactures is certified under the Lattice Commission's hardware integrity standards for financial infrastructure. The certification process requires documented production parameters, random sample testing, and periodic audit visits. Alcyone has never had a certification suspended and makes this fact visible in every client communication. + +**Client relationships:** Long-term maintenance contracts with all major clients, renewable every five years. The maintenance contracts include hardware refresh cycles — periodic replacement of aging equipment with current-generation devices — that Alcyone manages on behalf of the institutions. Client institutions rarely interact with the hardware procurement question because the contracts delegate it. + +--- + +## Political Relationships + +**Groombridge Settlement House:** GSH is Alcyone's largest and most strategically significant client. The relationship is commercially standard — maintenance contract, hardware refresh cycles, certification requirements — but structurally foundational: if Alcyone's products are certified, GSH's clearing operations are certified; if Alcyone's certification were suspended, GSH would need to source replacement hardware and re-certify its processes, which would be operationally disruptive on a scale neither party wishes to explore. This mutual dependency is why the hardware vulnerability non-disclosure decision was considered a matter of institutional survival rather than a simple compliance question. + +**Lattice Commission:** The Commission's certification relationship with Alcyone is the source of the company's market position and the mechanism by which the non-disclosure decision becomes dangerous. Commission certification of Alcyone's hardware is the basis on which the financial houses accept the hardware as suitable for clearing and authentication purposes. A Commission audit that discovered the vulnerability and the decision not to disclose it would not simply revoke a product certification — it would raise questions about every clearing transaction that passed through the affected hardware during the non-disclosure window. + +**The Registry:** A smaller client relationship but a notable one. The Registry's analyst workstations use Alcyone authentication hardware for biometric contract signing and record integrity verification. The Registry's business model depends on the integrity of the records it produces. Its clients would have a specific kind of interest in knowing that the authentication hardware those records were produced on had a known vulnerability for the eighteen months preceding the current refresh cycle. + +--- + +## What They Don't Talk About + +Eighteen months ago, an Alcyone quality control engineer conducting routine test analysis on outgoing terminal batches identified a timing side-channel — a pattern in the authentication hardware's processing rhythm that, under specific conditions, allowed a sophisticated attacker to infer cryptographic state information from power consumption measurements taken at the terminal's exterior. The vulnerability required physical proximity to the terminal and significant analytical capability to exploit. It was not a trivial attack. It was not impossible. + +The engineer filed an internal report. The report was reviewed by Alcyone's technical board and its legal team over the following three weeks. The conclusion the legal team reached was that mandatory client notification of a hardware vulnerability across the entire installed base would trigger recall provisions in the maintenance contracts, expose Alcyone to liability claims from institutions whose hardware was now certifiably non-compliant, and require a public disclosure to the Lattice Commission that would invite regulatory review of whether the hardware had ever met the standards under which it was certified. + +The decision taken was not to notify clients and not to disclose to the Commission. The hardware refresh cycle that was already planned for the following year was accelerated and the upgrade specification was rewritten to address the vulnerability. The new hardware is clean. The installed base of current-generation devices is being replaced under the maintenance contract's normal refresh language. Clients who have asked about the accelerated timeline were told it is a performance enhancement initiative. + +GSH's terminal fleet has been approximately 40% refreshed. The remaining 60% is scheduled for completion over the next fourteen months. + +--- + +## Gameplay Relevance + +Alcyone Tech is background institutional infrastructure — not a primary player in most investigations, but a reliable point of leverage if a player is working in the Groombridge financial district or tracing authentication-dependent commercial activity. The company's products are present wherever institutional contract signing happens: terminals in GSH's correspondent offices, relay nodes in Meridian Risk's underwriting facilities, authentication hardware in The Registry's analyst workstations. + +The hardware vulnerability is an investigative thread with significant reach. A player who uncovers the internal report — which exists, was written professionally, and is documented in Alcyone's internal engineering archive — has found evidence of a deliberate non-disclosure to financial institutions that depend on the certified integrity of Alcyone's products. The implications extend to GSH's clearing certification, Meridian's underwriting records, and anything that moved through Alcyone authentication hardware during the window between discovery and replacement. Whether the vulnerability was exploited during that window is not a question Alcyone's internal records answer. + +The legal team's deliberation document is the more dangerous piece of evidence. It records that the decision not to disclose was not an oversight but a considered choice, with the liability exposure analysis attached. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; primary client base +- [Groombridge Settlement House](groombridge-settlement-house.md) — Primary institutional client; terminal hardware +- [The Registry](the-registry.md) — Client; analyst workstation authentication hardware +- [Meridian Risk Partners](meridian-risk.md) — Client; underwriting facility relay components + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/aldgate-trust.md b/wiki/corporations/aldgate-trust.md index ca7b1250a..7edcd9194 100644 --- a/wiki/corporations/aldgate-trust.md +++ b/wiki/corporations/aldgate-trust.md @@ -1,24 +1,102 @@ --- title: "Aldgate Trust" -description: "Aldgate Trust — premium service provider based in Crown's Hollow, north reach" +description: "Crown's Hollow fiduciary services firm — estate management, settler succession planning, and long-term asset custody for north reach families navigating the complications of interstellar inheritance" slug: aldgate-trust category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Crown's Hollow (GJ 661A) tags: [service_premium, north_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [highland-cooperative, calloway-distillery, grampian-systems] --- # Aldgate Trust -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Fiduciary Services / Estate Management +**Also Known As:** the Trust **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Crown's Hollow (GJ 661A) +**Scope:** North reach primary; outward corridor families with inward holdings secondary +**Headquarters:** Crown's Hollow (GJ 661A) — outer north reach, 7+ hops from Gateway +**Classification:** Sub-Syndic professional services; licensed fiduciary under Lattice Commission estate standards -Aldgate Trust is a premium service provider operating out of Crown's Hollow (GJ 661A). Details to be expanded. +--- + +## Overview + +Settling at the outer reach is a choice that compounds across generations. The distances involved — seven or more gate transits from Gateway — mean that a family establishing itself at Crown's Hollow can spend decades accumulating local holdings, building community relationships, and establishing the kind of material stability that passage life forecloses. When the founder dies, when children leave for inward systems, when a holding becomes too complex to manage without professional oversight, the complications of interstellar distance make ordinary estate law insufficient. + +Aldgate Trust exists to manage these complications. It handles estate administration for families whose assets span multiple systems, succession planning for settlers whose heirs have scattered inward, and long-term custodial arrangements for holdings that need managed continuity rather than immediate disposition. In a corridor where families regularly span six systems and three generations, Aldgate's combination of local knowledge and interstellar legal competence fills a specific and substantial need. + +The Trust is not large. It does not pursue volume. The families who retain Aldgate tend to stay retained — a settler who places her estate under Trust management at sixty typically leaves it there until disposition, and the Trust expects to be involved in the subsequent generation's planning as well. This creates a client base that is stable, deeply informed about Aldgate's capabilities, and inclined to refer. + +--- + +## Origin + +Aldgate Trust was established at Crown's Hollow seventy years ago by a solicitor named Dorothea Harwick who had spent fifteen years as a correspondent attorney for an inward firm, handling the outward reach cases that no one in the core wanted to travel to resolve. She had seen too many estates collapse into territorial disputes because the legal instruments that governed them had been drafted by attorneys who had never visited the systems involved and who treated interstellar distance as an administrative footnote rather than a structural reality. + +Her thesis was straightforward: fiduciary services for outward reach families needed to be staffed by people who actually lived at the relevant distance, who understood that a six-month transit leg was not a complication to be worked around but a fundamental fact of the client's world. Aldgate's founding partners were all based at Crown's Hollow or within two hops. This geographic commitment has been maintained. + +The firm expanded carefully through the first two decades, building competency in the specific legal instruments that govern multistellar estates under Lattice Commission framework before taking on clients whose complexity required that competency. It has been the dominant estate services firm at Crown's Hollow for fifty years. + +--- + +## Operations + +**Core services:** Estate administration — acting as executor or co-executor for complex estates with multi-system asset distribution. Succession planning — drafting instruments that account for heir location, transit time, and the practical reality that an heir resident at Ran cannot manage a Crown's Hollow agricultural holding in real time. Asset custody — holding and managing productive assets (agricultural, commercial, real property) under management agreements that provide continuity during transition periods. + +**Staff:** Thirty-one, of whom nine are qualified attorneys. The rest are property administrators, agricultural managers, and accountants who understand the specifics of managing remote holdings. The firm does not employ people who only know the paperwork; it employs people who can also visit a managed farm and assess whether it is actually being run as documented. + +**Client profile:** Families with agricultural holdings, commercial operations, or real property at Crown's Hollow and adjacent systems. The typical engagement begins when a second-generation settler is managing the first generation's assets and the complexity has outgrown personal administration. Engagements last decades. + +**Fees:** Structured as annual custody fees plus transaction fees when the Trust acts on behalf of an estate. Transparent by industry standard. The Trust's reputation depends on clients feeling that it operates in their interest, and fee disputes are existential threats to that perception. + +--- + +## Political Relationships + +**Highland Cooperative:** Several Highland Cooperative member families are Aldgate Trust clients, with their agricultural holdings under long-term custody arrangements. This gives Aldgate visibility into the Cooperative's internal membership structure — which estates are encumbered, which are being managed for absent heirs, which are distressed — that the Cooperative's governance board does not itself have. The Trust's fiduciary obligations to its individual clients formally prohibit disclosure, but the aggregated picture Aldgate holds shapes which estates are vulnerable to the 14(c) mechanism. + +**Calloway Distillery:** The Distillers' Council governance documents for two of the eleven Calloway distilleries designate Aldgate Trust as their executor of record. The Trust's involvement in distillery succession planning is therefore not incidental — it holds formal authority over what happens when a founding distillery's family line fails to produce a willing successor, which is the scenario currently developing at Calloway House. What Aldgate does or does not do in that succession process will significantly shape the Council's internal power balance. + +**Grampian Systems:** Aldgate administers equipment lease portfolios for several agricultural clients whose monitoring infrastructure is supplied by Grampian Systems. The lease administration relationship gives Aldgate incidental sight of Grampian's client list and contract terms at Crown's Hollow — information that is not confidential in principle but that Aldgate holds in a volume no single observer should have. + +--- + +## What They Don't Talk About + +Aldgate's standard estate management agreement includes a clause — Section 14(c), titled "Extended Administrative Authority" — that activates if an estate falls into default on local obligations for more than eighteen consecutive months. Under 14(c), the Trust's management authority converts from advisory to plenary: it can make binding asset decisions on behalf of the estate without the consent of named beneficiaries, including accepting offers, restructuring holdings, and entering into long-term leases. + +The clause was drafted as a practical instrument for genuinely failing estates — situations where no beneficiary is reachable and obligations must be met. It has been invoked four times in the Trust's history. In two of those cases, the beneficiaries were genuinely unreachable. In the other two, the estate was distressed but not failed, the beneficiaries were resident within two hops, and notification was sent by standard relay — which at seven hops from Gateway produces a four-month round-trip response time. When the responses arrived, the Trust had already acted under 14(c) and the transactions were complete. + +Aldgate's position, documented in both cases, is that the relay timeline meant beneficiary consent was impractical and the estate obligations were immediate. The beneficiaries, in both cases, accepted settlements rather than pursue litigation. The clause has not been revised. + +--- + +## Gameplay Relevance + +Aldgate Trust appears in investigations touching north reach estate transfers, inheritance disputes, and the pattern of outward corridor properties moving from private family ownership to managed institutional control over time. + +The 14(c) clause is the primary investigative thread. A player who obtains Aldgate's engagement agreements — which can be found in any Crown's Hollow estate filing — will find the clause. Whether it has been used opportunistically or defensively is a question the Trust's internal transaction records answer, and those records exist at Aldgate's Crown's Hollow offices. + +The firm also holds long-term custody over agricultural holdings that connect to Highland Cooperative's supply chain and Fieldborn Grain's distribution relationships. An investigator tracing beneficial ownership of north reach agricultural assets will encounter Aldgate as a custodial intermediary whose client files name the actual owners. + +If the 14(c) pattern is exposed, the implications extend beyond the two settled cases. Any estate currently under Aldgate's management whose beneficiaries are reachable only by slow relay is a candidate for the clause's use — and several such estates are currently active. The legal distinction between protective administration and opportunistic asset control is real but narrow, and the Trust's documented deliberations in the two historical cases reveal how that line was navigated rather than observed. Regulatory exposure under the Lattice Commission's fiduciary standards could affect the Trust's operating license and every active management relationship it holds. That outcome would harm the outer reach families whose continuity depends on it — which is why Aldgate's partners consider the current silence a service to their clients rather than a risk they are managing for themselves. + +--- + +**Cross-References:** +- [Crown's Hollow](../star-systems/GJ-661A/index.md) — Headquarters; primary client geography +- [Highland Cooperative](highland-cooperative.md) — Agricultural clients; intersecting asset management +- [Calloway Distillery](calloway-distillery.md) — Distillery estates in adjacent systems; occasional Trust involvement in succession planning +- [Grampian Systems](grampian-systems.md) — Commercial client; equipment lease administration + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/alentejo-partners.md b/wiki/corporations/alentejo-partners.md index 047441d2d..c32d33efb 100644 --- a/wiki/corporations/alentejo-partners.md +++ b/wiki/corporations/alentejo-partners.md @@ -1,24 +1,111 @@ --- title: "Alentejo Partners" -description: "Alentejo Partners — regional specialty producer based in Caparica, south reach" +description: "South_reach agricultural aggregator based at Caparica (GJ 1002) — forty-plus small-holder farms, Alentejo heritage botanical oils and preserved goods, and a collective export structure whose founding deed has served the founding families rather better than members understood when they signed" slug: alentejo-partners category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Caparica (GJ 1002) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [algarve-botanics, ferreira-monteiro] --- # Alentejo Partners -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Agricultural Aggregator and Export Cooperative +**Also Known As:** the Partnership, Alentejo (abbreviated) **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Caparica (GJ 1002) +**Scope:** Regional — south_reach corridor primary; inner-corridor specialty food market secondary +**Headquarters:** Caparica (GJ 1002) — south_reach corridor +**Classification:** Sub-Syndic agricultural partnership; founding-family governance structure -Alentejo Partners is a regional specialty producer operating out of Caparica (GJ 1002). Details to be expanded. +--- + +## Overview + +Alentejo Partners is the collective commercial entity through which forty-three small-holder farms in the Caparica system sell their production to the corridor. The partnership manages export logistics, quality certification, and market relationships for producers whose individual scale is too modest to negotiate directly with distributors, maintain certification under Lattice Commission agricultural standards, or build the kind of consistent market presence that commands reliable prices. The model is sound and it works. The member farms produce under conditions they could not manage independently, and the aggregate Alentejo brand has acquired a corridor reputation for quality botanical oils and preserved goods that benefits every producer who can claim it. + +The founding families who constructed this arrangement did so with genuine agricultural expertise and with a thorough understanding of how partnership structures can be written to last. The structure has lasted. The terms have not required revisiting, because the founding deed was written in a way that makes revisiting it practically impossible without the founding families' consent. + +--- + +## Origin + +The first settling families of the Caparica system arrived from a Portuguese agricultural heritage — specifically from the Alentejo interior tradition: broad cultivated landscape, mixed farming, the patient husbandry of olives, cork oaks, and preserved-good traditions that require years to establish and decades to perfect. The name Alentejo Partners was chosen by the founding generation to carry that heritage explicitly; Caparica, the system name, referred to a different Portuguese coastal origin that the settlement's founders considered secondary to the agricultural identity they were establishing. + +The founding generation built slowly. The olive-analogue cultivar they planted from introduced stock required two generations to produce reliably under Caparica's conditions. The cork-bark species they found locally proved workable for sealing and for a modest export market in the inner corridor. The preserved-good tradition established itself as the system's most distinctive export in the second century, when the fermented and oil-preserved products that the farms had been producing for local consumption found buyers in south_reach trade routes who valued them as specialty goods. + +The partnership structure was formalized in the third generation, when the founding families — by then a network of five related clans — consolidated the individual farm operations under a common commercial entity. The founding deed was drafted by legal practitioners the founding families had engaged, and it was presented to the broader farming community as the mechanism that would give small-holder farms access to the corridor market they could not reach independently. Forty-three farms signed in the first year. + +--- + +## Operations + +**The agricultural base:** The forty-three member farms produce a range of goods: botanical oils from multiple cultivated varieties (the olive-analogue pressed oil is the primary export volume); fermented and preserved vegetables from a tradition that includes both long-aging and quick-brine formats; bark-cork products from the local species that has proven workable for the inner-corridor specialist market; and a small amount of dried aromatic herb production that moves partly to inner-corridor culinary buyers and partly to botanical spirit producers in adjacent systems. + +**Export logistics:** The partnership maintains a freight consolidation facility at Caparica's primary transit node. Member farm production flows into the facility, where it is sorted, quality-assessed, certified, and assembled into outbound shipments under the Alentejo brand. The logistics operation employs twenty-two people and manages relationships with south_reach freight handlers and inner-corridor specialty distributors. + +**Quality certification:** Alentejo Partners holds Lattice Commission agricultural product certifications for its primary export categories. The certification maintenance work is handled by the partnership's administrative office, staffed by employees of the partnership rather than by member farms. Members participate in the production quality standards that certification requires; they do not manage the certification process directly. + +**Pricing:** Member farms are compensated based on aggregate production volumes, less a deduction described in the partnership deed as "certification, logistics, and operations overhead." This deduction is presented to members as a cost-of-service line in their annual production accounts. It is not itemized at the line level. Members receive net proceeds and the aggregate overhead percentage; they do not receive a breakdown of what the overhead funds. + +--- + +## Products + +**Alentejo Botanical Oils** — the primary export volume and the brand's most recognized product category. The pressed botanical oil from the olive-analogue cultivar is graded by the partnership into three tiers: single-farm certified (premium, individual farm identity, limited volume), blend-certified (mid-grade, the bulk of export volume), and culinary standard (commodity-adjacent, for distribution channels where price matters more than provenance). The single-farm certified tier commands inner-corridor premium prices and has the brand's best distribution relationships. + +**Alentejo Preserved Goods** — fermented and oil-preserved vegetables, small-batch production, handled through specialty distributors who place them with inner-corridor buyers interested in south_reach agricultural traditions. Smaller revenue contribution than the oils but higher margin. The preserved-good tradition is what most corridor residents associate with the Alentejo name when they have heard of it at all. + +**Cork and Bark Products** — sealing materials and bark-derived craft products from the local species. A modest secondary export. The inner-corridor craft and specialty materials market finds Caparica cork-bark useful; it is not the brand's identity but provides consistent supplementary revenue. + +**Aromatic Herb Exports** — dried herb production from member farms with the right conditions for aromatic cultivation. Sold partly to culinary buyers and partly as raw botanical inputs to spirit producers. The volume is small; the relationship with buyers in adjacent south_reach systems provides useful commercial diversity for member farms that can grow aromatic varieties. + +--- + +## Political Relationships + +**Algarve Botanics:** The Cardoso-Ferreira family's botanical spirit operation at Inhambane (GJ 54) sources a portion of its supplementary aromatic inputs from south_reach agricultural producers. Alentejo Partners supplies dried aromatic herbs to the Algarve operation through a standing supply contract. The commercial relationship is modest in scale — Algarve's primary botanical cultivation is in-system — but consistent. The Alentejo herbs that appear in Algarve's secondary botanical blend are listed on the Algarve product documentation as "south_reach corridor aromatics." + +**Ferreira Monteiro:** South_reach commercial law and trade arbitration is Ferreira Monteiro's primary practice. The agricultural cooperative governance context — partnership deed interpretation, member rights, pricing dispute arbitration — falls within Ferreira's south_reach expertise. Alentejo Partners' legal work has historically been handled by a Caparica-based practitioner who is a correspondent of one of the founding families' original legal advisors. This is not Ferreira Monteiro. + +**Member farm community:** Forty-three farm operations whose viability depends substantially on the partnership structure. Most are multi-generational operations that have been members since the founding era. The practical barrier to exit is high: leaving the partnership means losing access to certification, logistics infrastructure, and the Alentejo brand designation that their production has been marketed under. Several member farmers have expressed, at different times, concerns about the pricing structure's transparency. These concerns have been addressed through explanations that the overhead structure is standard for agricultural partnership arrangements of this type. + +--- + +## What They Don't Talk About + +The founding deed was revised once, in the generation after the original formation, when the founding family network expanded the partnership membership significantly and restructured the overhead deduction mechanism. The first revision was presented to members as an administrative update reflecting the partnership's growth. Copies of the original founding deed and the first revision are held in the partnership's administrative archive; the original copies held by member farms have, in most cases, been replaced over successive generations by partnership-issued current-text versions that do not preserve the revision history distinctly. + +The overhead deduction structure in the first revision embedded a mechanism that the founding families' legal advisors designed as a permanent revenue instrument rather than a cost recovery mechanism. A component of the overhead deduction — documented in the revision as a "certification and administration premium" — flows not to the partnership's operational expenses but to a holding account distributed annually to the founding family network. This distribution is recorded in the partnership's internal accounts under operational cost categories that do not trigger external audit scrutiny. The founding families receive, in aggregate, approximately eleven percent of the total production value processed through the partnership each year, beyond any ordinary governance compensation. + +Member farms do not know this mechanism exists. The pricing they receive is below what the market would produce for their production quality if they could negotiate directly. One member farmer — a third-generation operator named Tomás Figueiras-Braga whose olive-analogue production consistently achieves single-farm certification — retained an agricultural auditor eight months ago after his per-unit returns declined for the third consecutive year despite rising market prices for certified botanical oils. The auditor's report identified an anomaly in the overhead deduction structure and flagged it for clarification. The partnership's legal representative — the correspondent firm with longstanding connections to the founding families — advised the auditor that the structure was consistent with the founding deed and represented standard practice. The auditor has not accepted this explanation. The matter is unresolved. + +--- + +## Gameplay Relevance + +Alentejo Partners is a community-scale institutional story: a structure that disadvantages ordinary producers in ways that are not immediately visible, defended by the people who designed it and the practitioners they employ. The harm is diffuse; the evidence is documentary; the access is a challenge of institutional navigation rather than physical risk. + +The productive investigation threads are: + +- **The founding deed revision history** — the original founding deed and the first revision are in the partnership's administrative archive. A player who can access this archive and read the revision against the current-text version would see what changed and when. The founding families' current-text versions distributed to members are sanitized; the archive holds the original revisions. The difference is the mechanism. +- **The overhead distribution account** — the annual distribution to the founding family holding account is recorded in the partnership's internal accounts. Access requires either physical presence at the administrative archive or a source within the partnership's financial staff. The account has a name that is not self-explanatory and is not cross-referenced to the founding families in any document the member farms have seen. +- **Tomás Figueiras-Braga and the auditor** — both are accessible sources. Figueiras-Braga is motivated, has a specific production quality grievance, and has retained an auditor with relevant findings. The auditor's unresolved flagging means the documentation of the anomaly already exists outside the partnership's control. A player who connects the auditor's findings to the founding deed revision history has enough to approach either the member farm community collectively or Ferreira Monteiro with a case the partnership's current legal representation cannot easily defend. + +--- + +**Cross-References:** +- [Caparica](../star-systems/GJ-1002/index.md) — Headquarters system; founding agricultural landholdings; primary transit node +- [Algarve Botanics](algarve-botanics.md) — Supply relationship; south_reach aromatic herb exports as botanical inputs +- [Ferreira Monteiro](ferreira-monteiro.md) — South_reach commercial law and trade arbitration; relevant jurisdiction for partnership deed disputes + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/algarve-botanics.md b/wiki/corporations/algarve-botanics.md index 463bcdfc7..b73477a93 100644 --- a/wiki/corporations/algarve-botanics.md +++ b/wiki/corporations/algarve-botanics.md @@ -1,24 +1,108 @@ --- title: "Algarve Botanics" -description: "Algarve Botanics — regional specialty producer based in Inhambane, south reach" +description: "South_reach botanical spirit producer based at Inhambane (GJ 54) — Portuguese coastal heritage adapted to warm-climate aromatics, a gin-and-bitters tradition sixty years in the making, and an artisanal independence story that is mostly accurate" slug: algarve-botanics category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Inhambane (GJ 54) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [salud-alliance] --- # Algarve Botanics -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Botanical Spirit and Extract Producer +**Also Known As:** Algarve, the Botanics **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Inhambane (GJ 54) +**Scope:** Regional — south_reach corridor primary; inner-corridor specialty bar market secondary +**Headquarters:** Inhambane (GJ 54) — south_reach corridor +**Classification:** Sub-Syndic family enterprise; externally capitalized; founder-family operational control -Algarve Botanics is a regional specialty producer operating out of Inhambane (GJ 54). Details to be expanded. +--- + +## Overview + +Algarve Botanics makes gin-analogues, aromatic bitters, and culinary botanical extracts from the warm-climate aromatic plants of the Inhambane system. The company is named for the Algarve region of southern Portugal — the origin heritage of the founding Cardoso-Ferreira family, who arrived at Inhambane in the wave_4 expansion and found that the system's warm coastal conditions bore a workable resemblance to the Mediterranean climate they were carrying in memory. The similarity is imperfect, the local botanical palette is genuinely different, and the products that have emerged from ninety years of working with Inhambane's native and introduced aromatics have their own character rather than being reproductions of an original. The brand name is a cultural claim, not a recipe. + +What the corridor's bar culture discovered, beginning roughly sixty years ago, is that Algarve's flagship gin expression has an aromatic complexity that differs from anything produced in wetter or cooler systems, and that differs from itself in ways that change noticeably with the local growing season. This variability is now part of the brand proposition. Buyers who follow Algarve expect each release to be its own argument. + +The company presents itself as a family operation. This description is accurate for the creative and operational control structure. The financial structure is somewhat more complicated. + +--- + +## Origin + +The Cardoso-Ferreira family arrived at Inhambane three generations ago with herb cuttings, a distillation apparatus, and the working assumption that the local climate would support the aromatic plants they knew. Some assumptions proved correct. Many of the initial plantings struggled or died. The second generation spent most of its productive years developing a working botanical palette from local plants and introduced cultivars that could thrive under Inhambane's conditions — warmer and more humid than the Algarve analogue, with a different seasonal pattern and a local microbial ecology that affected fermentation in unexpected ways. + +The first commercial product — a juniper-primary gin expression using locally adapted juniper and a blend of indigenous coastal aromatics — appeared forty years ago and sold modestly in the south_reach corridor. The second product, an aromatic bitter series using a proprietary blend of native Inhambane botanical resins and bark extracts, found an audience in the inner-corridor bar trade sixty years ago and has grown steadily since. The bitter series is what established Algarve's reputation; the gin range extended it. + +Sixty years ago, when the bitter series was first attracting attention and the company needed capital to expand production and distribution capacity, the current generation's grandmother negotiated an investment arrangement with a Syndic-tier commercial fund operating through the south_reach. The terms provided the expansion capital the family needed. The arrangement has not been publicly discussed since. + +--- + +## Operations + +**Production:** Botanical cultivation occupies approximately twelve hectares of the Cardoso-Ferreira family's landholding at Inhambane. The primary gin botanicals are grown in-system; a small number of supplementary aromatics are imported from the inner corridor. The bitter series uses a botanical blend that the family describes as proprietary and has not disclosed in its specifics. Distillation is conducted in copper pot stills the family designs and maintains in-house. The entire production operation employs nineteen people, most of them from families with multi-generational connections to the operation. + +**Capital structure:** The commercial fund that invested sixty years ago holds preferred equity representing a thirty-eight percent economic interest in the company. Preferred equity receives priority distributions before common equity holders and holds liquidation preference in any sale. The family holds common equity and retains full operational and creative control. Any external investment or sale transaction requires the fund's consent under the investment agreement terms. The fund does not appear in any public company filing associated with Algarve Botanics; its interest is recorded in the private investment agreement and in the company's internal capitalization table. + +**Distribution:** The gin range and bitter series move through specialist spirit distributors in the south_reach and through a small inner-corridor network that carries the products to bar trade buyers. Algarve does not use volume distribution channels; the production scale and the brand positioning both require placement with buyers who will manage the product appropriately. + +--- + +## Products + +**Algarve Coastal Gin** — the flagship expression. Built around a juniper base and a rotating selection of Inhambane coastal aromatics; the specific botanical blend varies seasonally, producing a product whose character shifts year to year. Long-standing buyers develop expectations for what the current release's botanical emphasis will be, based on the season's growing conditions. This variability is deliberate and now a category characteristic that no competitor has managed to replicate. + +**Algarve Bitter Series** — the product that established the brand. Four expressions using different botanical combinations from Inhambane's native shrub and bark palette. The amber bitter (Amargo) is the most widely distributed; the dark bitter (Escuro) is a smaller production that commands a following in inner-corridor cocktail culture. The aromatic profile of the Escuro expression includes a native Inhambane bark resin that has no direct equivalent in other corridors' botanical pantries. + +**Algarve Culinary Extracts** — a smaller commercial line: aromatic infusions and botanical concentrates sold to restaurant buyers and the higher end of the domestic culinary market. Supplementary revenue. Not the brand's identity, but commercially useful and a way of introducing Algarve's botanical palette to buyers who encounter it through food before spirits. + +--- + +## Political Relationships + +**Salud Alliance:** Salud operates pharmaceutical distribution and formulary management across the south_reach. Its formulary management function includes responsibility for classifying botanical compounds with physiological effects under Lattice Commission and regional pharmaceutical regulations. Algarve Botanics and Salud Alliance do not have a commercial relationship. The regulatory framework Salud administers is relevant to a question about one of Algarve's botanical compounds that the company has not raised with any regulator. + +**South_reach spirit market:** Algarve occupies a niche position — too small for the volume channels, too distinct in character for buyers who want consistency. The bar trade buyers who carry Algarve are advocates rather than customers; they describe the product in terms of craft positioning and seasonal character. This advocacy network is the primary distribution mechanism for building inner-corridor presence, and it is fragile in the sense that reputation in bar trade is word-of-mouth and any significant quality or consistency change would propagate quickly through the network. + +**The investor fund:** The Syndic-tier commercial fund that holds preferred equity is an external party in the capitalization structure. It does not involve itself in operations. It receives quarterly distributions. There is a standing clause in the investment agreement permitting the fund to trigger a buyout review if production-weighted revenue falls below a defined threshold for three consecutive years. The threshold has not been reached. The family is aware the clause exists. + +--- + +## What They Don't Talk About + +The Cardoso-Ferreira family's head formulator for the first thirty years of the bitter series was a woman named Elisa Melo-Cardoso, a cousin of the second generation who developed most of the proprietary botanical blend. Eight years ago, she was passed over for the head formulator role in favor of the current generation's eldest son. She left the company. + +Before she left, she took her personal research journals. The journals document, among other things, a discovery she made twenty-two years ago regarding one of the native Inhambane bark resins used in the Escuro bitter — specifically, that the compound class responsible for the resin's aromatic character has a secondary pharmacological interaction with a common pharmaceutical category when both are present in sufficient concentration. At the levels used in the Escuro bitter's standard production, the concentration falls below the threshold for Commission pharmacological concern. In combination with certain prescribed pharmaceutical agents at standard dosages, the combination produces neurological effects that are not noted on the Escuro bottle or in any Algarve product documentation. + +The Cardoso-Ferreira family became aware of this finding when Elisa Melo-Cardoso raised it internally. The response was to reformulate the Escuro expression to reduce the resin concentration, which addressed the most obvious risk without requiring regulatory disclosure. The reformulation changed the aromatic character enough that long-standing buyers noticed; the company attributed the change to a seasonal botanical variation. Elisa Melo-Cardoso's journals remain in her possession. She currently works at a pharmacological research station in the Ran system and has not disclosed the journals' contents to any external party. + +--- + +## Gameplay Relevance + +Algarve Botanics is not a primary investigative target in most scenarios. It is a point of entry into the intersection of botanical product regulation, pharmaceutical governance, and the gap between what artisanal producers know about their products and what they disclose. + +The productive investigation threads are: + +- **Elisa Melo-Cardoso** — she is accessible, employed in the Ran system, and in possession of documentation she hasn't decided what to do with. A player who locates her and understands what the journals contain has a path to either a Salud Alliance referral (regulatory disclosure) or leverage with the Cardoso-Ferreira family (private). Her motivation for any of these paths would depend on the conversation. +- **The pharmacological compound** — Salud Alliance's formulary database would classify the relevant compound class if queried correctly. A player who knows what to look for in the regulatory framework and can access the Escuro bitter's reformulation records (the change is documented in the production archive) can establish the timeline between discovery and response. +- **The investor fund** — the preferred equity structure is in the private investment agreement. Accessing the agreement requires either the company's internal records or a source with knowledge of the arrangement. The terms of the buyout review clause are relevant to anyone interested in the company's future ownership trajectory. + +--- + +**Cross-References:** +- [Inhambane](../star-systems/GJ-54/index.md) — Headquarters system; botanical cultivation; founding Cardoso-Ferreira landholding +- [Salud Alliance](salud-alliance.md) — South_reach pharmaceutical distribution and formulary management; regulatory context for botanical compound classification + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/arclamp.md b/wiki/corporations/arclamp.md index 2c3a5274f..ca18179b7 100644 --- a/wiki/corporations/arclamp.md +++ b/wiki/corporations/arclamp.md @@ -1,24 +1,100 @@ --- title: "Arclamp" -description: "Arclamp — design and furniture manufacturer based in Groombridge, core" +description: "Groombridge furniture and interior design manufacturer — institutional and residential fittings for the core corridor's financial district, built for clients who regard their offices as statements of considered permanence" slug: arclamp category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [design_heritage, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, alcyone-tech, comptoir-lendel] --- # Arclamp -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Furniture and Interior Design Manufacturer +**Also Known As:** Arclamp Design **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; premium institutional market across the inner corridor secondary +**Headquarters:** Groombridge (GJ 380), Lendel district +**Classification:** Sub-Syndic design enterprise; institutional and residential supply -Arclamp is a design and furniture manufacturer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +The financial houses of Groombridge's Lendel district are not primarily offices. They are arguments. The argument a settlement house makes with its lobby flooring, its reception millwork, and the weight of its furniture — that argument is made before a word is spoken, and it persists after every meeting ends. Arclamp has been making this argument on behalf of Groombridge's institutional class for sixty years. + +The company manufactures furniture and interior fittings for the high end of the institutional market: financial houses, legal firms, settlement offices, and the larger commercial operations that want their working environment to communicate what they cannot say directly. Arclamp's product language is not fashion. It does not have a spring collection. Its chairs and tables and shelving systems are designed to look appropriate in twenty years, in thirty, in fifty — because its clients do not renovate on whims and do not want the contents of their offices dating them. The vocabulary is restrained, material-forward, and technically precise. A piece identified as Arclamp in a Lendel lobby communicates, to anyone who recognizes it, that the institution behind the lobby has been here long enough to have views about what lasts. + +--- + +## Origin + +Arclamp was established fifty-eight years ago by a cabinetmaker named Imre Vásárhelyi who had come to Groombridge as a skilled-labor transit worker and stayed when he found that the financial district's demand for quality fittings was being supplied by off-system manufacturers who shipped generic institutional furniture to a clientele that could pay for something specific. His initial workshop took commissions for custom millwork — bookshelves, reception counters, document storage systems — and built a reputation over fifteen years before the operation grew into a manufacturing concern. + +The transition from custom workshop to industrial manufacturer was managed carefully. Vásárhelyi's position was that industrial scale was compatible with institutional quality if the manufacturing process was designed around the client's actual need rather than around the manufacturer's production convenience. The current facility reflects this: manufacturing capacity that can produce at volume, but specification tolerances and quality control that would not embarrass a bespoke workshop. + +The company has remained under family control across two generations. The current managing director is Vásárhelyi's granddaughter, who trained as an architect before returning to Groombridge. + +--- + +## Operations + +**Product lines:** Seating — task, reception, and conference seating with long service-life upholstery and hardwood or metal frames specified for institutional use. Millwork systems — modular shelving, document storage, and counter installations designed to integrate with Lendel district office architecture. Table systems — conference, meeting, and workstation surfaces in materials specified to maintain appearance under decades of use. Custom commissions remain a minority but prestigious fraction of output. + +**Manufacturing:** Single facility in the Lendel district's manufacturing quarter. Eighty-three employees. The manufacturing floor uses CNC tooling for precision dimensioning but relies on skilled labor for assembly and finishing — the phase of production that determines whether the output looks built or manufactured. This distinction is real and it costs money. + +**Client relationships:** Predominantly long-term institutional accounts maintained through atelier relationships — Arclamp assigns a design advisor to each major account who tracks the client's office through fit-outs and refreshes over decades. This relationship model is expensive in staff time and is what justifies Arclamp's price position. + +**Distribution:** Groombridge and immediate adjacent systems. Physical products that require installation by skilled fitters do not travel twelve hops. The premium Arclamp commands in its local market reflects, in part, the absence of equivalent local competition. + +--- + +## Political Relationships + +**Groombridge Settlement House:** GSH is Arclamp's largest single institutional client and the relationship that underwrites the company's premium market positioning. The Settlement House's procurement committee reviews all furnishing suppliers against a certification and quality standard that Arclamp has met continuously for thirty years. A certification gap — such as one arising from the unreported bracket specification change — would expose Arclamp to procurement review at its most consequential client at the same time that it would expose GSH's procurement records to the question of whether its committee process adequately verified supplier certifications. + +**Alcyone Tech:** Both companies serve the Lendel district's financial institutions through long-term institutional relationships, and both are currently holding undisclosed product specification issues that the Lattice Commission has not been informed of. The parallel is not a formal relationship, but it means that any regulatory review triggered by one company's issue would create the environment in which the other's issue is more likely to surface. + +**Comptoir Lendel:** Arclamp and Comptoir Lendel share the same premium institutional client base in the Lendel district. The Comptoir's provenance-authenticated hospitality products and Arclamp's institutional furniture appear in the same offices and meeting rooms. Their shared clients expect both to deliver what their documentation claims. + +--- + +## What They Don't Talk About + +Arclamp's institutional seating line includes a load-bearing bracket system — the internal spine that determines how a chair ages under daily use. The bracket was independently certified under the Lattice Commission's commercial furniture standards eight years ago, certifying it for a service life of fifteen years under standard institutional load conditions. + +Eighteen months ago, Arclamp's materials procurement shifted the bracket's composite specification to a slightly lower-grade alloy — not the certified alloy, but within a tolerance band that Arclamp's internal engineering team assessed as functionally equivalent. The certification was not resubmitted. Arclamp's position is that the substitution falls within the manufacturing tolerances documented in the original certification filing and does not require resubmission. The Commission's position, if asked, would likely be that any specification change requires recertification review. + +The substitution reduced unit materials cost by nine percent. The seating line has been shipping with the new specification for fourteen months. No institutional client has been notified. The change does not appear in the product documentation available to purchasers. The service-life claim of fifteen years on current products is drawn from certification data that applies to the previous specification. + +--- + +## Gameplay Relevance + +Arclamp is ambient institutional texture for the Groombridge financial district — the chairs in the settlement house meeting rooms, the millwork in Meridian Risk's underwriting offices. It is not a primary investigation target but is a useful information layer for a player oriented toward supply chain and procurement irregularities. + +The certification gap is the investigative thread. A player with access to Arclamp's internal procurement records and the original certification filing can demonstrate the specification change and the decision not to resubmit. The institutions whose furniture carries the changed specification — which includes most of the Lendel district's major financial houses — have a material interest in knowing whether their office fittings will perform to the certified standard over the service life they were sold against. + +The design atelier relationship model also means that Arclamp's advisors have long-term visibility into client office configurations and renovation histories, making them incidental sources on the interior lives of Groombridge institutions. + +If the bracket substitution is exposed, Arclamp's liability picture is significant: every institutional client whose seating carries the modified specification has a claim against the fifteen-year service-life representation. Re-certification of the current specification — the straightforward remediation — would require Arclamp to disclose the substitution to clients as part of the certification process, which is the disclosure the company has been avoiding. The financial houses of the Lendel district regard their relationships with suppliers as matters of institutional trust; a demonstrated gap between Arclamp's certification claims and its product specification would damage the company's market position in the only market it operates in. The atelier model, its primary competitive advantage, depends entirely on clients believing that what Arclamp tells them is accurate. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters and primary market +- [Groombridge Settlement House](groombridge-settlement-house.md) — Primary institutional client +- [Alcyone Tech](alcyone-tech.md) — Shared institutional client base; Lendel district overlap +- [Comptoir Lendel](comptoir-lendel.md) — Adjacent Lendel district enterprise; overlapping premium clientele + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/ashwick-broadcasting.md b/wiki/corporations/ashwick-broadcasting.md index d8b84ce17..d608ebf1a 100644 --- a/wiki/corporations/ashwick-broadcasting.md +++ b/wiki/corporations/ashwick-broadcasting.md @@ -1,24 +1,96 @@ --- title: "Ashwick Broadcasting" -description: "Ashwick Broadcasting — cultural content producer based in Ashfield, north reach" +description: "North_reach documentary broadcaster at Ashfield (GJ 178) — eighty years of corridor documentaries, community portraiture, and editorial independence maintained in a through-route settlement that has never fully decided whether it is a waystation or a home" slug: ashwick-broadcasting category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Ashfield (GJ 178) tags: [cultural, north_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [adams-ford-publishing] --- # Ashwick Broadcasting -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Documentary and Cultural Broadcasting +**Also Known As:** Ashwick, the station **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Ashfield (GJ 178) +**Scope:** North_reach corridor primary; reach-wide documentary syndication secondary +**Headquarters:** Ashfield (GJ 178) — 2-aperture through_route, north_reach corridor +**Classification:** Sub-Syndic media enterprise; editorially independent -Ashwick Broadcasting is a cultural content producer operating out of Ashfield (GJ 178). Details to be expanded. +--- + +## Overview + +Ashfield is a community in the middle of a question it has been asking for two hundred years: is this a place people pass through, or a place people stay? The through-route topology processes corridor traffic in both directions. Residents have watched the debate from both sides — some of them arrived as transit passengers who stayed, some of them grew up watching transit passengers leave, some of them are still deciding. The question has never been formally resolved, and shows no sign of being resolved, and Ashfield's culture has organized itself around living with that ambiguity rather than settling it. + +Ashwick Broadcasting was founded in this environment eighty years ago by a documentary filmmaker who had spent the previous fifteen years making work about outer reach communities at the edges of organized settlement. She came to Ashfield for a three-month project and recognized in the system's unresolved identity question a story that did not have an ending yet. She stayed. The station was established in a converted ceramics drying facility on the outskirts of Ashfield's main settlement, and it has been broadcasting from there ever since. + +The work Ashwick produces is not entertainment in the sense that Meridian's major syndication networks mean the term. It is documentary in the tradition of communities telling their own stories before someone else tells those stories for them. The north reach corridor — warm and hazy under the ash-diffused light of an F6V star, volcanic, marked by the specific beauty of places that are hard to reach and harder to stay in — is Ashwick's primary subject, and eighty years of continuous coverage has produced an archive that is, for north reach corridor systems, the closest thing to institutional memory that is publicly accessible. + +--- + +## Origin + +The founding filmmaker, Nora Ashwick — who gave the station its name and who is, at ninety-four and non-Perpetual, still the editorial board's senior emeritus — had built her early career covering communities in the outer reach that the major syndicates considered too remote for commercial investment. She understood, from fifteen years of this work, that the major syndicates' disinterest in remote systems was not just a commercial calculation but an epistemological one: they did not know what to look for in communities that did not organize themselves around the same signals of significance that core systems did. Her solution was to be present for long enough to find out. + +Ashfield attracted her because the ceramics industry had done something unexpected: it had given a through-route settlement a product with reach-wide market presence, which meant the settlement was being seen from the outside in ways that required it to think about its own identity. The documentary she originally came to make — about the ceramics cooperative and its relationship to the system's transit character — became something larger when she realized the transit character was the ceramics character. The ash-blend clay that made Ashfield's ceramics distinctive was the same volcanic history that made the settlement uncertain about itself. She had found the story. + +The station was incorporated with a small endowment from the ceramics cooperative, which has maintained a formal relationship with Ashwick through two changes of cooperative leadership. The relationship is editorially independent — the cooperative does not have input on programming decisions — but the founding connection means Ashwick's coverage of the ceramics industry has a particular texture of access that other broadcasters covering the corridor do not have. + +--- + +## Operations + +**Production:** A permanent editorial team of eight at Ashfield, supplemented by deployed field crews. The editorial team is small; Ashwick has operated at roughly this size for forty years. The station does not grow. When Ashwick's distribution reach expands — as it has three times in the past eighty years — the expansion is handled through syndication agreements rather than personnel scaling, which preserves the editorial character by keeping the editorial operation small enough to be coherent. + +**Distribution:** North reach corridor primary distribution through direct terminal access at Ashfield, Singh's Landing, and adjacent systems. Reach-wide documentary syndication through a standing agreement with Adams & Ford Publishing Syndicate, which distributes Ashwick's long-form documentary content through its own Meridian channels. The relationship with Adams & Ford began as a single licensing arrangement forty years ago and has become a standing partnership; Adams & Ford's correspondents occasionally provide field material to Ashwick's documentary teams in exchange for regional archival access, and Ashwick's crews have provided verification support for several Guide entries covering north reach systems. + +**Revenue:** Syndication fees from the Adams & Ford agreement and from three independent distributor relationships in the north reach corridor. Minor Assembly cultural broadcasting grant — a categorization that Ashwick qualified for as a regional public interest broadcaster and that the Assembly has not reconsidered despite Ashwick's subsequent coverage of Assembly-adjacent institutions. The grant is a small fraction of total revenue. Ashwick's editorial board has discussed declining it and has not done so, on the grounds that declining it would make the institution's editorial independence look defensive. + +**Archive:** Eighty years of north reach documentary content, fully indexed and partially digitized. The archive is Ashwick's most significant institutional asset and its most operationally significant vulnerability — a fire or data event at the Ashfield facility would be irreplaceable. The cooperative's drying facility building has been renovated twice, and the archive storage is the reason the renovation specifications were what they were. + +--- + +## Political Relationships + +**Adams & Ford Publishing Syndicate:** The distribution partnership with Adams & Ford is Ashwick's most significant external relationship and its primary route to reach-wide audience. The arrangement began as a single licensing transaction and became, over twenty years, a standing editorial partnership — Adams & Ford's correspondents provide field material to Ashwick documentary teams in exchange for archival access to north reach footage that the Guide cannot produce itself. The two institutions share editorial independence as a core value, which is the reason the partnership has lasted and the reason each institution is careful not to depend on the other for decisions that should remain independent. + +**Ashfield Ceramics Collective:** The founding endowment relationship means the Ceramics Collective holds a nominal historical connection to Ashwick's institutional structure, but not editorial participation. The Collective's current leadership has not attempted to exercise influence over programming and has not been tested on the question of whether it would. The transit combine freight relationship — the Collective uses a combine-affiliated logistics subsidiary for ceramic export — is the reason that relationship has not been tested. + +**The Assembly broadcasting grant:** Ashwick qualified as a regional public-interest broadcaster under Assembly criteria that were written to support exactly the kind of corridor documentary work Ashwick produces. The grant is a minor fraction of operating revenue. The Assembly has not attempted to attach editorial conditions to the grant, and Ashwick has not declined it, because declining would signal a defensiveness that the editorial board considers counterproductive. The grant is a condition of the institution's life that both parties treat as unremarkable. + +--- + +## What They Don't Talk About + +Thirty-two months ago, Ashwick's lead investigative documentary journalist filed pre-production materials for a project covering a labor dispute at a belt mining operation in the outer north reach. The operation was run by a subsidiary of a transit combine with commercial relationships at several Assembly-adjacent institutions. The pre-production materials included footage of conditions at a rotating crew station that the combine had described, in Commission compliance filings, as compliant with residential standards. The footage showed conditions that were not what the filings described. + +The materials were reviewed by Ashwick's editorial board. The board concluded that the footage's evidentiary chain was insufficient for broadcast — specifically, that the combine's legal team would challenge the identification of the specific station and the filing status of the specific crew rotation. The lead journalist was reassigned to research leave pending further source development. The research leave has extended for thirty-two months. The pre-production materials are in Ashwick's archive under a project designation that does not appear in the active production roster. + +The lead journalist and the editorial board have not publicly disagreed. The ceramics cooperative, which is aware that Ashwick's relationship with the transit combine's regional logistics subsidiary includes freight services for ceramic exports, has not been involved in the editorial decision. Nora Ashwick, in her emeritus capacity, has not commented on this project publicly. She has commented on it privately to two members of the board, neither of whom has described those comments. + +--- + +## Gameplay Relevance + +Ashwick's archive is the primary investigative asset for any case touching the north reach corridor. Eighty years of documentary coverage means that most significant events in the corridor have Ashwick footage or research notes that predate any official record. Accessing the archive requires either a formal editorial relationship with the station or a route into the archival facility at Ashfield — which is a converted ceramics drying building that was built in a different era's security environment. + +The suppressed documentary thread is the direct investigative entry. The lead journalist is on research leave rather than terminated — she is still, technically, an Ashwick employee with archival access. She has a complete account of what the pre-production footage showed and a specific view of the editorial board's decision that differs from the board's official position. Finding her requires understanding Ashwick's deployment patterns, which the station does not publish. What she has to say, once found, is the kind of testimony that gives other evidence its interpretive frame. + +--- + +**Cross-References:** +- [Ashfield](../star-systems/GJ-178/index.md) — Headquarters system; volcanic ash plains; ceramics community +- [Adams & Ford Publishing Syndicate](adams-ford-publishing.md) — Reach-wide distribution partner; archival access exchange; forty-year standing relationship + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/atrium-culture.md b/wiki/corporations/atrium-culture.md index 8231caa73..6387db094 100644 --- a/wiki/corporations/atrium-culture.md +++ b/wiki/corporations/atrium-culture.md @@ -1,24 +1,101 @@ --- title: "Atrium Culture" -description: "Atrium Culture — cultural content producer based in Groombridge, core" +description: "Groombridge cultural arts foundation — runs Lendel's primary exhibition and performance venue, commissions work from artists across the Reach, and presents itself as a model of independent cultural patronage while being funded by the financial houses it claims to be independent from" slug: atrium-culture category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [cultural, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, the-registry] --- # Atrium Culture -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Arts Foundation and Cultural Institution +**Also Known As:** the Atrium, Atrium Foundation **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; reach-wide cultural programming secondary +**Headquarters:** Lendel (GJ 380) — 2-aperture loop_member, 2 hops from Gateway +**Classification:** Endowment-funded cultural institution; formally independent, structurally integrated -Atrium Culture is a cultural content producer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Lendel's cultural landscape is defined by the Atrium. This is not a modest claim; it is simply how the city has been organized for two hundred years. The Atrium runs the primary exhibition space, the major performance venue, and the annual cultural season that brings artists, musicians, and writers from across the Reach to a city that would otherwise have no particular reason to host them. A system whose exports are financial services and insurance does not, strictly speaking, need theatre. Groombridge has excellent theatre. + +The Atrium presents itself as an independent cultural foundation — which it is, in the sense that it has its own governance structure, its own staff, and its own programming decisions made without direct instruction from its funders. The Atrium does not describe itself as the cultural programming arm of Groombridge's financial district. No one at the Atrium would use that phrase. If asked what the institution is for, they would say: the advancement of art and cultural expression in the Reach. + +This is accurate. The institution genuinely produces serious, high-quality cultural programming. The artists it invites are accomplished. The exhibitions it mounts have critical standing. The performances it commissions have been received seriously in inner-corridor cultural discourse. The Atrium is not a facade. It is a real cultural institution that also serves a function its stated mission does not describe. + +--- + +## Origin + +The Atrium was established two hundred and twelve years ago, when Lendel had developed enough population, wealth, and civic self-consciousness to support cultural institutions beyond what the financial houses maintained privately for their own staff and clients. The founding endowment was contributed by seven of the major financial houses then operating in the district. The founding governance documents established the Atrium as an independent institution — separate legal entity, separate board, mandate to serve Lendel's cultural life broadly rather than the interests of any specific donor. + +The founding families who drafted these documents were not naive about what they were creating. An independent cultural institution in a city that manages the Reach's financial accounts will attract, if it is good, the attention of the international community that does business in that city. Groombridge's reputation is its principal commercial asset. An institution that makes Groombridge appear civilized — genuinely civilized, through the quality of what it produces rather than the extravagance of what it spends — is an asset to the financial houses whether the institution understands that or not. + +The founders understood it. The language in the founding governance documents does not mention it. + +--- + +## Operations + +**The venue:** The Atrium building in Lendel's center district is two centuries old, expanded and renovated twice, and operates three spaces: a main gallery for visual art exhibitions, a performance hall for music and theatre, and a smaller salon space for readings, lectures, and private cultural events. The building is architecturally significant for Lendel — one of the few structures whose design treats the city as a place worth building carefully for. + +**Programming:** The Atrium operates an annual season of exhibitions and performances, supplemented by a commissioning program that funds original work from artists across the Reach. The commissioning program is selective and well-funded; an Atrium commission is, in Reach cultural circles, a mark of serious standing. The selection process is managed by a curatorial board that includes Atrium professional staff, rotating artist representatives, and four seats permanently held by representatives of the endowment's founding institutions. + +**Endowment management:** The founding endowment has grown, through managed investment, to a scale that makes the Atrium financially independent from annual contributions. The institution does not need the financial houses to write checks every year. It needs the governance structure that gives those institutions four permanent curatorial board seats, which the original endowment documents established and which have never been successfully challenged. + +**Staff:** The Atrium employs thirty-eight full-time staff across programming, operations, and administration. The curatorial director position — the role with most influence over programming decisions — has been held by professional arts administrators for the last hundred years. The current director has held the role for nine years and has a widely respected track record of selecting serious work. + +--- + +## Political Relationships + +**The financial houses of Groombridge:** The Atrium's relationship with its endowment contributors is stable and largely invisible in day-to-day programming decisions. The four permanent curatorial board seats are the operative connection. The financial houses do not attend Atrium performances as a bloc or make visible displays of institutional patronage. The relationship is more ambient: Groombridge produces a population that attends the Atrium because it is good, and the financial houses have ensured it remains good without requiring credit for having done so. This is the preferred form of influence in a system where the appearance of independence is part of the product. + +**Artists and the wider cultural community:** The Atrium's external reputation is strong. An Atrium commission represents serious institutional investment in an artist's work, and the commissioning record over two centuries includes names that now have reach-wide standing. The artists who have shown at the Atrium do not, as a population, believe it is a captured institution. Most of them are correct about their own cases — the selection process is genuinely quality-driven — and none of them have access to the governance records that would allow them to evaluate the cases where it was not. + +**The Lattice Commission:** No formal relationship. The Atrium is a cultural institution operating below any threshold that would trigger Commission oversight. This absence of regulatory relationship is part of what makes the institutional alignment framework sustainable — there is no external body conducting curatorial audits, and the internal governance records are maintained as private institutional documents. + +--- + +## What They Don't Talk About + +The curatorial board's assessment framework has two layers. The first layer — artistic quality, cultural significance, Reach-wide representation, critical standing — is what the Atrium describes publicly when explaining how works and artists are selected. This layer is real and consistently applied. + +The second layer has no formal name. Within the curatorial board it is described, in the notes of internal meetings that have existed in archive form for over a century, as "institutional alignment." The concept does not appear in any public document. It operates as a secondary filter on artist selection: works and artists whose practice is explicitly politically destabilizing, or who have made prominent public statements on matters that touch directly on Groombridge's financial infrastructure and its governance, are noted as poor fits for Atrium programming. The reasoning recorded in board minutes is always framed in terms of "artistic fit" or "season coherence." + +Approximately seven artists have been declined Atrium consideration in the past thirty years on grounds that, in board meeting records, attribute the decision primarily to institutional alignment concerns. In three of these cases, the curatorial staff had ranked the artist's work highly before the board review. In two of these cases, the artist had publicly criticized the Lattice Commission's financial certification framework. + +The artists who were selected do not know the second filter existed. Neither do most of the Atrium's staff. The curatorial director knows. She has served on the board long enough to have encountered the concept explicitly. She has not contested it and has not described it publicly. She considers it a minor distortion in an institution she believes is genuinely doing important work. + +--- + +## Gameplay Relevance + +The Atrium is ambient cultural infrastructure — the kind of institution that appears in environmental setting detail as a mark of Lendel's civic character and as a backdrop for interactions among the financial class that moves through Groombridge. A long-stay commercial guest at an Altair hotel might have attended an Atrium performance the previous season; a Registry analyst might have a curatorial board contact. + +The institutional alignment thread is an investigative entry point for players working on questions about how Groombridge's financial infrastructure manages its cultural reputation. The evidence trail is in board meeting archives — not digital records, but the physical archive of Atrium governance documents maintained on-site, which the Atrium regards as an internal institutional record rather than a public document. Accessing these archives requires either a formal governance relationship with the institution or a physical route into the archive space. + +The curatorial director is the most direct source. She is not hostile to a careful investigator and is not a person who is comfortable with the second filter having existed for as long as it has. She will not volunteer information. Asked directly about the selection framework, asked about the archive, asked about specific artists who were not selected, she will answer — not fully, not without cost, but differently than someone who has nothing to hide. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; institutional context +- [Groombridge Settlement House](groombridge-settlement-house.md) — Founding endowment contributor; permanent board seats +- [The Registry](the-registry.md) — Endowment contributor; institutional adjacency + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/baektu-mining-alliance.md b/wiki/corporations/baektu-mining-alliance.md index 9263565b4..e065aa696 100644 --- a/wiki/corporations/baektu-mining-alliance.md +++ b/wiki/corporations/baektu-mining-alliance.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Isivikelo (GJ 1111) tags: [metallic_ore, rare_minerals, refined_metals, mining, south_reach, korean, assembly] decision_refs: [D-175] -cross_refs: [] +cross_refs: [stalownia-kowalski, umoja-freight, durban-engineering] --- # Baektu Mining Alliance diff --git a/wiki/corporations/baia-fundo-productions.md b/wiki/corporations/baia-fundo-productions.md index 6177ad5ef..159b11af3 100644 --- a/wiki/corporations/baia-fundo-productions.md +++ b/wiki/corporations/baia-fundo-productions.md @@ -1,24 +1,98 @@ --- title: "Baia Fundo Productions" -description: "Baia Fundo Productions — cultural content producer based in Confluência, south reach" +description: "Confluência documentary and dramatic content studio — south reach cultural production with an editorial voice shaped by the coastal Brazilian heritage communities of the lower corridor" slug: baia-fundo-productions category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Confluência (GJ 566B) tags: [cultural, south_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [open-corridor-stream, quebrada-cultural, sertanejo-design] --- # Baia Fundo Productions -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Documentary and Dramatic Content Studio +**Also Known As:** Baia Fundo, the Studio **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Confluência (GJ 566B) +**Scope:** South reach primary; inward corridor documentary distribution secondary +**Headquarters:** Confluência (GJ 566B) — south reach, 5 hops from Gateway +**Classification:** Sub-Syndic independent studio; original production and catalogue licensing -Baia Fundo Productions is a cultural content producer operating out of Confluência (GJ 566B). Details to be expanded. +--- + +## Overview + +The south reach's cultural production landscape is uneven. The entertainment volume comes from inward platforms and high-output studios near Gateway. What the outer systems produce, when they produce it themselves, tends to be different in register — slower, more observational, built from the textures of specific places rather than the genre templates that travel easily across distances. Baia Fundo Productions occupies the serious end of south reach original content: documentary work, dramatic series rooted in corridor history, and archive projects that preserve cultural material from communities that did not expect their traditions to become interesting to anyone farther inward. + +The studio does not compete with inward volume production. Its documentaries do not arrive with promotional campaigns and they do not open simultaneously across the corridor. They are made at the pace of their subjects, released to audiences who seek them out, and licensed to inward platforms years after production when a distribution deal can be arranged without surrendering editorial control. This is a deliberate position. Baia Fundo's reputation — modest in reach, specific in regard — is exactly what its team set out to build and has no interest in trading for scale. + +--- + +## Origin + +Baia Fundo was founded twenty-two years ago by a documentary producer named Catarina Salomão-Feijó who had spent a decade working for an inward production company commissioning south reach content. Her experience of that arrangement had given her a detailed understanding of what inward platforms wanted from outer reach material — the documentary equivalent of a travel piece, local color made legible for audiences who would never visit — and a clear sense of what it cost to produce to that specification. The cost was editorial: the stories that made compelling content for an inward audience were not always the stories the communities in them wanted told. + +Salomão-Feijó's founding principle was that content made about the south reach should be made by people embedded in it, for an audience that included the people it depicted, not merely as subjects but as viewers. The Studio's first production — a three-part documentary about the fishing cooperatives of Confluência's coastal settlements — was distributed locally before it was offered outward. The approach was not commercially optimal. It established what Baia Fundo was. + +--- + +## Operations + +**Production:** The studio maintains a permanent production staff of fourteen, supplemented by freelance crews drawn from south reach systems. It produces four to six original works per year, ranging from single-feature documentaries to three-to-four-episode dramatic series. The production pace is slow by industry metrics. The studio does not commission projects it cannot complete without shortcuts. + +**Archive work:** Baia Fundo holds a significant and growing archive of south reach cultural documentation — oral history recordings, community event footage, dialect recordings, and heritage material gathered during production that did not make final cuts. This archive is licensed to academic institutions and, selectively, to inward platforms for cultural context packages. Archive licensing has become a stable secondary revenue stream. + +**Distribution:** Primary south reach corridor through local media networks. Inward distribution arranged through licensing agreements negotiated after production is complete — Baia Fundo does not pre-sell production to inward platforms because pre-sale structures the editorial result. The studio accepts the commercial disadvantage of this position. + +**Catalogue:** Twenty-seven completed works spanning documentary and dramatic formats. The catalogue includes several pieces that have been adopted into regional education curricula, which the studio considers a more meaningful outcome than most commercial metrics. + +--- + +## Political Relationships + +**Open Corridor Stream:** The dominant inward distribution platform for outer reach content. Baia Fundo has a catalogue licensing arrangement with OCS that covers seventeen titles. The arrangement has been renegotiated twice, with Baia Fundo consistently accepting below-market licensing rates in exchange for retaining creative attribution standards and the right to direct viewers to its own south reach distribution channel. + +**Confluência cultural institutions:** The studio has formal partnerships with two community cultural organizations and the Confluência arts council. These relationships provide production support, community access, and the institutional credibility that allows Baia Fundo's crews to document subjects that would not otherwise engage with a production company. + +**Quebrada Cultural:** Baia Fundo's closest peer in the south reach's independent production sector. The two studios have co-produced two projects over the past decade and maintain a referral relationship for commissions that don't fit one studio's format but might fit the other's. Quebrada Cultural tends toward performative and installation work; Baia Fundo toward documentary and drama. The mutual referral functions as informal capacity sharing between organizations too small to turn down commissions easily. + +--- + +## What They Don't Talk About + +Baia Fundo's archive licensing revenue has grown to approximately 35% of annual income over the past six years. A portion of this archive — specifically, oral history recordings made during the studio's first decade — was gathered under community agreements that specified the material would not be commercialized without renewed consent from the originating communities. + +The studio's legal position, developed when the first archive licensing deal was structured, is that the renewal-consent clause applies to primary broadcast use, not to contextual or educational licensing. The communities whose material is in the archive were not consulted when this interpretation was adopted. Several of the originating communities are no longer organizationally intact; the individuals who signed the original agreements have in many cases died. Baia Fundo's archive manager is aware that three of the communities that are intact would likely object to the current licensing scope if asked. + +They have not been asked. + +--- + +## Gameplay Relevance + +Baia Fundo Productions is a cultural layer presence in the south reach — their completed works appear as viewable content in common areas, their production crews are recognizable on Confluência's docks, and their archive represents a substantial documentary record of south reach community life over the past two decades. + +The archive consent question is the primary investigative thread. A player who accesses Baia Fundo's original community agreements and compares them to the current licensing catalogue will find the gap between what was permitted and what is being licensed. The communities whose material is affected vary in their ability to act on this information; the drama is in what happens when they learn it. + +The studio's documentary archive is also independently valuable — as a record of communities, supply chains, and political relationships from the period it covers, it contains background material that appears nowhere else. + +The archive's investigative value is two-directional: it documents what communities looked like before significant external changes, making it useful for tracing what changed and why. Several communities visible in Baia Fundo's early decade footage — fishing cooperatives, small-scale agricultural operations, heritage craft communities — have since contracted or dissolved under economic pressure. The footage predates the pressure and documents the organizational and social structures that existed before it arrived. For a player tracing economic or political changes across south reach communities, this is primary source material with no equivalent elsewhere in the corridor. + +--- + +**Cross-References:** +- [Confluência](../star-systems/GJ-566B/index.md) — Headquarters; primary production context +- [Open Corridor Stream](open-corridor-stream.md) — Inward distribution partner; catalogue licensing +- [Quebrada Cultural](quebrada-cultural.md) — South reach cultural peer; occasional co-production +- [Sertanejo Design](sertanejo-design.md) — Adjacent south reach creative enterprise; shared client communities + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/bavarian-craft.md b/wiki/corporations/bavarian-craft.md index 67d55a314..fe88c5e58 100644 --- a/wiki/corporations/bavarian-craft.md +++ b/wiki/corporations/bavarian-craft.md @@ -1,24 +1,98 @@ --- title: "Bavarian Craft" -description: "Bavarian Craft — heritage craft manufacturer based in Bergtor, west reach" +description: "Bergtor heritage woodcraft and traditional manufacturing concern — hand-finished furniture, decorative objects, and architectural woodwork produced under a guild certification that the company's actual production model only partially reflects" slug: bavarian-craft category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Bergtor (GJ 505A) tags: [heritage_craft, west_reach, mark, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [bergkraft-antriebswerke, steinbach-furniture, gronnmark-consumer] --- # Bavarian Craft -**Type:** Corporation — Heritage Craft Manufacturer +**Type:** Corporation — Heritage Woodcraft and Artisan Manufacturing +**Also Known As:** the Craft, Bayerisches Handwerk (formal trade registration) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Bergtor (GJ 505A) +**Scope:** West reach primary; inward corridor premium heritage market secondary +**Headquarters:** Bergtor (GJ 505A) — west reach, 4 hops from Gateway +**Classification:** Sub-Syndic heritage enterprise; guild-certified artisan producer -Bavarian Craft is a heritage craft manufacturer operating out of Bergtor (GJ 505A). Details to be expanded. +--- + +## Overview + +There is a specific class of object that Bavarian Craft produces — a table, a cabinet, a carved door frame — that occupies a position in the west reach's interior culture that no mass-produced equivalent can replace. The company's public identity rests on this: four centuries of Bavarian craft tradition carried intact through corridor transit, preserved at Bergtor, and expressed in objects made by skilled hands using techniques that predate industrial manufacturing. The furniture in the Confluent town hall is Bavarian Craft. The reception desk at the Bergtor Guild Exchange is Bavarian Craft. The certificate of guild membership issued to a new master carpenter is printed on paper Bavarian Craft made. + +This identity is not fabricated. The techniques are real, the master craftspeople are genuinely qualified, and the objects produced to the company's full-process specification are exactly what the branding claims. The problem is that the full-process specification applies to a fraction of what Bavarian Craft ships. + +--- + +## Origin + +The founding families arrived at Bergtor with skills, tools, and an organizational structure — the guild — that they considered as essential to transport as the tools themselves. The guild system that Bavarian Craft descends from was reconstituted at Bergtor within fifteen years of the first settlement, with formal membership requirements, apprenticeship standards, and a certification process for finished works. For two centuries this structure governed everything the local craftspeople produced. + +Industrialization came in two waves. The first, a century and a half ago, was modest — power tools, improved kilns, manufactured adhesives that simplified joinery. The guild absorbed these as efficiency enhancements to traditional process and maintained the certification standards. The second wave, forty years ago, was structural: a factory facility with CNC routing, automated finishing, and a production capacity that made the guild workshop look like a hobby operation. Bavarian Craft built the factory. The guild certification persisted. + +--- + +## Operations + +**Workshop tier:** Forty-two guild-certified craftspeople working in the original workshop facility. Full traditional process: hand-joinery, hand-finish, individual certification stamps. Produces approximately 12% of unit volume. Supplies the collector market, major institutional commissions, and the export pieces that appear in inward premium showrooms. Lead times are measured in months. + +**Factory tier:** The manufacturing facility outside central Bergtor. Automated routing, machine finishing, assembly line with skilled oversight. Produces 88% of unit volume. Employs ninety people in production roles, the majority of whom are not guild-certified. Ships the residential and commercial contract market, catalogue retail, and the volume accounts that represent Bavarian Craft's actual revenue base. + +**Certification:** Guild certification marks appear on workshop-tier products and select factory-tier products that receive final hand-finishing and inspection by a guild craftsperson. The definition of "guild-finished" has been progressively expanded over two decades to include products where the craftsperson's involvement is limited to inspection and stamp application rather than any fabrication. + +**Distribution:** West reach residential, commercial, and institutional markets. Inward distribution through heritage furniture retailers who position the brand as authentic Bergtor craft. The retailers' marketing materials describe products as "handcrafted in the Bavarian tradition" without distinguishing tiers. + +--- + +## Political Relationships + +**Bergkraft Antriebswerke:** Bavarian Craft and Bergkraft share Bergtor's industrial district and the same set of local governance relationships. Both companies have contributed to the district's employment base in ways that give them mutual interest in the regulatory environment remaining stable. Neither company benefits from heightened regulatory scrutiny of Bergtor manufacturing, and both are aware of this alignment, though it has not been formalized. + +**Steinbach Furniture:** Steinbach is Bavarian Craft's most direct west reach competitor in the heritage furniture market and the company most invested in the guild certification system retaining its meaning. If Bavarian Craft's bylaw interpretation were to become public, Steinbach would be positioned to challenge it — either through the guild governance process or through the legal authority. The competitive dynamics between the two companies have constrained Bavarian Craft's willingness to seek any formal re-clarification of the bylaw, since any clarification process would require disclosure to the same governance board where Steinbach holds a seat. + +**Gronnmark Consumer:** Gronnmark's distribution network carries some Bavarian Craft catalogue items in the west reach mass market. The arrangement is commercially useful for Bavarian Craft's volume line but creates a brand positioning tension — the same items sold in Gronnmark's channel at mass-market price points appear near products whose marketing emphasizes handcraft provenance. Neither company has addressed this tension publicly. + +--- + +## What They Don't Talk About + +The guild certification that Bavarian Craft's marketing centers on formally requires that certified products involve a guild master craftsperson in "substantive production process" — a phrase from the original guild charter that was intended to mean fabrication. Twenty years ago, the guild's governance board approved a bylaw interpretation that extended "substantive" to include final quality inspection: a guild master who examines a factory-produced piece, certifies it meets quality standards, and applies the certification stamp is considered to have participated in substantive process. + +This interpretation was not published. It appears in a board resolution document archived in the guild's records at Bergtor but is not referenced in the certification standards document that clients, retailers, and regulatory bodies rely on when assessing what a certification stamp means. The Commission's heritage craft standards accept guild certification as evidence of artisan production; those standards reference the guild's published certification requirements, not the bylaw resolution. + +Products carrying Bavarian Craft's guild mark that were produced entirely by machine are being sold as artisan-certified goods to buyers who understand that certification to mean something it now technically does not. The legal team's assessment is that the bylaw interpretation is valid under guild governance rules. The question of whether it is valid under consumer representation law has not been tested. + +--- + +## Gameplay Relevance + +Bavarian Craft is ambient cultural presence in west reach systems — recognizable furniture in institutional and residential settings, guild marks visible on publicly accessible objects in Bergtor and Confluent. A player with an eye for manufactured detail may notice that some guild-marked pieces have consistency inconsistent with hand manufacture. + +The certification interpretation is the investigative thread. The board resolution document exists in the guild's archives. The gap between what the certification is understood to mean — by retailers, by the Lattice Commission, by buyers — and what the bylaw interpretation allows is the substance of a consumer representation case that no one has brought because no one outside the guild's governance board knows the bylaw exists. + +Bavarian Craft's factory facility also represents a significant portion of Bergtor's manufacturing employment and economic activity, which gives the company political relationships with local governance that complicate straightforward regulatory challenge. + +The political complexity matters for investigative framing. A consumer representation complaint against Bavarian Craft lands at the west reach legal authority and, if escalated, at the Lattice Commission's heritage certification standards body. Both bodies have institutional reasons to prefer that the case not require the Commission to reexamine what guild certification means across the heritage craft sector — because Bavarian Craft is not the only heritage craft producer whose certification practices have evolved under similar pressures. Exposing the bylaw interpretation opens a question that extends well beyond one company at Bergtor. A player building this case should expect institutional friction proportional to the breadth of what the case implies, not just to Bavarian Craft's individual exposure. + +--- + +**Cross-References:** +- [Bergtor](../star-systems/GJ-505A/index.md) — Headquarters; guild seat; manufacturing facility location +- [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) — Bergtor peer enterprise; shared regional industrial context +- [Steinbach Furniture](steinbach-furniture.md) — West reach furniture peer; competing market position +- [Gronnmark Consumer](gronnmark-consumer.md) — West reach consumer goods; distribution channel overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/bergkraft-antriebswerke.md b/wiki/corporations/bergkraft-antriebswerke.md index 5f8dc5eb7..ea84de4ea 100644 --- a/wiki/corporations/bergkraft-antriebswerke.md +++ b/wiki/corporations/bergkraft-antriebswerke.md @@ -1,24 +1,100 @@ --- title: "Bergkraft Antriebswerke" -description: "Bergkraft Antriebswerke — precision technology manufacturer based in Bergtor, west reach" +description: "Bergtor precision drive and propulsion systems manufacturer — industrial and transit vehicle drive units certified for west reach operational conditions, with a certification history that contains one unaddressed discrepancy" slug: bergkraft-antriebswerke category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Bergtor (GJ 505A) tags: [drive_cores, tech_premium, west_reach, mark, electronics] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [bavarian-craft, rheintal-systems, durban-engineering] --- # Bergkraft Antriebswerke -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Drive and Propulsion Systems Manufacturer +**Also Known As:** Bergkraft, BKA **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Bergtor (GJ 505A) +**Scope:** West reach primary; inward industrial procurement secondary +**Headquarters:** Bergtor (GJ 505A) — west reach, 4 hops from Gateway +**Classification:** Sub-Syndic precision engineering enterprise; industrial supply and transit systems -Bergkraft Antriebswerke is a precision technology manufacturer operating out of Bergtor (GJ 505A). Details to be expanded. +--- + +## Overview + +Transit between systems at the outer reach runs on drive units that have to perform reliably across temperature extremes, maintenance intervals measured in months rather than days, and operator skill levels that range from expert to barely adequate. Bergkraft Antriebswerke makes drive systems for this environment — not the precision instruments of the core corridor's advanced manufacturing, but the robust, serviceable, repairable drive units that keep industrial vehicles, atmospheric transports, and light cargo carriers moving across the west reach's varied terrain and variable-quality maintenance infrastructure. + +The company's reputation is built on longevity. A Bergkraft drive unit running in the mining operations at Freiholt, maintained to minimum service intervals, will still be producing rated output after twelve years. This is what the mining companies pay for, and Bergkraft's pricing reflects it. The company does not compete on cost with inward commodity drive suppliers. It competes on the expected life-cycle cost of running equipment in conditions where inward commodity units fail early and replacement logistics are expensive. + +--- + +## Origin + +Bergkraft was established sixty years ago by a mechanical engineer named Ernst Hörmann who had come to Bergtor as a maintenance contractor for the early-era mining operations and concluded that the drive systems being imported from inward suppliers were not designed for the environmental conditions of the outer reach. The imported units met their rated specifications under test conditions that bore little resemblance to a Bergtor mine. + +Hörmann's founding insight was environmental specificity: drive units designed and tested for the actual conditions of west reach industrial use — temperature cycling, particulate contamination, extended service intervals, rough-terrain vibration loads — would perform better and last longer than general-purpose designs certified against laboratory conditions. He was right, and the mining companies that converted to Bergkraft units during the first decade documented the performance difference in ways that made Bergkraft's market position very difficult to displace. + +The company has been the dominant industrial drive supplier for Bergtor and adjacent systems for forty years. + +--- + +## Operations + +**Product lines:** Industrial drive units for mining vehicles, surface transports, and materials-handling equipment. Atmospheric propulsion systems for light cargo carriers and personnel transports. Auxiliary power units for fixed installations. Custom drive configurations for engineering applications that standard catalogue units don't fit. The product range is not wide; it is deep in the areas Bergkraft actually understands. + +**Manufacturing:** Single integrated facility at Bergtor. One hundred and twelve employees, of whom approximately forty are skilled engineering staff. The facility manufactures to order for most industrial clients — batch production for the catalogue lines, custom engineering for the commission work. Lead times are longer than inward commodity suppliers; clients accept this because the product quality is not available on short lead times from anyone else. + +**Certification:** Lattice Commission industrial drive certification for all product lines, renewed on the standard five-year cycle. BKA's certification record is clean and its certification documentation is maintained with a thoroughness that reflects the company's understanding that its market position depends on this record. + +**Service network:** Small but functional. BKA maintains service engineers at three west reach systems and a parts depot at Confluent. The service network is not a profit center; it is a client retention mechanism. Mining operations that know a BKA service engineer can reach them within forty-eight hours buy BKA. + +--- + +## Political Relationships + +**Bavarian Craft:** Both companies operate from Bergtor's industrial district and share local governance relationships and political exposure. Bavarian Craft's guild certification situation and Bergkraft's Commission certification discrepancy are structurally similar — both involve external representations that internal documentation does not fully support. Neither company benefits from the other's situation becoming visible. + +**Rheintal Systems:** Rheintal is Bergkraft's primary west reach competitor for industrial drive systems and the company most positioned to benefit from a Bergkraft certification finding. Rheintal has been unable to displace Bergkraft from its established mining accounts despite comparable pricing, partly because the switching cost for a certified drive system is high. A certification challenge requiring resubmission of the Series 9 would create a re-evaluation window that Rheintal is positioned to exploit. + +**Durban Engineering:** Durban supplies industrial engineering systems in adjacent application areas and holds an occasional supply relationship with Bergkraft for specialized components. The relationship is arms-length commercial but gives Durban's procurement team more visibility into Bergkraft's component sourcing than a purely competitive observer would have. + +--- + +## What They Don't Talk About + +The flagship Series 9 industrial drive unit — Bergkraft's highest-volume product line and the unit that underwrites most of its institutional mining contracts — was certified five years ago using a test fixture batch that was machined to tolerances tighter than the documented manufacturing specification. The test batch met certification parameters. The production run, manufactured to the documented spec, runs measurably closer to the performance limits that the certification test was supposed to demonstrate were not being approached. + +Bergkraft's engineering team identified the fixture discrepancy during the post-certification manufacturing audit. The internal report concluded that the production specification was within the tolerance band of the original design intent and that no individual unit would fail in a way that triggered recall. What the report did not say — but the senior engineering staff discussed — is that a fleet of Series 9 units operating under sustained high-load conditions, over the twelve-year service life the product is sold against, would show performance degradation in the final three years that the certification tests did not predict. + +The decision not to resubmit the certification — which would require disclosing the fixture discrepancy to the Commission — was made by BKA's technical board. The Series 9 continues to be sold with a twelve-year performance claim that was documented against a test batch the production line cannot replicate. + +--- + +## Gameplay Relevance + +Bergkraft Antriebswerke is industrial background infrastructure for the west reach — its drive units are in the mining equipment, the cargo haulers, the atmospheric transports. It is not a primary investigation target unless the player is working in the industrial supply or corporate liability space. + +The Series 9 certification discrepancy is the investigative thread. The fixture batch and its divergence from production specification are documented in Bergkraft's internal engineering archive. The Commission's certification file contains the test parameters but not the fixture tolerances — the discrepancy can only be demonstrated by comparing the internal engineering documentation against the certification submission. A player who obtains both has found evidence of a product that was certified to a standard its production run does not meet. + +The affected fleet represents a significant portion of the west reach's mining operation transport capacity. Mining companies whose operational plans assume twelve-year drive life have scheduled maintenance and replacement timelines around that claim. + +The consequence of exposure is triangular: Bergkraft faces certification resubmission requirements and potential recall; the mining operations face equipment replacement on a timeline that their capital planning did not account for; and the Commission faces questions about whether its certification audit process caught or should have caught the fixture discrepancy before the product line shipped. The Commission's interest in the last question gives it a reason to manage the outcome carefully rather than straightforwardly — a factor that shapes how a player might use the evidence. The most direct leverage is not the Commission but the mining companies themselves: a fleet operator who can document early performance degradation against the certified twelve-year claim has a direct claim against BKA that does not require a regulatory finding first. + +--- + +**Cross-References:** +- [Bergtor](../star-systems/GJ-505A/index.md) — Headquarters; manufacturing facility; primary market +- [Bavarian Craft](bavarian-craft.md) — Bergtor peer enterprise; shared industrial district +- [Rheintal Systems](rheintal-systems.md) — West reach technical peer; industrial market overlap +- [Durban Engineering](durban-engineering.md) — Industrial peer; competing drive supply for specific applications + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/brindlewood-honey.md b/wiki/corporations/brindlewood-honey.md index b40a838b5..8a4d29b18 100644 --- a/wiki/corporations/brindlewood-honey.md +++ b/wiki/corporations/brindlewood-honey.md @@ -1,24 +1,102 @@ --- title: "Brindlewood Honey" -description: "Brindlewood Honey — regional specialty producer based in Ashfield, north reach" +description: "Ashfield specialty honey producer — a scarcity-class rare terroir product whose provenance claims are carefully worded enough to survive legal challenge while misleading the buyers who pay for them" slug: brindlewood-honey category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Ashfield (GJ 178) tags: [terroir, north_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [calloway-distillery, highland-cooperative, comptoir-lendel] --- # Brindlewood Honey **Type:** Corporation — Regional Specialty Producer +**Also Known As:** Brindlewood **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Ashfield (GJ 178) +**Scope:** North reach primary; inward corridor luxury food market secondary +**Headquarters:** Ashfield (GJ 178) — north reach, 5 hops from Gateway +**Classification:** Sub-Syndic artisan producer; scarcity-class rare terroir product -Brindlewood Honey is a regional specialty producer operating out of Ashfield (GJ 178). Details to be expanded. +--- + +## Overview + +The honey that Brindlewood produces is genuinely exceptional. The company does not need to fabricate its product's quality; the quality is real, the terroir is specific to Ashfield's particular combination of native flowering species and cold-summer climate, and the bees have been working the same high-meadow geography for over two centuries. Honey from Brindlewood's hives tastes unlike anything produced anywhere else in the corridor because the conditions that produce it cannot be replicated. This is not marketing language. Agronomists have tried; the attempts produce honey that is technically similar and categorically distinct. + +What Brindlewood has added to this genuine distinctiveness is a provenance story built around wildness — the idea that what distinguishes the product is not merely terroir but source: bees living free in Ashfield's native meadows, foraging without managed guidance on a landscape that settlement has not significantly modified. The story is compelling. It is the version buyers in inward premium markets want to hear when they purchase a jar that costs more than a day's transit meal. + +It is not quite accurate. + +--- + +## Origin + +Brindlewood's founding family arrived at Ashfield 240 years ago in an agricultural settler cohort that brought multiple productive enterprises. Beekeeping was one of many. For the first century, the honey operation was a local commodity — sold at Ashfield's markets, occasionally traded at Braemar, not distinguished from other quality local food production. + +The transformation into a premium brand began ninety years ago under a family member named Miriam Oakes-Callander, who took a consignment of honey to a Tractus-corridor luxury food exhibition and discovered that inward buyers responded to Ashfield honey as a novelty of considerable appeal. She returned with orders and a marketing problem: how to produce enough to meet demand without losing the qualities that created the demand. Her solution was careful management presented as natural process. The beekeeping operation became scientific. The marketing became poetic. + +--- + +## Operations + +**Production:** Brindlewood manages forty-seven active hive colonies across three sites in Ashfield's high meadow geography. The colonies are carefully maintained — queen replacement, disease management, nutritional supplementation during low-forage seasons — as any professionally managed apiary would be. Annual production is approximately 2,400 kilograms. This is intentionally constrained; production capacity could be expanded but Brindlewood has chosen not to, because scarcity supports price. + +**Processing:** Small facility at the Ashfield homestead. Extraction, filtering to a specific standard, and bottling conducted on-site with a staff of seven. The process is genuinely artisanal at this scale — the small operation is not a marketing conceit. + +**Distribution:** Premium food retailers at inward systems, selected by the company based on whether their positioning matches Brindlewood's brand requirements. Provenance documentation accompanies each shipment: origin certification, lot number, hive site identifier. The documentation is real; the documentation does not describe management practices. + +**Pricing:** Top tier of the corridor luxury food market. A single 250g jar at a Lendel specialty retailer is priced above what an Ashfield agricultural worker earns in a day. This price is supported by scarcity, terroir authenticity, and the provenance story. + +--- + +## Political Relationships + +**Calloway Distillery:** Calloway single malt and Brindlewood honey occupy the same inward premium market tier and travel the same north reach corridor export routes. Both are terroir-dependent products whose distinctiveness cannot be replicated off-system; both command prices that reflect this. The two operations are aware of each other as corridor partners rather than competitors — appearances together in inward premium retail contexts reinforce both brands. The parallel in their provenance-management approaches, if either were exposed, would invite comparison. + +**Highland Cooperative:** Both operations are at the outer north reach and both face the strategic question of how to grow revenue from scarcity products without the growth undermining the scarcity. Highland Cooperative members observe Brindlewood's pricing model closely; several have consulted informally on how to position their own specialty products against the Brindlewood benchmark. The relationship is collegial rather than commercial. + +**Comptoir Lendel:** Comptoir Lendel is Brindlewood's primary Groombridge retail relationship and the source of the provenance certificates that accompany honey sold in the Lendel premium market. The Comptoir's certification process — which charges for documentation without verifying the underlying claims — is the same process that certifies Brindlewood's "wild-harvested" tier. If the Comptoir's authentication model is challenged, the certificates attached to Brindlewood's premium products become part of the question. + +--- + +## What They Don't Talk About + +Brindlewood's "wild-harvested" premium tier — the designation that distinguishes its highest-priced jars from the standard production — was genuine in the company's early decades. For forty-three years, it has not been. + +The high meadow colonies that produce the premium tier are managed colonies operating in natural habitat. Brindlewood's labeling uses language that has been carefully maintained by its legal advisors to describe this accurately: "harvested from colonies foraging in Ashfield's native meadows" rather than "wild-harvested" — the latter phrase would require certification of truly wild colony source that Brindlewood cannot provide. The distinction between a managed colony in natural surroundings and a genuinely wild colony is one that the legal team has defined in Brindlewood's favor. + +The inward retailers who stock the premium tier use the phrase "wild-harvested" in their own shelf copy and promotional materials. Brindlewood does not use the phrase itself. It does not correct the retailers. When the company provides marketing support materials to inward accounts, the language is the careful version; the promotional context the retailers create around that language is the buyers' context, not Brindlewood's. + +The distinction exists on paper. No buyer paying the premium price understands themselves to be purchasing managed-colony honey. + +--- + +## Gameplay Relevance + +Brindlewood Honey is luxury goods texture in the premium food market — its jars appear in high-end residences, private dining rooms, and specialty retail contexts across the inner and mid corridor. The product is not significant in terms of volume; it is significant in terms of what its price implies. + +The labeling gap is the investigative thread. A player who obtains Brindlewood's original marketing materials, compares them to current retailer copy, and traces the company's legal correspondence around the "wild-harvested" language will find a record of a deliberate decision to maintain a false impression through careful omission. The retailers are complicit in effect but not in design — they received materials that didn't use the phrase and adopted it independently. This complicates the liability picture. + +The scarcity management — the decision to constrain production to maintain price — is a secondary thread with connections to Ashfield's agricultural governance and the economics of north reach specialty food production. + +The most consequential exposure scenario is not a consumer complaint but a retailer complaint. The inward retailers who have used "wild-harvested" in their own promotional copy did so in good faith based on materials Brindlewood provided — materials that didn't use the phrase but created the context in which retailers adopted it. A retailer facing a consumer challenge over "wild-harvested" labeling would discover, when seeking indemnification from Brindlewood, that Brindlewood's position is that its own materials never made the claim. The retailers' legal exposure and Brindlewood's insulation from it would become the same event. Several of the inward retailers are the kind of premium food purveyors for whom provenance authenticity is foundational to their brand positioning — the same positioning that makes Brindlewood's product worth stocking at the price it commands. The unraveling would be mutual. + +--- + +**Cross-References:** +- [Ashfield](../star-systems/GJ-178/index.md) — Headquarters and production site +- [Calloway Distillery](calloway-distillery.md) — North reach terroir peer; comparable provenance-based brand model +- [Highland Cooperative](highland-cooperative.md) — Crown's Hollow specialty producer; north reach premium food context +- [Comptoir Lendel](comptoir-lendel.md) — Inward premium retailer; carries Brindlewood in Groombridge premium market + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/byeolbit-entertainment.md b/wiki/corporations/byeolbit-entertainment.md index b4ad31c7d..82197539e 100644 --- a/wiki/corporations/byeolbit-entertainment.md +++ b/wiki/corporations/byeolbit-entertainment.md @@ -1,24 +1,97 @@ --- title: "Byeolbit Entertainment" -description: "Byeolbit Entertainment — cultural content producer based in Seongho, east reach" +description: "Korean-heritage entertainment studio at Seongho (GJ 660A) — drama serials, music, and variety content produced in sealed-habitat studios powered by geothermal energy, distributed through the junction's three apertures to the east reach and beyond" slug: byeolbit-entertainment category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Seongho (GJ 660A) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [haesungdan-records] --- # Byeolbit Entertainment -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Drama, Music, and Entertainment Production +**Also Known As:** Byeolbit, "the studio" **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Seongho (GJ 660A) +**Scope:** East reach corridor primary; core and inner-corridor distribution secondary +**Headquarters:** Seongho (GJ 660A) — 3-aperture junction, east_reach corridor +**Classification:** Sub-Syndic cultural enterprise; independent -Byeolbit Entertainment is a cultural content producer operating out of Seongho (GJ 660A). Details to be expanded. +--- + +## Overview + +Seongho has no surface. The world beneath its sealed habitats is a fractured black-rock plain of active heat vents, geologically restless, unbreathable without equipment, spectacular from the transit station viewports in the specific way that hostile environments are spectacular when safely observed. Inside the seals, everything is controlled: temperature, light, atmosphere, sound. What this means for a studio that has been producing content in Seongho's sealed habitats for forty years is that the entire production environment is, by necessity, designed. There is no natural light to work with. There is no exterior. Every frame is built. + +Byeolbit Entertainment's aesthetic comes from this condition. The studio's drama serials are noted for their production design: elaborate, architecturally precise environments rendered in controlled light that produces a specific visual quality — warm, slightly amber, the indoor quality of spaces that are carefully maintained against an exterior that would be immediately fatal. This is not stylistic choice in the way that aesthetic decisions at surface-based studios are choices. It is the studio's physical reality, absorbed into the work so thoroughly that audiences outside Seongho describe the Byeolbit aesthetic without knowing they are describing a sealed-habitat world's inside. + +The three-aperture junction topology is Byeolbit's distribution advantage: content produced at Seongho can simultaneously reach Hwaseong corridor, Binh Trang outward, and the Tình Yên dead-end branch from the same release point. This reach across three directions has given Byeolbit's content an east reach corridor penetration that studios at less advantageous positions cannot match from equivalent production budgets. + +--- + +## Origin + +The studio was founded forty years ago by the Jang family — second-generation Seongho residents whose grandparents had been part of the founding Korean-heritage community that chose the site for its geothermal potential. The founding family's interest was not in geothermal energy; it was in the surplus of that energy, which made power for studio operations essentially free. Cheap reliable energy and a sealed environment optimized for controlled-atmosphere work were, in the founding generation's assessment, exactly the infrastructure a serious production studio needed and almost never had. + +The Jang family's initial production was music: original recordings and sessions for artists from across the Korean-heritage east reach community who came to Seongho specifically for the studio's acoustic environment. The studio space had been engineered for geothermal monitoring — temperature-stable, vibration-isolated, well-shielded — and these qualities produced a recording environment of unusual quality. The music production reputation preceded the drama production by a decade. When Byeolbit began producing serial drama, it already had the technical credibility that drama production requires and the east reach cultural community's attention. + +The studio's flagship drama production — *Unda*, a Korean-language title meaning flow or current, with connotations of heat — began production eighteen years ago and is currently in its twelfth series. It is the most-watched drama serial in the east reach corridor. + +--- + +## Operations + +**Drama production:** *Unda* is the studio's primary production and its primary revenue source. The serial is a generational family saga set on a fictional geothermal junction world called Dalbicht — a world with three apertures, sealed habitats, and a founding community organized around thermal energy management. Each series follows a different generation of the founding families across approximately forty episodes. The production design — built entirely in Byeolbit's sealed-habitat studios — has won the east reach Meridian Excellence Award for environmental design three years consecutively. + +**Music:** The recording operation that preceded *Unda* continues as a secondary production line. Byeolbit has a standing session relationship with Haesungdan Records at Miryang (GJ 754), whose vocal arts roster includes artists who record instrumental backing at Seongho; the studio acoustic environment is considered the east reach's standard for complex choral work. The session relationship has extended into co-production credits on several Haesungdan releases. + +**Distribution:** Three-aperture simultaneous release via Meridian syndication. The junction position means Byeolbit's release cycle can reach a larger fraction of the east reach in the first twenty-four hours after publication than any non-junction studio in the corridor. Inward distribution to the core and inner reaches is handled through a syndication agreement with a Sirius-based distributor that packages east reach content for the cosmopolitan market. + +**Studio infrastructure:** Six production stages across three sealed-habitat facility locations on Seongho. All stages are powered by geothermal tap under a fixed-rate agreement with the Thermal Authority that has been in place since the studio's founding and constitutes Byeolbit's single most valuable infrastructure relationship. + +--- + +## Political Relationships + +**The Thermal Authority:** The fixed-rate geothermal agreement is the relationship that matters most to Byeolbit's operational continuity. Without reliable, cheap energy at fixed cost, the studio's production economics change significantly. The Thermal Authority knows this. The relationship has been civil for forty years. It has been under specific pressure for the past two years, related to the content of *Unda*'s eleventh and twelfth series. + +**Haesungdan Records:** The session and co-production relationship with Haesungdan Records is the studio's most significant external creative partnership. The two Korean-heritage east reach institutions have developed a complementary market position — Haesungdan's vocal arts aesthetic and Byeolbit's drama production have overlapped in ways that reinforce both, particularly in the inner-corridor markets where Korean-heritage content is experiencing growing commercial interest. + +**The Junction Transit Cooperative:** Byeolbit's content distribution depends on the junction's gate infrastructure performing reliably. The studio maintains a formal liaison relationship with the Cooperative, which manages gate operations, and has contributed to the Cooperative's public programming — sponsoring transit-hostel content terminals that carry Byeolbit productions as a commercial arrangement that doubles as corridor-wide distribution. + +--- + +## What They Don't Talk About + +*Unda*'s fictional world of Dalbicht is not fictional in its structural details. The drama serial's source material — compiled over three years by a historian embedded with the production before the first series — draws directly from documented records of Seongho's founding period, including the Thermal Authority's internal records from the first two generations of bore installation. The historian's research was made available to the Jang family through a personal connection to one of the founding families' extended network. + +Among the material incorporated into the serial's narrative are events surrounding a disputed inheritance of bore installation rights in Seongho's first generation — a dispute that the current Thermal Authority board's founding families resolved in a manner that the historical record describes in terms the current board would not characterize the same way. The parallels between *Unda*'s fictional Dalbicht governance narrative and the documented history of the Thermal Authority's founding became apparent to the board during the eleventh series. The board's legal team contacted Byeolbit twice. The second contact included a reference to the studio's fixed-rate geothermal agreement and the Thermal Authority's discretion over its terms. + +Byeolbit agreed to not explicitly promote the documentary research connection in public communications. The serial's content has not changed. The historian's research archive — which contains the primary documents that the board would most prefer not to have circulating — has been moved to a location outside Seongho that the Thermal Authority has not been told about. + +--- + +## Gameplay Relevance + +Byeolbit is ambient cultural infrastructure for the east reach — *Unda* appears on data terminals, in transit hostels, in the background of any east reach setting where Meridian content streams. The production design is recognizable: warm amber indoor light, architectural interiority, the specific quality of spaces that are built because they have to be rather than because they were designed to impress. + +The *Unda* research thread connects directly to Seongho's silence topic: the Thermal Authority's bore depletion data that the board has not shared with the elected council. A player investigating the bore depletion narrative will encounter *Unda* as a documentary artifact — the historian's research captured events adjacent to the depletion data's suppression, and the historian's archive, wherever it is currently held, may contain primary documents that the board has been unable to recover. Finding the archive means finding the historian, which means tracing a person who moved deliberately and whose reasons for moving are the investigative frame. + +--- + +**Cross-References:** +- [Seongho](../star-systems/GJ-660A/index.md) — Headquarters system; geothermal junction; sealed habitats +- [Haesungdan Records](haesungdan-records.md) — East reach Korean-heritage label; session and co-production partner +- [Thermal Authority] — Seongho's energy infrastructure body; fixed-rate agreement; institutional pressure source + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/calloway-workshop.md b/wiki/corporations/calloway-workshop.md index c9d5f2d75..a51e3d1bf 100644 --- a/wiki/corporations/calloway-workshop.md +++ b/wiki/corporations/calloway-workshop.md @@ -1,24 +1,95 @@ --- title: "Calloway Workshop" -description: "Calloway Workshop — design and furniture manufacturer based in Calloway Reach, north reach" +description: "North_reach precision furniture workshop at Calloway Reach (GJ 3325) — hand-craft production using Dunbar timber, restrained design aesthetic, and a quiet presence in the same premium markets that carry Calloway whisky" slug: calloway-workshop category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Calloway Reach (GJ 3325) tags: [design_heritage, north_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [calloway-distillery] --- # Calloway Workshop -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Furniture and Object Design +**Also Known As:** the Workshop **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Calloway Reach (GJ 3325) +**Scope:** North_reach corridor primary; inward premium market secondary +**Headquarters:** Calloway Reach (GJ 3325) — 2-aperture loop_member, 6 hops from Gateway +**Classification:** Sub-Syndic craft enterprise; artisan-founded independent -Calloway Workshop is a design and furniture manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded. +--- + +## Overview + +Calloway Workshop makes furniture. Precisely: it makes the furniture it chooses to make, in the quantities it can maintain quality at, for buyers who can wait for it. The Workshop is not large and has no interest in becoming large. It is in this respect similar to the community it operates in, whose most successful institutions have built their reputations on patience. + +The aesthetic is Calloway's: restrained, functional, built to outlast its original setting. Nothing in a Calloway Workshop piece announces itself. The proportions are correct, the joinery is exact, the finish responds to the wood's specific character rather than overriding it. First-time buyers sometimes return after a year to ask when their piece is going to show its quality, because they expected something more apparent. The answer — that it already has — is a Workshop selling point that not every buyer understands before purchase and most understand after. + +The Workshop has been producing on the same site outside Grantown for eighty years. The founding family still runs it. The quality has not declined in that time. The waiting list has not shortened. + +--- + +## Origin + +The Workshop was founded by Moira Calloway-Dunne, who was neither a distiller nor a farmer but had grown up in the orbit of the distillery culture and absorbed its operating principle: quality produced slowly and consistently builds something no fast production cycle can replicate. She had trained in furniture and object design at an inward-corridor institution, returned to Calloway Reach after completing her training, and opened a workshop in a converted farm building outside Grantown using Dunbar timber sourced through the same supply contacts the distilleries used for cooperage wood. + +The choice to use Dunbar timber was partly practical and partly considered. The Dunbar oak — cold-climate variant adapted to GJ 3991's conditions — had a grain density and figure specific to its growing environment, producing furniture character that could not be sourced from any off-system equivalent. Moira Calloway-Dunne was making the same argument the distillers had been making about their whisky for three centuries. The argument worked the same way. + +The Workshop grew to its current size over two generations. It has not grown beyond that. + +--- + +## Operations + +**Production:** Fourteen trained craftspeople working a project cycle that runs two years from commission to delivery for bespoke pieces and twelve to eighteen months for the standard range. The Workshop produces approximately sixty to eighty pieces per year. This number has not changed significantly in thirty years. Management has declined proposals to expand the workforce on the grounds that quality depends on team coherence — scaling would introduce inconsistencies the Workshop has no interest in managing. + +**Materials:** Dunbar oak is the primary structural timber, sourced under a standing supply arrangement with the managed forestry operation at GJ 3991 that also supplies the distilleries' cooperage stock. The arrangement has been in place for forty years. Neither party has looked at the written contract recently; the relationship continues on informal terms between two institutions that have no reason to change what is working. + +**Market and distribution:** The Workshop sells directly from Calloway Reach. No intermediaries, no retail presence, no inward-corridor offices. Buyers come to Strathmore, commission their piece, and wait. Inward clients have arranged this for forty years. The inconvenience of the process is treated, in certain corridor commercial circles, as a quality signal in itself. Something worth waiting for is worth the trip to commission. + +--- + +## Political Relationships + +**Calloway Distillery:** The Workshop and the Distillers' Council do not have a formal relationship, but they share a corridor reputation and, through the cooperage timber supply, a material supply chain. Distillery fit-out — tasting rooms, visitor accommodation, storage buildings — has historically been done in the Workshop's aesthetic by default. Nobody organized this. It developed the way shared community standards tend to develop in a small system with a consistent culture. + +**The Grain Alliance:** The farming families who supply the distilleries are also the Workshop's nearest neighbors at the agricultural margin of the Grantown district. The Workshop buys locally produced food; the farming families buy Workshop pieces for significant occasions. The relationship is civic rather than commercial and is conducted at the level of personal acquaintance rather than institutional arrangement. + +**Dunbar (GJ 3991):** The Dunbar forestry operation is the Workshop's critical external relationship. The supply arrangement for furniture-grade timber is informal, durable, and has been renewed by each generation on the same terms as the last. The two institutions understand that the arrangement is mutually valuable and neither has tested what would happen if one of them tried to change it. + +--- + +## What They Don't Talk About + +The Dunbar timber supply arrangement covers furniture-grade stock. What the Workshop is currently also receiving — on a separate invoice line described as "tooling timber and trim stock" — is Dunbar oak machined to specifications the Workshop's own furniture production does not require. The dimensional profiles are consistent with cooperage components rather than furniture structural members. The tolerances are tighter than anything a furniture application needs. + +The Workshop's current head, Euan Calloway-Dunne, accepted this commission two years ago from a client who identified themselves as a distillery equipment supplier from Braemar. The specifications were precise and professional. The client has placed two subsequent orders and has not communicated any concerns about the work. Euan has not asked why a Braemar equipment supplier needs cooperage-grade Dunbar oak when Braemar's own timber supply is adequate for local barrel production. + +The Distillers' Council, which has been receiving quiet acquisition approaches from inward investors, does not know that cooperage tooling with Calloway Reach timber provenance is being produced and shipped. Euan Calloway-Dunne does not know his client is connected to those approaches. He has concluded that the contract is legal, the components are timber, and the client's business is the client's business. + +--- + +## Gameplay Relevance + +The Workshop is ambient craft texture in the north_reach corridor — a high-quality, low-profile institution that players encounter through material culture. A furnished Alcazar property might carry Calloway Workshop pieces in the dining room; a Calloway single malt tasting room almost certainly will. The Workshop's presence in a space is a signal of deliberate, unhurried quality investment. + +The cooperage component thread connects to the concealed acquisition narrative in the Calloway Distillery entry. A player tracing the inward investor approaches to the distilleries could follow the tooling supply chain and find bespoke cooperage components being produced at the Workshop and shipped inward — raising the question of what production those components are intended to scale. Euan Calloway-Dunne is a secondary source: no reason to deceive, no complete picture of what he is part of. His records of the component orders — specifications, delivery addresses, invoice counterparty — are investigative material if a player can access them. + +--- + +**Cross-References:** +- [Calloway Reach](../star-systems/GJ-3325/index.md) — Headquarters system; founding culture +- [Calloway Distillery](calloway-distillery.md) — Sister institution; shared system, shared aesthetic; cooperage component thread +- [Dunbar](../star-systems/GJ-3991/index.md) — Timber source; shared forestry supply with the distilleries + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/calluna-wellness.md b/wiki/corporations/calluna-wellness.md index c466cdd4e..6e71f0049 100644 --- a/wiki/corporations/calluna-wellness.md +++ b/wiki/corporations/calluna-wellness.md @@ -1,24 +1,95 @@ --- title: "Calluna Wellness" -description: "Calluna Wellness — premium service provider based in Cairn, north reach" +description: "North reach extended recovery service at Cairn (GJ 845) — long-stay programs for lattice adjustment and physiological restoration, operating between standard clinical care and full re-embodiment" slug: calluna-wellness category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Cairn (GJ 845) tags: [service_premium, north_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [somatic-futures, prometheus-labs] --- # Calluna Wellness -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Extended Recovery and Lattice Adjustment Service **Status:** Canonical -**Scope:** Regional — north reach operations +**Scope:** North reach corridor primary; cross-corridor referrals from Somatic Futures and clinical partners **Headquarters:** Cairn (GJ 845) +**Currency:** Tractus +**Classification:** Sub-Syndic health-adjacent service enterprise; registered under wellness licensing -Calluna Wellness is a premium service provider operating out of Cairn (GJ 845). Details to be expanded. +--- + +## Overview + +There is a gap in the Reach's care infrastructure between standard medical clinics and full re-embodiment services. Standard clinics manage acute conditions. Re-embodiment facilities handle complete substrate transfers. What neither handles well is the long middle: the person whose neural lattice is degrading at a rate that is not yet critical, the Perpetual-class citizen managing post-embodiment adjustment over a period of months, the professional who has pushed their lattice through an intensive period and needs extended physiological recalibration. These people do not need a hospital. They need somewhere to recover, over time, with consistent clinical support. + +Calluna Wellness exists for this gap. The facility at Cairn offers extended stay programs — minimum four weeks, typical stay eight to sixteen weeks — built around lattice adjustment monitoring, physiological restoration, and the specific kind of sustained care that requires continuity of staff and environment. It is not a hospital and does not operate under hospital licensing. It is classified as a wellness service and operates under that regulatory framework, which permits a considerable range of clinical-adjacent services without requiring the institutional overhead of medical facility registration. + +The distinction matters because it determines cost, access, and oversight. Calluna is more affordable than a clinical facility for extended stays. It is less subject to Lattice Commission clinical monitoring protocols. It accepts clients who cannot access full clinical care on their timelines and budgets. It is also, for this reason, not subject to the reporting requirements that would apply to a licensed medical facility. + +--- + +## Origin + +Calluna Wellness was founded fifty years ago by a nurse practitioner named Ailsa Drummond who had spent twenty years working in the north reach's network of small clinical facilities and had developed a clear picture of the patient population that the clinical system was failing. Not failing through malice or incompetence — failing because the structure of clinical care, organized around acute treatment and discharge, had no mechanism for patients who needed sustained recovery support over timescales measured in months. + +Drummond's original model was straightforward: a long-stay facility that provided monitoring, support, and a stable environment for the recovery process that acute care facilities could not offer. She opened the first Calluna property at Cairn with sixteen beds and a staff of four. The referrals came from the clinical network she had spent twenty years building relationships within. Within two years the facility was at capacity and had a waiting list. + +Ailsa Drummond retired twenty years ago. The facility has been expanded twice and is now run by a partnership of three directors, one of whom trained under Drummond. The founding philosophy — structured care for the recovery period that clinical systems cannot support — has not changed. The regulatory environment has changed considerably around it. + +--- + +## Operations + +**Programs:** Three primary program types. The lattice adjustment program is for clients managing post-modification recalibration, lattice degradation, or embodiment transition effects. The physiological restoration program is for clients who need extended support following intensive physical or cognitive periods without a specific clinical diagnosis. The maintenance program is for long-term clients — primarily Perpetual-class individuals managing the cumulative effects of extended lattice use — who return annually or semi-annually for sustained recalibration. + +**Staffing:** Twelve clinical staff, including three with Lattice Commission wellness certification, two physiotherapists, and a rotating roster of visiting practitioners with specific specializations who provide services under contract. The clinical staff are not physicians under Reach medical licensing. They are wellness practitioners operating within the regulatory scope of the facility's classification. The distinction is significant in legal terms and has been consistently managed in the facility's documentation. + +**Referrals:** The majority of Calluna's clients arrive through referrals from clinical facilities that cannot serve their recovery timeline. Somatic Futures has a standing referral relationship with Calluna for clients whose post-embodiment adjustment period exceeds what the clinical facility can accommodate. A smaller referral stream comes from Perpetual-class lifestyle management services that identify clients in need of extended recalibration before the condition becomes clinically acute. + +**Records:** The facility maintains detailed longitudinal records for all clients. These records are held under wellness privacy protocols, which are less stringent than clinical privacy standards and do not carry the same restrictions on secondary use. + +--- + +## Political Relationships + +**Somatic Futures:** The standing referral relationship is Calluna's single largest client-acquisition channel. Somatic Futures refers post-embodiment clients whose adjustment window exceeds their clinical facility's discharge timeline. The referral goes one direction; Somatic Futures does not take Calluna referrals back. Calluna in turn does not directly market against Somatic Futures. The relationship is long-standing, commercially important to both parties, and is the mechanism by which "wellness" clients reach Calluna without clinical case-file transfer. + +**Lattice Commission (wellness division):** Calluna operates under wellness licensing, which is the lighter-touch regulatory tier the Commission maintains for services that are clinical-adjacent but not clinical. The Commission has reviewed Calluna's classification twice in fifty years and has upheld it both times. The reviews are pro-forma; the Commission's wellness division is understaffed and does not have the resources to audit the substantive clinical work done under wellness licensing across the Reach. + +**Prometheus Labs:** The data-licensing relationship is contractual, long-running, and financially material to Calluna. The commercial shape of it is discussed below (What They Don't Talk About); the political shape of it is that Calluna's current partners have not renegotiated the consent framework in thirty years because the relationship's economics do not reward renegotiation. + +--- + +## What They Don't Talk About + +Calluna's client records are the facility's secondary revenue stream. The facility has maintained a data licensing arrangement with a Prometheus Labs subsidiary for thirty years — predating the current management — under which anonymized aggregate data from the long-stay client population is provided for research into lattice performance over extended recovery periods. The data is valuable because Calluna's client population is unusual: people managing lattice conditions over months in a consistent monitored environment, providing longitudinal data that clinical settings cannot generate because their discharge timelines are too short. + +The clients consent to "wellness research use" of aggregated data in the program agreement. The consent language was written to cover exactly this kind of licensing. It was not written to make the licensing visible to clients who did not read carefully, and the partnership that now runs Calluna considers the consent framework sufficient without considering whether it is informative. Prometheus Labs has been extending and expanding the research agreement at each renewal cycle. The current payment terms are substantially higher than the original arrangement. The partnership has not asked what Prometheus Labs has found in thirty years of data that makes it worth more than it used to be. + +--- + +## Gameplay Relevance + +Calluna is relevant for investigations touching lattice health, long-term care access, and the grey zone between clinical and wellness services. A player investigating a subject's health history will find that an extended Calluna stay represents a period of clinical-adjacent monitoring that is not accessible through standard Lattice Commission records — wellness facilities are not subject to the same reporting requirements as licensed medical providers. Access to the records requires either Calluna's cooperation or a legal instrument calibrated to wellness facility standards rather than clinical standards, which most investigators do not automatically seek. + +The Prometheus Labs data relationship is the deeper thread. Thirty years of aggregate Calluna data in a Prometheus Labs subsidiary represents significant accumulated research into lattice degradation, adjustment patterns, and long-term performance in the Perpetual-class population. An investigator who establishes what the subsidiary has been doing with that data — and why the payments have been increasing — is investigating Prometheus Labs' research priorities through a side entrance they have not secured as carefully as their primary operations. + +--- + +**Cross-References:** +- [Somatic Futures](somatic-futures.md) — referral partner for post-embodiment adjustment clients +- [Prometheus Labs](prometheus-labs.md) — purchaser of long-term lattice adjustment research data +- [Cairn (GJ 845)](../star-systems/GJ-845/index.md) — headquarters system; north reach wellness corridor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/cape-modern.md b/wiki/corporations/cape-modern.md index fef519b36..2f9682fe7 100644 --- a/wiki/corporations/cape-modern.md +++ b/wiki/corporations/cape-modern.md @@ -1,24 +1,98 @@ --- title: "Cape Modern" -description: "Cape Modern — design and furniture manufacturer based in Kaapse Baai, south reach" +description: "Kaapse Baai contemporary furniture and interior design manufacturer — south reach modernist aesthetic, institutional and residential supply, sustainability certification maintained by a conflicted auditor" slug: cape-modern category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kaapse Baai (GJ 213) tags: [design_heritage, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [sertanejo-design, quebrada-cultural, veldfontein-botanical] --- # Cape Modern -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Contemporary Furniture and Interior Design Manufacturer +**Also Known As:** Cape Modern Design **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Kaapse Baai (GJ 213) +**Scope:** South reach primary; inward corridor design market secondary +**Headquarters:** Kaapse Baai (GJ 213) — south reach, 4 hops from Gateway +**Classification:** Sub-Syndic design enterprise; institutional and residential supply -Cape Modern is a design and furniture manufacturer operating out of Kaapse Baai (GJ 213). Details to be expanded. +--- + +## Overview + +Kaapse Baai sits at the edge of the south reach's more temperate systems — a coastal settlement with a design culture that emerged from the intersection of Afrikaans-heritage founding communities and the successive waves of diverse arrivals that characterize a functional transit hub. The result, after three centuries of aesthetic negotiation, is a design sensibility that combines spatial openness, natural material emphasis, and a preference for objects that age visibly rather than resisting aging. Cape Modern manufactures furniture and interior products in this tradition and has spent forty years building a distribution network that introduces the aesthetic to inward markets. + +The company's positioning in inward markets is not as a local curiosity. It is as a design alternative: if the Lendel financial district aesthetic is weight and permanence, and the Bergtor aesthetic is guild heritage, Cape Modern's argument is that furniture can be honest about what it is — natural materials working with use rather than against it, construction that makes repair possible rather than precluding it. This argument has found an audience in commercial interiors and residential contexts that find institutional permanence oppressive. + +--- + +## Origin + +Cape Modern was founded thirty-eight years ago by a furniture designer and a materials scientist who had been working independently in Kaapse Baai's small design community and decided their complementary skills justified a combined operation. The founding partnership brought together design articulation and materials knowledge in a combination unusual for a small manufacturer; most design enterprises are either design-led with poor materials judgment or materials-competent with weak design language. Cape Modern's founding configuration avoided both failure modes. + +The early years were local: residential furniture for Kaapse Baai's growing population, occasional institutional commissions for the transit hub's administrative buildings. The decision to pursue inward distribution came fifteen years in, when a Tractus-corridor design exhibition in the core systems produced an unexpected response to the company's entry pieces — buyers who had not expected to find a south reach design aesthetic they wanted in their homes. + +--- + +## Operations + +**Product lines:** Residential seating and tables — the core of the business, designed around natural wood and textile combinations that develop character with age. Institutional systems — office furniture and common area fittings for commercial clients who want the Cape Modern aesthetic at scale, which requires somewhat different materials specifications than the residential line. Custom commissions — a prestigious fraction of output for clients with specific spatial requirements. A textile line, relatively recent, that extends the brand's materials language into wall treatments and soft furnishings. + +**Materials:** Primary emphasis on woods native to Kaapse Baai's ecosystem, managed under the company's sustainability certification. Secondary materials — metal hardware, textile components — sourced from south reach corridor suppliers where possible. The sustainability certification covers the full supply chain and is reviewed annually by an independent auditor. + +**Manufacturing:** Two facilities at Kaapse Baai. The primary facility handles production; the secondary is a showroom and custom workshop used for commission work and client consultation. Total workforce of sixty-one, with a design team of eight. + +**Distribution:** South reach residential and institutional direct sales, plus a network of inward design retailers. The inward distribution is managed through selective licensing agreements; Cape Modern does not supply retailers whose positioning undermines the brand's premium identity. + +--- + +## Political Relationships + +**Sertanejo Design:** Cape Modern's closest south reach peer in the design sector, operating from an adjacent system with a complementary aesthetic. The two studios share institutional clients across the south reach corridor and occasionally refer commissions that better suit the other's style. The relationship is warm but commercially aware — both compete for the same procurement budgets at regional government and institutional clients. + +**Quebrada Cultural:** Quebrada Cultural and Cape Modern share a significant overlap in institutional clients — arts organizations, cultural foundations, and government cultural programs that commission both design work and cultural programming. Cape Modern's visual identity work for the same institutions that Quebrada programs creates an ongoing commercial adjacency that has produced joint pitches and occasional friction over creative direction. + +**Veldfontein Botanical:** Cape Modern sources botanical extract compounds from Veldfontein for a textile treatment line that is marketed as a natural material enhancement. The supply relationship is small in commercial terms but significant for the marketing claim; if Veldfontein's supply chain or certification practices were found inadequate, it would affect Cape Modern's natural materials claim in the same product line that carries the sustainability certification. + +--- + +## What They Don't Talk About + +Cape Modern's sustainability certification — prominently featured in its marketing materials and cited as a distinguishing advantage over less conscientious competitors — is issued annually by an independent auditing firm called Meridian Environmental Consulting. The certification covers materials sourcing, manufacturing process, and supply chain environmental standards. + +One of Cape Modern's three founding directors holds a 22% equity stake in Meridian Environmental Consulting through a holding company. This position was acquired seven years ago as part of a private investment round Meridian conducted when expanding its practice. It is disclosed in Cape Modern's corporate governance filings, which are publicly accessible. It is not disclosed in Cape Modern's marketing materials, its sustainability certification documentation, or the information packets provided to institutional clients who cite the certification in their own environmental impact reporting. + +Meridian's audits of Cape Modern have consistently recommended certification with minor remediation notes, none of which have resulted in failed certification. Meridian's assessments of Cape Modern's competitors have in several cases produced more critical findings. Whether the audits are accurate is unknowable from outside; whether the structural relationship should be disclosed to buyers relying on the certification is a simpler question. + +--- + +## Gameplay Relevance + +Cape Modern is design-sector presence in the south reach and an ambient marker of aesthetic in the spaces it furnishes — its pieces are identifiable in well-appointed interiors, and its brand is recognizable to characters with commercial or design-world context. + +The auditor relationship is the investigative thread. The equity position exists in governance filings; the absence of disclosure in client-facing materials is demonstrable by comparison. A player assembling an environmental fraud or procurement irregularity case in the south reach will find Cape Modern's certification a useful example of the gap between what sustainability documentation implies and what it demonstrates. + +Cape Modern's design community connections also make it a social contact point — the company's design team is embedded in Kaapse Baai's creative and professional circles, and its principals are connected to institutional clients across the south reach. + +The auditor conflict is most consequential for institutional clients who have cited Cape Modern's sustainability certification in their own environmental procurement documentation — government agencies, interstellar shipping operators with environmental compliance requirements, and commercial tenants whose lease terms specify sustainably certified furnishings. If the director's equity position in the auditing firm becomes public, those clients' certification reliance becomes compromised retroactively. The compliance question they then face is whether their own documentation is accurate, which is a question with legal and contractual implications. Cape Modern's exposure is the same: the certification it has charged a premium to provide carries a conflict disclosure that, if required and absent, undermines every commercial relationship built on it. The director's equity stake is the kind of information that, once visible, makes every past audit result look different. + +--- + +**Cross-References:** +- [Kaapse Baai](../star-systems/GJ-213/index.md) — Headquarters; founding community; primary market +- [Sertanejo Design](sertanejo-design.md) — South reach design peer; adjacent market segment +- [Quebrada Cultural](quebrada-cultural.md) — South reach cultural enterprise; shared institutional client base +- [Veldfontein Botanical](veldfontein-botanical.md) — Materials supply relationship; botanical extract components + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/commonstock-foods.md b/wiki/corporations/commonstock-foods.md index a59fc436b..b18efd0f4 100644 --- a/wiki/corporations/commonstock-foods.md +++ b/wiki/corporations/commonstock-foods.md @@ -1,24 +1,102 @@ --- title: "Commonstock Foods" -description: "Commonstock Foods — consumer goods manufacturer based in Sirius, core" +description: "Sirius volume food manufacturer — packaged staples, meal components, and preserved goods for the core corridor's mass market, with a shelf-life labeling methodology that quietly advantages the company at the buyer's expense" slug: commonstock-foods category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [commodity_branded, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [mercado-travessia, westfield-common, iberian-standard-foods] --- # Commonstock Foods -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Consumer Food Manufacturer +**Also Known As:** Commonstock **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core corridor primary; transit hub distribution secondary +**Headquarters:** Sirius (GJ 244A) — core, 2 hops from Gateway +**Classification:** Sub-Syndic volume consumer enterprise; mass-market packaged food -Commonstock Foods is a consumer goods manufacturer operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Commonstock Foods exists to solve a problem that emerges wherever populations cluster without direct access to agricultural production: people need to eat, regularly and inexpensively, and whatever they eat needs to be available when they need it. At Sirius — a system whose importance as a transit hub has produced a population too large and too transient to be fed by local agriculture alone — Commonstock has been answering this problem for fifty years. + +The company manufactures packaged staples: grain-based meal components, preserved proteins, dried vegetables, composite foods designed for preparation in the limited cooking facilities typical of corridor transit accommodation. The products are not luxury goods. They are not attempting to be. They are functional, affordable, and available — present at every transit hub commissary, every station common store, every residential reseller that serves a working population. Commonstock's measure of success is not acclaim; it is the absence of a gap between what a transit worker needs and what is available at the counter. + +This is a real and difficult service to perform reliably across the distances involved, and Commonstock performs it competently. The question that does not appear in the company's public profile concerns the gap between what "best before" printed on a Commonstock package means and what the company's internal quality documentation recommends it should mean. + +--- + +## Origin + +Commonstock was founded fifty-two years ago by a logistics operator who had been running food distribution at Sirius's transit hub and concluded that the distribution problem was downstream of a manufacturing problem: the food being distributed was produced by a mix of suppliers with inconsistent quality and inconsistent packaging standards, which made managing inventory and predicting shelf life complicated and wasteful. Vertical integration — a single manufacturer producing to consistent specification — would solve both problems. + +The founding investment secured manufacturing space at Sirius's industrial zone and three years later Commonstock was producing its first product lines. The distribution relationships were already in place; the founding operator had them from the distribution business. Growth was rapid and was driven almost entirely by the transit hub's existing demand rather than marketing investment. + +--- + +## Operations + +**Product lines:** Grain-based staples — rolled and pressed grain products in bulk and portion packaging. Preserved protein lines — processed and sealed in formats that maintain nutritional content across extended storage. Composite meal products — multi-component packages designed to produce a complete nutritional profile without additional sourcing. A smaller range of flavoring and supplement products that function as complements to the core lines. + +**Manufacturing:** Two facilities at Sirius. The primary facility handles bulk production; the secondary handles packaging and the more specialized composite products. Combined workforce of three hundred and forty, the majority in production roles. + +**Distribution:** Through transit hub commissaries, station commercial operators, residential resellers, and a small direct retail presence at Sirius. Products reach the inward corridor through transit hub distribution channels; they reach the outer reach when transit hub resellers include them in outbound cargo. Commonstock does not manage outward distribution directly; it supplies the hub and the hub distributes. + +**Pricing:** Positioned at the accessible end of the market. The margin is thin; the volume is the model. + +--- + +## Political Relationships + +**Mercado Travessia:** Mercado Travessia is Commonstock's largest single distribution partner, carrying its product lines across multiple transit hub retail locations. The procurement terms Mercado negotiated are structured as volume commitments in exchange for exclusivity on certain product categories — meaning Mercado cannot stock competing equivalent products in those categories while Commonstock maintains the supply. This arrangement gives Commonstock significant commercial leverage over its most important distribution relationship. + +**Westfield Common:** Westfield Common and Commonstock occupy adjacent market positions at the core corridor's transit hubs — Westfield in general goods retail, Commonstock in packaged food. Their customer base is the same transit worker population, and their distribution logistics overlap at several hub locations. The relationship is commercially arm's-length but the two companies have aligned interests on hub operator fee structures and supply chain access terms. + +**Iberian Standard Foods:** Iberian Standard is Commonstock's primary direct competitor for packaged food supply at core corridor transit hubs and the company most affected by Commonstock's distribution exclusivity arrangements. Iberian Standard has been unable to enter several hub locations that Commonstock's Mercado relationship controls, and has raised this with the Lattice Commission's commercial access panel without reaching a finding. + +--- + +## What They Don't Talk About + +The Lattice Commission's consumer food standards specify that "best before" labeling must reflect the date at which a product can no longer be expected to meet its stated nutritional and quality specifications under recommended storage conditions. The standard formula for calculating this date is based on accelerated aging tests conducted at defined temperature and humidity parameters. + +Commonstock's internal quality protocol documents, developed when the company was founded and revised twice since, recommend a shelf-life calculation method that aligns with the Commission's standard formula and produces dates that match the actual deterioration timeline the testing demonstrates. The products ship to the calculated dates. + +In practice, Commonstock's production labeling applies a calculation that counts shelf life from the date of packaging rather than the date of manufacture — a distinction that introduces a gap of between six and eighteen days, depending on the product line, between the Commission formula result and the printed date. The gap is within the Commission's permitted tolerance band for labeling variance. The Commission standard allows for tolerance because manufacturing dates and packaging dates are not always identical. Commonstock treats the tolerance band as a production efficiency tool rather than an accuracy approximation — systematically applying a date that sits at the acceptable edge of the tolerance, every batch, as a matter of policy. + +The practical effect is that products reaching consumers through transit hub resellers carry "best before" dates that overstate freshness by the tolerance amount. A buyer in a corridor commissary purchasing a package with a date six weeks out may have less than five weeks of actual quality window. The package is not unsafe; it is less fresh than it represents. + +--- + +## Gameplay Relevance + +Commonstock Foods is ubiquitous background presence in transit corridor environments — its packaging appears in commissaries, common stores, personal quarters, and cargo manifests. It is not a primary investigation target under most circumstances but is ambient economic texture in every transit context. + +The labeling methodology is an investigative thread in consumer protection or corporate accountability contexts. The production protocol documents that establish the policy exist in Commonstock's manufacturing records; the Commission's standard formula is a public document; the gap between them is demonstrable by comparison. The interest is not in any individual package but in the policy itself — a deliberate systematic choice to place the date at the edge of what the Commission allows, not because the tolerance is needed but because it captures additional shelf time at the consumer's expense. + +Commonstock's distribution relationships also make it a useful node for tracking the movement of goods through transit hub supply chains. + +The labeling methodology case, if built, would be a structural complaint rather than a product safety complaint — the distinction matters for which regulatory pathway applies. Product safety cases trigger mandatory recall; structural labeling cases are subject to administrative remedy that Commonstock's legal team can contest through multiple review layers. The more direct route is the distribution relationships: a transit hub commissary operator who understands that the products they are selling have systematically shorter freshness windows than the dates indicate has a straightforward misdescription claim without regulatory delay. Commissary operators buy on margin and rotate stock carefully; freshness variance of the magnitude Commonstock's policy produces affects their operational losses in ways they can calculate and document — and they have standing to bring a claim that the transit workers they serve do not. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters and primary manufacturing location +- [Mercado Travessia](mercado-travessia.md) — Distribution partner; carries Commonstock in transit retail contexts +- [Westfield Common](westfield-common.md) — Transit hub retail peer; overlapping consumer market +- [Iberian Standard Foods](iberian-standard-foods.md) — Core food manufacturing peer; competitive market position + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/comptoir-lendel.md b/wiki/corporations/comptoir-lendel.md index 7c26963dc..a037ec476 100644 --- a/wiki/corporations/comptoir-lendel.md +++ b/wiki/corporations/comptoir-lendel.md @@ -1,24 +1,103 @@ --- title: "Comptoir Lendel" -description: "Comptoir Lendel — regional specialty producer based in Groombridge, core" +description: "Groombridge luxury food and specialty goods trading house — provenance-authenticated products from across the Reach, curated for the financial district's premium buyer, with an authentication model that charges for certificates without verifying chains" slug: comptoir-lendel category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [terroir, core, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [alcyone-tech, arclamp, calloway-distillery, brindlewood-honey] --- # Comptoir Lendel -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Luxury Food and Specialty Goods Trading House +**Also Known As:** the Comptoir **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; provenance products from across the Reach +**Headquarters:** Groombridge (GJ 380), Lendel district +**Classification:** Sub-Syndic specialty retail and import enterprise; scarcity-class rare provenance goods -Comptoir Lendel is a regional specialty producer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Groombridge's Lendel district houses people with money, institutional relationships requiring cultivated hospitality, and the specific desire to consume things that demonstrate neither was easy to acquire. Comptoir Lendel serves this market: a carefully curated trading house specializing in provenance-authenticated food and specialty goods from across the Reach — Calloway single malts, Brindlewood honey, Ashfield preserved goods, northern corridor textiles, south reach botanical preparations — things that are expensive because they are genuinely rare or genuinely distinct, and presented in ways that make the rarity legible. + +The Comptoir occupies a physical shopfront in Lendel's commercial quarter and a larger storage and processing facility two blocks away. The shopfront is the argument: understated, specific, arranged to suggest that what is on the shelves was worth finding. The processing facility is where provenance certificates are issued, lots are labeled, and the documentation that transforms a cask of north reach whisky into a certified authenticated product is assembled. + +Provenance authentication is Comptoir Lendel's core competency claim. It is also the part of the operation that does not bear close examination. + +--- + +## Origin + +Comptoir Lendel was established thirty-one years ago by a trader named Olivier Marchais who had spent twelve years working in specialty food import for a larger commercial house and concluded that the premium end of the market was being undersupplied and overcharged simultaneously. Existing importers were selling rare corridor products at premium prices without providing buyers any reliable way to verify the product was what it claimed to be — provenance documentation was inconsistent, chain-of-custody records were incomplete, and the premium commanded by genuinely rare products was partly a premium for information buyers had no way to assess. + +Marchais's founding proposition was that rigorous provenance authentication would command its own premium and would differentiate a serious trading house from competitors selling documented products alongside undocumented ones. He invested in authentication infrastructure — relationships with certification bodies, chain-of-custody documentation systems, a branded certificate format that became recognizable in the Lendel premium market. The proposition was correct. The Comptoir built its reputation on the authentication layer and has maintained it. + +--- + +## Operations + +**Product selection:** Marchais's successors maintain his curation ethos — a small catalogue of genuinely distinct products, sourced from producers with verifiable origins, selected on quality and provenance specificity rather than volume or margin. The Comptoir does not stock commodity premium goods. It stocks things that cannot be acquired anywhere inward without paying for transit. + +**Authentication:** The Comptoir's provenance certification system assigns lot numbers, issues origin certificates, and maintains a registry of certified lots available to buyers for verification. Certificates accompany every product sold. The format is standardized, printed on distinctive paper, and signed by the Comptoir's head of provenance. + +**Client base:** Groombridge financial houses, senior institutional staff, private residences of commercial significance, and hospitality accounts — private dining rooms, high-status meeting venues. The Comptoir does not sell to general retail. Relationships are maintained through account management, not footfall. + +**Volume:** Deliberately constrained. The Comptoir is not trying to grow; it is trying to remain the operation that its clients consider the only credible source for what it stocks. + +--- + +## Political Relationships + +**Calloway Distillery:** The Comptoir's Calloway single malt relationship is its most commercially significant provenance product. The two operations have worked together for eighteen years; the Comptoir maintains allocation rights to specific Calloway House expressions that no other Groombridge retailer can carry. This exclusivity depends entirely on the Distillers' Council's continued endorsement — if the Council withdrew its recommendation, the Comptoir's single malt positioning would be severely damaged. + +**Brindlewood Honey:** Brindlewood is the Comptoir's other signature terroir product and the relationship that most clearly illustrates the authentication question. The Comptoir issues provenance certificates for Brindlewood lots that were never independently verified; if either the Brindlewood provenance claims or the Comptoir's certification process were challenged, both would be implicated simultaneously. The financial houses that serve as the Comptoir's primary clients include several whose compliance officers have signed off on Comptoir certifications for hospitality procurement purposes. + +**Alcyone Tech and Arclamp:** The Comptoir shares the Lendel district institutional client base with Alcyone and Arclamp. All three companies are, at this moment, maintaining undisclosed product or process gaps relative to what their client-facing representations imply. The cluster is coincidence of geography rather than coordination — but a regulatory review triggered by any one of them would create an environment in which all three are examined. + +--- + +## What They Don't Talk About + +The Comptoir's provenance certification is performed through a contract with a documentation service called the Corridor Origin Registry — a company that charges per-certification and produces standardized documentation for any lot submitted to it with the required producer declaration. + +The Registry verifies that the producer declaration was submitted and that the documentation is complete. It does not independently verify the producer declaration's accuracy. It does not conduct site visits. It does not compare submitted lot characteristics against reference samples from verified sources. Its certification fee covers document preparation and registry filing; it does not cover investigation. + +The Comptoir knows this. It has always known this; the decision to use the Registry rather than a verification-competent authentication service was an explicit cost decision made when the authentication program was designed. Certificates from the Registry look identical to certificates from services that actually verify the chain of custody, because the Registry's format was designed to match the premium market's visual expectation. + +Among the Comptoir's current catalogue, a minority of products have provenance chains that have been independently verified at source. The majority carry certificates whose underlying producer declarations have never been checked by anyone with the means to do so. Whether any of those producer declarations are inaccurate is not a question the Comptoir can answer — because it has never asked. + +--- + +## Gameplay Relevance + +Comptoir Lendel is ambient luxury goods presence in Groombridge and a useful social environment for a player navigating the Lendel financial district. Its shopfront and account management relationships make it a natural contact point for premium-market investigative work. + +The authentication gap is the investigative thread. The Corridor Origin Registry's operational model — certification without verification — is documented in the Registry's own service terms, which are publicly available. A player who obtains Comptoir certificates and compares them to the Registry's service description will find that the gap between what a certificate implies and what was done to produce it is explicit in the Registry's own documentation. The question is whether the Comptoir's clients understand what they are purchasing and whether the Comptoir's marketing has accurately described what the authentication provides. + +Several of the Comptoir's high-value products — Calloway whisky lots, authenticated Brindlewood honey — are also connected to supply chains with their own integrity questions, creating layered investigative possibilities. + +The Comptoir's exposure is reputational rather than legal — the Corridor Origin Registry's terms are what they are, and clients who read the Registry's service description before relying on the certificates cannot claim they were deceived by the Registry's process. What they can claim is that the Comptoir represented the authentication as something it was not in its own marketing and client communications, which consistently use language implying independent verification. The financial houses of the Lendel district, whose hospitality operations use Comptoir products and cite their authentication in procurement justifications, have both standing and motivation. The Comptoir's market position is entirely built on the trust that its authentication implies; the trust is the product, and the product has been partially constructed from materials that do not support it. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters; primary market; Lendel district location +- [Calloway Distillery](calloway-distillery.md) — Key supplier; Calloway single malt catalogue +- [Brindlewood Honey](brindlewood-honey.md) — Supplier; north reach terroir product +- [Arclamp](arclamp.md) — Lendel district enterprise; shared institutional client base +- [Alcyone Tech](alcyone-tech.md) — Adjacent Lendel district; overlapping premium client relationships + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/coriolis-exchange.md b/wiki/corporations/coriolis-exchange.md index f2191fcff..e9cd1b0b4 100644 --- a/wiki/corporations/coriolis-exchange.md +++ b/wiki/corporations/coriolis-exchange.md @@ -1,24 +1,101 @@ --- title: "Coriolis Exchange" -description: "Coriolis Exchange — premium service provider based in Groombridge, core" +description: "Groombridge multi-currency settlement and transit exchange service — the practical mechanism by which corridor travelers convert Tractus holdings to local currencies, running a rounding methodology that captures fractions at scale across millions of transactions" slug: coriolis-exchange category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [service_premium, core, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, alcyone-tech, meridian-risk, nordhavn-financial] --- # Coriolis Exchange -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Multi-Currency Settlement and Exchange Service +**Also Known As:** Coriolis **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; inward corridor transit exchange secondary +**Headquarters:** Groombridge (GJ 380), Lendel district +**Classification:** Sub-Syndic financial services; licensed exchange operator under Lattice Commission currency frameworks -Coriolis Exchange is a premium service provider operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +The corridor runs on multiple currencies. Tractus denominations clear the long-haul commercial transactions that make interstellar trade possible, but the day-to-day exchange at any given system uses whatever that system's economic tradition prefers — Marks in the west reach, local currencies in outer systems, Tractus only in the core financial districts where institutional clearing is the primary activity. A traveler moving across the corridor, or a merchant managing multi-system accounts, requires exchange services at every transition point. + +Coriolis Exchange provides those services at Groombridge and, through a network of correspondent relationships, at seventeen additional systems across the inner corridor. It is not a bank. It does not hold deposits or provide credit. It performs one function — converting currency holdings between denominations at published rates — and performs it reliably, quickly, and with the institutional documentation that commercial clients require for their accounting records. The company processes several hundred thousand transactions per month across its network. This scale is the basis of its business model in ways that are not fully apparent from the published rate sheets. + +--- + +## Origin + +Coriolis Exchange was founded twenty-eight years ago by a financial services administrator named Pieter Anstey who had spent a decade processing currency conversions as an internal function for a mid-size Groombridge commercial house. The conversion function was being charged to the commercial house at rates set by whatever exchange service was available; Anstey's position was that the rates were high and the service was unsophisticated, and that a dedicated exchange operation built around transaction volume rather than per-conversion margin could undercut the existing providers while maintaining profitability. + +He was correct. The initial Groombridge operation, launched with three terminal stations in the Lendel district, took market share from established providers within two years on the basis of published rates that were measurably better. Growth to correspondent relationships at adjacent systems followed over the next decade as commercial clients with multi-system operations found it more efficient to use a single exchange provider across their corridor footprint. + +--- + +## Operations + +**Services:** Currency exchange between Tractus denominations and Mark, between Tractus and major outer-reach local currencies, and between regional denominations for clients managing cross-corridor commercial accounts. Exchange at published rates with immediate settlement for personal transactions; negotiated rate structures for commercial clients above defined volume thresholds. + +**Network:** Physical exchange terminals at Groombridge — six in the Lendel district, two at the transit hub. Correspondent relationships at seventeen additional systems, through which Coriolis transactions can be initiated and settled remotely. The correspondent network is maintained through service agreements with local financial operators who handle the physical terminal operations and are paid a per-transaction fee by Coriolis. + +**Clients:** A mix of personal (corridor travelers, individuals with multi-system holdings) and commercial (trading houses, import operations, merchants managing multi-denomination accounts). The commercial clients represent the volume; the personal clients represent the transaction count. + +**Licensing:** Lattice Commission licensed exchange operator. Required disclosures include published exchange rates, fee structures, and settlement timing. Coriolis complies with all required disclosures. + +--- + +## Political Relationships + +**Groombridge Settlement House:** GSH's clearing infrastructure and Coriolis's exchange operations are complementary layers of the same financial system — GSH clears institutional Tractus transactions; Coriolis handles the personal and small-commercial conversions that the clearing infrastructure doesn't reach. The Settlement House refers clients to Coriolis for currency conversion needs outside its institutional scope. This referral relationship means Coriolis's service quality is implicitly endorsed by GSH, which has no visibility into the rounding methodology. + +**Meridian Risk:** Meridian Risk's underwriting operations require multi-currency transaction records for premium and claim processing, and Coriolis provides exchange documentation for a portion of Meridian's client transactions. The relationship is transactional rather than strategic, but it gives Meridian's compliance team exposure to Coriolis transaction records — records that document what the rounding methodology looks like at the transaction level. + +**Nordhavn Financial:** Nordhavn is Coriolis's primary west reach correspondent partner, handling Mark-currency exchange on the western corridor nodes of Coriolis's network. The correspondent relationship means Nordhavn's exchange terminals use Coriolis's rate infrastructure and rounding methodology, extending the methodology's application beyond Coriolis's directly operated terminals. Nordhavn signed the correspondent agreement without reviewing the technical specification annex that documents the rounding rule. + +--- + +## What They Don't Talk About + +Coriolis's published rates are accurate. Its fee schedule, disclosed as required on page 34 of the standard service agreement, is also accurate. What neither document fully describes is the rounding methodology applied to transaction calculations. + +When Coriolis calculates the output of a currency conversion, it rounds to the nearest unit of the output denomination. This is standard and expected. What is not prominently disclosed is that the rounding rule applied to transactions below a defined size threshold rounds to the nearest full unit in the direction that benefits Coriolis rather than randomly or in the client's favor. On a conversion of 47.3 Marks, the client receives 47 Marks; on 47.7, they receive 47 Marks. The 0.3 and 0.7 fraction captures are credited to a Coriolis settlement account. + +Each individual capture is trivial. Across hundreds of thousands of transactions per month, the settlement account accumulates meaningful volume. The methodology is documented in the service agreement's technical specification annex, which is available on request. It is not summarized in the fee schedule, the published rate display, or any client-facing communication that a personal transaction client would be expected to read. + +The commercial clients above the volume threshold negotiate their rate structures individually and are not subject to the standard rounding methodology. The rounding capture falls disproportionately on personal transaction clients — travelers and individuals — for whom the per-transaction amount is genuinely negligible but whose aggregate contribution to Coriolis's settlement account is substantial. + +--- + +## Gameplay Relevance + +Coriolis Exchange is ambient financial infrastructure in Groombridge and a practical service that player characters use during corridor transit — exchange terminals appear in transit hubs, commercial districts, and transit accommodation. The company is not a primary investigation target under most circumstances. + +The rounding methodology is an investigative thread in financial practice contexts. The technical specification annex exists and is available on request; the gap between what the disclosure says and what a client who read only the standard materials would understand is the substance of a consumer financial practice complaint. The aggregate settlement account — which exists, has a balance, and is described internally as a "transaction reconciliation reserve" — is the evidence that the methodology is a revenue mechanism rather than a technical necessity. + +Coriolis's correspondent network also makes it a useful intelligence layer — transaction records at Coriolis terminals document financial flows between individuals and commercial parties across seventeen systems. + +The rounding settlement account is the cleanest investigative target: it exists, it has a balance history, and it is described internally in language that acknowledges its function while framing it as operational bookkeeping. A player who obtains the account records and the rounding methodology documentation has evidence of a systematic revenue mechanism whose existence is not disclosed to the personal transaction clients who fund it. The commercial clients who negotiated individual rate structures are not affected and have no standing in a complaint — which means the case depends on assembling enough personal transaction clients to make the aggregate picture legible. The financial authority that would hear such a complaint is the Lattice Commission's consumer financial services panel, which has not previously received a rounding methodology complaint. Coriolis's legal position, if challenged, rests entirely on the page-34 disclosure — which is accurate, but which the Commission may or may not accept as sufficient notice for a practice generating the revenues the settlement account documents. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters and primary terminal network +- [Groombridge Settlement House](groombridge-settlement-house.md) — Institutional relationship; clearing infrastructure overlap +- [Alcyone Tech](alcyone-tech.md) — Lendel district peer; institutional client overlap +- [Meridian Risk](meridian-risk.md) — Financial services peer; Lendel district +- [Nordhavn Financial](nordhavn-financial.md) — Correspondent partner; west reach exchange network + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/cygni-combines.md b/wiki/corporations/cygni-combines.md index d1ea85d74..5850d2936 100644 --- a/wiki/corporations/cygni-combines.md +++ b/wiki/corporations/cygni-combines.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Cygni B (GJ 820B) tags: [electronics, advanced_alloys, manufacturing, assembly, tractus, core] decision_refs: [D-175] -cross_refs: [] +cross_refs: [luanda-fabrication] --- # Cygni Combines diff --git a/wiki/corporations/dalbit-systems.md b/wiki/corporations/dalbit-systems.md index ef8960839..bac0ff1ff 100644 --- a/wiki/corporations/dalbit-systems.md +++ b/wiki/corporations/dalbit-systems.md @@ -1,24 +1,98 @@ --- title: "Dalbit Systems" -description: "Dalbit Systems — precision technology manufacturer based in Seongho, east reach" +description: "Seongho precision electronics and navigation systems manufacturer — east reach sensor and guidance hardware with an exclusive component supply arrangement that the company's clients are not told about" slug: dalbit-systems category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Seongho (GJ 660A) tags: [tech_premium, east_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [higashiyama-vehicle, hangang-studio, kumho-navigation] --- # Dalbit Systems -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Electronics and Navigation Systems Manufacturer +**Also Known As:** Dalbit, DS **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Seongho (GJ 660A) +**Scope:** East reach primary; inward corridor navigation systems secondary +**Headquarters:** Seongho (GJ 660A) — east reach, 5 hops from Gateway +**Classification:** Sub-Syndic precision electronics enterprise; navigation and sensor systems supply -Dalbit Systems is a precision technology manufacturer operating out of Seongho (GJ 660A). Details to be expanded. +--- + +## Overview + +The east reach's navigation environment is particular: dense system packing in certain corridors, variable gate geometry at the outer edges, and a transit infrastructure that developed faster than the standardization frameworks that would have made component interoperability straightforward. The practical result is that navigation and sensor hardware for east reach transit often needs to be calibrated specifically for local conditions rather than configured from general-purpose components designed for the core corridor's more predictable geometry. + +Dalbit Systems has built its market position on this specificity. The company's navigation and sensor products are calibrated at manufacture for east reach transit conditions, include support for the legacy communication protocols still common in the outer east systems, and are backed by a service network that can reach most east reach ports within a reasonable transit interval. Clients who have bought Dalbit are clients who found that inward general-purpose suppliers provided hardware that worked acceptably in standard conditions and degraded noticeably in the corridor's more demanding passages. Dalbit's comparative advantage is that its hardware was designed for the demanding passages rather than optimized for the easy ones. + +--- + +## Origin + +Dalbit was founded thirty-five years ago by a navigation engineer named Han Ju-won, who had spent fifteen years maintaining navigation systems on east reach cargo transports and had accumulated, through direct operational experience, a detailed technical understanding of the ways that inward-designed navigation hardware failed in east reach conditions. His founding proposition was that this knowledge, formalized into product specifications, would produce hardware measurably superior to inward imports for east reach clients. + +The first product line — a sensor calibration module for existing navigation systems — was designed to retrofit hardware that transit operators already had and correct its east reach performance deficiencies without requiring full system replacement. The retrofit approach gave Dalbit access to an installed base that already existed and demonstrated the performance improvement in conditions clients could directly observe. Full system products followed six years later, once the retrofit reputation had established Dalbit as a credible hardware source. + +--- + +## Operations + +**Product lines:** Navigation systems for transit vessels — sensor arrays, gate approach processors, and integrated guidance systems calibrated for east reach corridor conditions. Sensor hardware for surface operations — proximity detection, environmental monitoring, positioning systems for use in mining and industrial applications. Communication interface units that bridge legacy east reach protocols to current-generation transit infrastructure. Calibration services for third-party hardware. + +**Manufacturing:** Single facility at Seongho. Seventy-eight employees, approximately half in engineering and technical production roles. The facility is not large; Dalbit's products are high-precision and low-volume by design. The engineering staff is what makes the products work; the manufacturing floor executes specifications the engineering team produces. + +**Certification:** Lattice Commission navigation hardware certification for all applicable product lines. East reach regional transit authority certification additionally required for certain gate approach systems; Dalbit holds all applicable regional certifications. + +**Service:** Technical service contracts with most major east reach transit operators. Dalbit maintains service engineers at Seongho and two adjacent systems. + +--- + +## Political Relationships + +**Higashiyama Vehicle:** Higashiyama's vehicle line uses Dalbit navigation systems as standard integration in its atmospheric and surface transport products. The integration creates a mutual dependency — Higashiyama's vehicles are tested and certified with Dalbit hardware; a navigation system change would require re-certification. Dalbit's service contract requirement for Dalbit-sourced components therefore extends through Higashiyama's service network to Higashiyama vehicle operators who may not realize their navigation maintenance is locked to a single supplier chain. + +**Kumho Navigation:** Kumho is Dalbit's primary direct competitor in east reach navigation systems and the company that would most benefit from Dalbit's undisclosed supplier ownership becoming public. Kumho has complained informally to the east reach transit authority about the single-source service requirement that Dalbit's contracts impose, arguing it constitutes a barrier to competing maintenance provision. The authority has not acted; Kumho does not know about the Mirae ownership position that would give the complaint substantially more force. + +**Lattice Commission:** Dalbit's navigation hardware certification and its Commission registration are the two filing contexts where the Mirae ownership stake is disclosed. The Commission's commercial registration team and its certification team operate independently; neither has flagged that a company certifying hardware also partially owns its primary component supplier. This is not a gap in Commission rules — it is a gap in cross-departmental review. + +--- + +## What They Don't Talk About + +Dalbit's navigation system product line relies critically on a class of high-precision optical sensor component that the company does not manufacture. These components are sourced exclusively from a single supplier — Mirae Optical Components, a small manufacturer operating out of a neighboring system. The exclusivity is the result of a supply contract that Dalbit negotiated ten years ago, which gives Mirae exclusive supplier status for the sensor class in exchange for pricing and priority allocation commitments. + +The arrangement is commercially standard. What Dalbit's procurement documentation does not disclose to its clients — and what is absent from Dalbit's product specifications — is that Dalbit holds a 31% ownership stake in Mirae Optical Components, acquired through a private placement four years ago. When Dalbit clients ask why their navigation systems can only be serviced with Dalbit-sourced optical components, they are told it is an engineering compatibility requirement — the sensor geometry is calibrated to Mirae's specific manufacturing tolerances and cannot be substituted without recalibration that Dalbit controls. + +This is technically accurate. It is not the complete explanation. Dalbit's service contract terms, which require clients to use Dalbit-sourced components for warranty-covered maintenance, ensure that every service event on a Dalbit navigation system generates parts revenue that flows partially back to a company Dalbit co-owns. The ownership position is disclosed in Dalbit's Commission registration filings; it is not disclosed in client contracts, procurement documentation, or service agreements. + +--- + +## Gameplay Relevance + +Dalbit Systems is technical background presence in east reach transit environments — its hardware is in navigation stations, on transport vessels, and in the communications infrastructure of systems that adopted east reach protocols before standardization. It is not a primary investigation target outside of procurement or supply chain investigations. + +The Mirae ownership arrangement is the investigative thread. The 31% stake exists in Commission registration filings. The service contract language requiring Dalbit-sourced components is in client contracts. The gap between "engineering compatibility requirement" and "we co-own the parts supplier" is demonstrable by comparison. A client who understood the relationship would have grounds to challenge whether the exclusive service requirement was justified on engineering grounds or commercial ones. + +Dalbit's service network also makes it a source of operational information about east reach transit activity — the engineers who service navigation systems observe the vessels they work on and the routes those vessels run. + +The Mirae ownership situation creates a specific vulnerability for Dalbit if exposed: the service contracts that require clients to use Dalbit-sourced components are standard maintenance terms that clients accepted without knowing the component supplier was partially Dalbit-owned. A client who subsequently discovers the ownership position and reviews the service contract has the basis of an undisclosed conflict complaint — the contractual requirement that the client buy from a supplier the company co-owns was not disclosed when the contract was signed. The "engineering compatibility" explanation that Dalbit provides when clients ask about the single-source requirement is technically accurate but incomplete in a way that the ownership disclosure would make clearly material. A player who can produce both the ownership documents and a service contract in the same room as an affected client has a conversation that does not require litigation to be consequential. + +--- + +**Cross-References:** +- [Seongho](../star-systems/GJ-660A/index.md) — Headquarters; primary manufacturing and client base +- [Higashiyama Vehicle](higashiyama-vehicle.md) — East reach technology peer; vehicle navigation integration client +- [Kumho Navigation](kumho-navigation.md) — East reach navigation peer; competitive and sometimes cooperative market position +- [Hangang Studio](hangang-studio.md) — Seongho-adjacent enterprise; shared east reach commercial context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/destilaria-confluencia.md b/wiki/corporations/destilaria-confluencia.md index 1ed6e710c..5f74a63a3 100644 --- a/wiki/corporations/destilaria-confluencia.md +++ b/wiki/corporations/destilaria-confluencia.md @@ -1,24 +1,108 @@ --- title: "Destilaria Confluencia" -description: "Destilaria Confluencia — regional specialty producer based in Confluência, south reach" +description: "South_reach artisanal spirit producer based at Confluência (GJ 566B) — two-century sugarcane heritage, locally adapted cultivar, and a premium aged line that has built the reputation the volume line quietly depends on" slug: destilaria-confluencia category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Confluência (GJ 566B) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [matahari-consumer-goods] --- # Destilaria Confluencia -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Artisanal Spirit Producer +**Also Known As:** the Destilaria, Confluencia (abbreviated, no accent) **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Confluência (GJ 566B) +**Scope:** Regional — south_reach corridor primary; inner-corridor specialty market secondary +**Headquarters:** Confluência (GJ 566B) — south_reach corridor +**Classification:** Sub-Syndic family enterprise; founding-cohort ownership compact -Destilaria Confluencia is a regional specialty producer operating out of Confluência (GJ 566B). Details to be expanded. +--- + +## Overview + +Destilaria Confluencia makes cachaça. It has made cachaça — specifically, an aged aguardente variant distilled from the sugarcane cultivar its founding families brought to Confluência and have been adapting to local conditions for two hundred and twenty years — as its primary commercial enterprise since the system's second generation. The spirit the Destilaria produces from its best batches is genuinely difficult to reproduce elsewhere. The sugarcane at Confluência has spent nine generations selecting for the system's specific conditions: the mineral content of the alluvial soil at the primary growing sites, the seasonal temperature variation, the fermentation character that the local microbial population imparts. You can buy sugarcane from another system and distill it at Confluência and produce competent spirit. It will not taste the same. + +This is the public proposition, and it is substantially accurate for the Destilaria's premium production. The full picture is more complicated. + +--- + +## Origin + +The settling families of Confluência arrived in the early wave_3 expansion from a predominantly Brazilian-Portuguese corridor community. They brought sugarcane cuttings, copper pot still designs, and the conviction that their distillation tradition required specific soil and water conditions to be practiced honestly rather than merely technically. The first generation planted and observed. The second generation distilled and sold locally. The third generation began exporting through south_reach trade routes. + +The name they gave the operation — Confluencia, without the accent mark of the system name, a practical simplification that became the brand's canonical form — was chosen for the meeting-of-waters character of the primary growing region, where two seasonal streams converge below the main distillery site and create the alluvial soil profile the cultivar prefers. The water is part of the product. Every batch traces to it. + +The current operation is in its seventh generation of the founding family network. Governance is shared among three families — the Medeiros, the Figueira-Santos, and the Braga-Pinto families — whose ancestor cohort founded the Destilaria together and whose descendants hold equal governance shares under a compact renewed every generation without formal amendment. + +--- + +## Operations + +**Production structure:** The Destilaria operates two distinct production lines that it does not publicly distinguish. The premium aged line — Confluencia Reserva, aged in local hardwood barrels for a minimum of eight years, and Confluencia Grande Reserva, aged fifteen years in imported cooperage sourced through north_reach forestry contracts — uses exclusively Confluência-grown sugarcane and follows the founding families' distillation specifications without variation. These batches are small, expensive, and genuinely representative of the terroir claim. + +The volume line — Confluencia Branca, sold in larger quantities through standard south_reach distribution channels — does not follow the same specification. During harvest shortfalls, which have occurred in roughly one in four growing seasons over the past thirty years due to yield variability in the local cultivar, the production team blends locally-produced spirit with off-system industrial ethanol sourced through a logistics contractor. The blending is managed to maintain flavour profile consistency. The label does not explicitly claim geographic origin for the spirit base. + +**Workforce:** Forty-one people, primarily in cultivation, fermentation, and barrel management. The distillation is overseen by a production head from the Medeiros family, as it has been for four of the seven generations. + +**Distribution:** Premium production moves through specialty distributors in the inner corridor. Volume production moves through standard south_reach freight channels, consolidated through logistics contracts managed by a subsidiary called Vias de Sul Transporte, registered at Confluência under a separate commercial filing. + +--- + +## Products + +**Confluencia Reserva** — the eight-year expression. Amber, smooth, a long finish carrying the specific mineral character of the alluvial soil at the primary growing site. Distributed in modest quantities to south_reach markets and specialist inner-corridor buyers. Provenance documentation included. This is what the Destilaria's reputation rests on. + +**Confluencia Grande Reserva** — the fifteen-year expression, produced in limited quantities from the oldest barrel stock. Not widely available outside the primary south_reach systems. Regarded by the small community who track such things as one of the corridor's genuine terroir spirits, specific to a place and unreproducible elsewhere. + +**Confluencia Branca** — the unaged volume expression. Sold primarily in the south_reach at accessible price points. What most consumers encounter when they encounter Confluencia at all. The product that funds the premium operations. + +--- + +## Political Relationships + +**Matahari Consumer Goods:** The dominant economic institution in the Confluência system by a significant margin. Matahari manufactures household goods and consumer essentials at industrial scale; the Destilaria is a boutique artisanal operation. They do not compete. They share logistics infrastructure — the same freight consolidation nodes, the same transit scheduling through the system's primary gate, occasionally the same cargo holds on outbound shipments. Matahari's procurement team has asked twice whether the Destilaria would be interested in co-branded gift-set arrangements. Both times, the founding families declined. They consider Matahari's commercial scale incompatible with the Destilaria's brand positioning. + +**Lattice Commission:** The Commission's agricultural product authentication framework applies to geographic origin claims in spirits production. Destilaria Confluencia holds a current certification for its premium aged line. The certification was granted following an inspection of the Reserva and Grande Reserva production. The volume line was not within the inspection scope. + +**South_reach distribution network:** The Destilaria's volume production moves through a broker relationship with south_reach bulk freight handlers. The logistics contractor, Vias de Sul Transporte, manages the freight contracts and the ethanol sourcing relationship on the Destilaria's behalf. The Destilaria's internal accounts treat Vias de Sul as a standard logistics vendor. + +--- + +## What They Don't Talk About + +Vias de Sul Transporte is not a third-party logistics firm. It was incorporated eleven years ago by Catarina Medeiros-Faria, the eldest daughter of the current production head, three months before she was given responsibility for the volume line's logistics management. The incorporation documents are filed at Confluência and are publicly accessible. The connection between the firm and the Medeiros family requires looking for it. + +The service fees that Vias de Sul charges the Destilaria run approximately thirty-five percent above market rate for comparable south_reach freight logistics work. The governance compact requires unanimity among the three founding family networks for amendments to the cost structure. The Figueira-Santos and Braga-Pinto families receive the after-cost dividend from production; they have been receiving a below-market return for eleven years without knowing that a portion of production costs flows to a Medeiros family member rather than to an independent vendor. + +The fermentation production logs, which document the ethanol sourcing volumes and origins for the Branca line, exist in the Destilaria's internal archive. They have never been requested by Commission auditors. + +--- + +## Gameplay Relevance + +Destilaria Confluencia is useful for investigations centered on beneficial ownership structures, contract self-dealing, and the gap between certification scope and production reality. A small institution with a large documentation trail. + +The productive investigation threads are: + +- **The logistics subsidiary** — Vias de Sul Transporte's commercial filing is public at Confluência. Tracing beneficial ownership requires accessing the commercial register and cross-referencing it against the Destilaria's internal procurement accounts. The Figueira-Santos and Braga-Pinto families are the parties who have been harmed; presented with evidence, they would have standing to pursue a governance dispute. Whether they would act on it depends on how much they value the compact's stability. +- **The production logs** — the fermentation archive establishes what was blended into the Branca line and at what ratios. Whether this constitutes a Commission violation depends on the certification scope wording. A player who can access both documents and understands the authentication framework would know if there is a reportable discrepancy — and who the correct recipient of that report would be. +- **The certification timing** — the pattern of Commission inspection visits and production scheduling over the past eleven years shows a consistent correlation between inspection dates and peak local production months. The pattern itself is evidence. + +--- + +**Cross-References:** +- [Confluência](../star-systems/GJ-566B/index.md) — Headquarters system; founding terroir; primary growing region +- [Matahari Consumer Goods](matahari-consumer-goods.md) — Co-system industrial neighbor; shared logistics infrastructure; declined commercial partnership + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/durban-engineering.md b/wiki/corporations/durban-engineering.md index 2d3ffa4a7..e0b190693 100644 --- a/wiki/corporations/durban-engineering.md +++ b/wiki/corporations/durban-engineering.md @@ -1,24 +1,99 @@ --- title: "Durban Engineering" -description: "Durban Engineering — precision technology manufacturer based in Isibaya, south reach" +description: "Zulu-South African structural monitoring and environmental sensing manufacturer at Isibaya (GJ 905) — mine safety systems, atmospheric analyzers, and the diagnostic hardware that tells extraction operators when conditions are deteriorating before the equipment does" slug: durban-engineering category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 -scope: regional +updated: 2026-04-22 +scope: south_reach primary; inner corridor extraction operations secondary faction_type: economic headquarters: Isibaya (GJ 905) tags: [tech_premium, south_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [stalownia-kowalski, baektu-mining-alliance, luanda-fabrication] --- # Durban Engineering -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Structural Monitoring and Environmental Sensing Systems +**Also Known As:** Durban, DE **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Isibaya (GJ 905) +**Scope:** South_reach extraction corridor primary; inner corridor specialist contracts secondary +**Headquarters:** Isibaya (GJ 905) — 2-aperture spur, 7 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; extraction sector safety specialist -Durban Engineering is a precision technology manufacturer operating out of Isibaya (GJ 905). Details to be expanded. +--- + +## Overview + +Durban Engineering does not build the machines that mine. It builds the systems that tell you when those machines are about to fail, and when the environment they are operating in is about to do the same. Structural stress monitors, atmospheric composition analyzers, vibration-pattern interpreters, pressure sensors for deep extraction shafts — these are Durban's product lines, and they are the layer of hardware that sits between a mining operation and the category of incident that ends careers and occasionally ends systems. + +The distinction between the hardware that extracts and the hardware that monitors is, in commercial terms, the distinction between Stalownia Kowalski and Durban Engineering. Stalownia builds the rig. Durban's systems tell you when the rig is operating outside safe parameters. Both are necessary. In the south_reach extraction corridor, where environments are generally less forgiving and systems are far enough from core infrastructure that an incident cannot wait for specialists to transit from the inner corridor, that necessity has made Durban's product category a standard specification rather than an optional upgrade. + +--- + +## Origin + +The founders were safety engineers from Isibaya's mining sector — Zulu-South African heritage, part of the broader south_reach settlement cohort that had been building extraction operations for two generations before recognizing that the rate of serious incidents was systematically higher than the commercial risk models acknowledged. The problem was data. Extraction operators knew when equipment failed; they were receiving insufficient warning that failure was approaching. Monitoring existed in fragments — each equipment supplier included diagnostic capability in their own products, but there was no integrated picture of the operational environment as a whole. + +The founding insight was integration. A single monitoring architecture that could aggregate sensor data from multiple equipment types, compare readings against environmental baselines, and flag developing conditions before they became emergencies. The first Durban systems were simple by current standards — structural stress and atmospheric composition in a single package, calibrated for the rock formations and atmospheric conditions typical of south_reach subsurface operations. They worked well enough that word moved through the extraction sector without any marketing effort. + +The relationship with Stalownia Kowalski was established within the first decade, when Stalownia's maintenance contracts started specifying Durban monitoring systems as companion installations alongside new equipment. Neither company required the relationship for commercial survival. Both found it commercially advantageous, and that mutual advantage has kept it stable across several generations of both companies' leadership. + +--- + +## Operations + +**Structural monitoring:** The core product line. Sensor packages that integrate with extraction equipment and mine infrastructure to provide continuous structural health data — stress concentration readings, deformation tracking, vibration signatures that indicate specific failure modes. The monitoring systems run continuously and flag anomalies against site-specific baselines calibrated at installation. A well-maintained Durban installation produces a running record of an extraction site's structural health over its operational life. + +**Atmospheric sensing:** Composition analyzers for extraction environments — detecting gas infiltration, oxygen depletion, particulate concentrations, and pressure differentials that indicate structural breach risk. Durban's atmospheric systems operate under conditions that most commercial sensor technology is not designed for. The extraction sector pays above standard commercial rates for sensors that work reliably in environments where standard sensors do not. + +**Service contracts:** The hardware is sold at margins appropriate to safety-critical equipment. The ongoing value is in the service contracts — periodic calibration, firmware updates, sensor replacement, and the review reports that translate raw monitoring data into operational recommendations. Long-term extraction operations need these reviews continuously; Durban's service contracts run for the operational life of the site. + +**Isibaya manufacturing:** A focused facility by industry standards, employing around 200 people across engineering, manufacturing, calibration, and field service. The workforce attrition is low; field service roles at south_reach extraction sites attract engineers who want to work in the field, and Isibaya's extraction culture treats that preference as a professional qualification. + +--- + +## Political Relationships + +**Stalownia Kowalski:** The most commercially significant relationship in Durban's portfolio. Stalownia's maintenance contracts regularly specify Durban monitoring systems alongside the equipment they service, which means Durban installations accompany Stalownia equipment across the south_reach extraction corridor. The relationship is complementary and professionally warm. Neither company has tried to move into the other's product category. The division of territory — Stalownia extracts, Durban monitors — has been clean and mutually beneficial for three generations. + +**Baektu Mining Alliance:** A major direct client for belt operation monitoring. BMA's five processing stations each run Durban structural and atmospheric systems, calibrated for the specific conditions of asteroid belt operations. The BMA relationship is long-standing enough that Durban's field service team knows BMA's equipment configurations in significant detail — which is also detail about BMA's operational margins and practices that Durban holds as a matter of standard service knowledge. + +**The Lattice Commission:** Safety-critical monitoring equipment for extraction operations is subject to the Commission's industrial safety certification framework. Durban's products carry Commission certification across all product lines. The certification relationship is compliance-standard — Durban files the required documentation, the Commission audits periodically, and certifications renew without incident. The Commission's field presence at south_reach extraction systems is thin; the certification process relies primarily on Durban's own documentation. + +--- + +## What They Don't Talk About + +Durban's flagship monitoring system contains a diagnostic query interface that was designed for factory testing and calibration during production. The interface is not documented in any product manual or customer-facing specification. It accepts a specific protocol handshake and returns raw sensor data at a level of detail that substantially exceeds the system's standard monitoring output — including atmospheric composition readings at molecular resolution that go beyond what the product is certified to provide. + +The interface was never removed from the production firmware because removing it would have required a full firmware revision, and the production firmware was stabilized after the first major product generation. Three extraction operators — all technically sophisticated enough to have examined the hardware at a level their purchasing agreements do not actually authorize — discovered the interface independently over the past decade. They have been using it to monitor atmospheric composition signatures that indicate undisclosed mineral deposit formations at adjacent claim boundaries. In effect, they have been running an unlicensed survey operation using Durban's monitoring network as the sensor platform. + +Durban's own engineering team discovered what those operators were doing approximately two years ago, when they were investigating an unrelated firmware anomaly and found the diagnostic handshakes in the monitoring system's communication logs. Their subsequent review identified which specific sites were being queried and at what intervals — which, because the atmospheric signatures those operators were monitoring are site-specific, also told them where those operators believe undisclosed deposits are located. + +The engineering team filed an internal report. The report has not reached the board. The senior engineer responsible for it has been building a parallel dataset from the anomalous atmospheric signatures across those locations — stored on an engineering workstation not connected to the main network — and has not decided what to do with it. + +--- + +## Gameplay Relevance + +Durban Engineering is ambient infrastructure in the south_reach extraction corridor. Its monitoring hardware is present at most significant extraction operations, which means its sensor data is present wherever those operations exist. For a player investigating an extraction site incident, a structural failure, or why a site was abandoned before its reserves were depleted, Durban's monitoring records are a primary evidence source. + +The diagnostic interface is an investigative thread with multiple directions. The three operators exploiting it are engaged in undisclosed mineral survey activity that may constitute claim-rights violations, depending on what the atmospheric signatures indicate and what those operators do with the information. The engineering team's parallel dataset exists and is accessible to someone who can reach the workstation it resides on. The senior engineer who compiled it is someone with information he has not decided how to use, which makes him both a potential source and a potential liability. + +--- + +**Cross-References:** +- [Isibaya](../star-systems/GJ-905/index.md) — Headquarters system; south_reach extraction hub +- [Stalownia Kowalski](stalownia-kowalski.md) — Primary equipment partner; Stalownia maintenance contracts specify Durban monitoring systems +- [Baektu Mining Alliance](baektu-mining-alliance.md) — Major client; belt operation monitoring across five processing stations +- [Luanda Fabrication](luanda-fabrication.md) — Substrate supplier; manufactures the precision electronics substrates in Durban's monitoring hardware +- [Lattice Commission](../factions/lattice-commission.md) — Safety certification authority; industrial standards framework + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/eastbay-trading.md b/wiki/corporations/eastbay-trading.md index 8a42e1d3d..452001d34 100644 --- a/wiki/corporations/eastbay-trading.md +++ b/wiki/corporations/eastbay-trading.md @@ -1,24 +1,100 @@ --- title: "Eastbay Trading" -description: "Eastbay Trading — consumer goods manufacturer based in Bridgepoint, east reach" +description: "Bridgepoint consumer goods distributor and importer — a transit hub operation that moves goods across the east reach at high volume, with warehouse arrangements that function as quiet price coordination during scarcity events" slug: eastbay-trading category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Bridgepoint (GJ 53A) tags: [commodity_branded, east_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [nexus-way-express, dalbit-systems, commonstock-foods] --- # Eastbay Trading -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Consumer Goods Distributor and Transit Hub Importer +**Also Known As:** Eastbay **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Bridgepoint (GJ 53A) +**Scope:** East reach primary; transit hub distribution secondary +**Headquarters:** Bridgepoint (GJ 53A) — east reach, 3 hops from Gateway +**Classification:** Sub-Syndic commercial enterprise; consumer goods import and corridor distribution -Eastbay Trading is a consumer goods manufacturer operating out of Bridgepoint (GJ 53A). Details to be expanded. +--- + +## Overview + +Bridgepoint earns its name: a system positioned at the intersection of east reach and core corridor transit lanes, serving as the primary resupply and redistribution point for goods moving into the outer east. What passes through Bridgepoint on its way to more distant systems represents the economic lifeline of communities that cannot produce most of what they consume locally. The entity that manages the largest share of this flow is Eastbay Trading. + +Eastbay is not a manufacturer. It is a distributor — the organization that takes goods arriving at Bridgepoint from inward suppliers, holds them in warehouse facilities, manages the documentation and logistics that get them onto outbound transit vessels, and maintains the commercial relationships at both ends that make the supply chain function. It is an essential role, and Eastbay performs it competently. The company's efficiency in moving goods from arriving transit to departing transit is genuine and the outer reach communities that depend on it know it. + +What is less visible to those communities is that Eastbay's warehouse capacity, strategically held against outbound transit during specific market conditions, gives it the ability to influence the price of goods it moves without technically controlling that price — an arrangement documented in its own operational planning files under language that obscures the effect. + +--- + +## Origin + +Eastbay Trading was established forty-four years ago by a freight logistics operator who had spent a decade running cargo manifest services at Bridgepoint's transit hub and had identified that the handoff between inward transit arrivals and outbound east reach distribution was managed by multiple competing intermediaries operating without coordination, resulting in warehousing inefficiencies, documentation delays, and price instability that nobody in the chain preferred. A single well-capitalized distributor managing both sides of the handoff would eliminate the friction and could offer better terms to suppliers and east reach buyers simultaneously. + +The founding investment consolidated three smaller warehouse operators and two import agencies into a single entity with sufficient capacity and commercial coverage to offer the coordination that had been missing. The consolidation took five years to complete. After it was done, Eastbay's market position at Bridgepoint was effectively uncontested for standard east reach commodity goods. + +--- + +## Operations + +**Warehouse capacity:** Bridgepoint's largest commercial warehousing complex — eight facilities, combined capacity sufficient to hold approximately forty days of standard outbound cargo volume. The warehouses are not always full; goods move through in days to weeks depending on outbound transit scheduling and market conditions. + +**Import relationships:** Long-term supply agreements with eleven inward manufacturers covering the core categories of east reach consumer goods — food staples, basic electronics, household materials, medical supplies. The agreements set price schedules and allocation priorities; Eastbay guarantees purchase minimums and suppliers guarantee delivery schedules. + +**Distribution network:** Contracts with transit operators running east reach routes. Eastbay does not own transit vessels; it contracts cargo space on vessels operated by independent carriers. Nexus Way Express is its primary carrier relationship. + +**Documentation:** Eastbay manages the import documentation, customs declarations, and allocation records for everything that moves through its warehouses. This documentation represents a complete record of east reach consumer goods flows over the past four decades. + +--- + +## Political Relationships + +**Nexus Way Express:** Nexus Way Express is Eastbay's primary carrier partner for east reach outbound transit and the operational layer through which held goods eventually ship. The carrier relationship means Nexus Way's scheduling team has visibility into when Eastbay releases cargo from quality control holds — the transit schedule is coordinated. Whether Nexus Way's scheduling staff has identified the correlation between hold timing and price events is an open question; their operational logs are the secondary evidentiary layer for a hold-pattern investigation. + +**Dalbit Systems:** Dalbit is a regular import client of Eastbay's warehousing and distribution services for component shipments entering the east reach. The commercial relationship is standard, but it gives Dalbit's logistics team regular contact with Eastbay's warehouse management staff — contact that has produced an informal understanding of how Eastbay's quality control holds function. + +**Commonstock Foods:** Commonstock is one of Eastbay's largest food staples import accounts. The quality control holds that Eastbay applies during price pressure events affect Commonstock products among others. Commonstock's commercial team has noted the variable release timing on its east reach shipments but has attributed it to transit scheduling rather than deliberate hold decisions — in part because the hold documentation always cites quality reasons that are technically defensible. + +--- + +## What They Don't Talk About + +Eastbay's standard warehouse holding agreement includes a "quality control holding" provision that allows the company to delay outbound transit of a cargo lot pending quality verification. The provision exists for genuine purposes — contaminated food shipments, damaged electronics, certification disputes — and has legitimate applications. + +Over the past eight years, internal planning documents show that Eastbay's logistics team has applied quality control holds to staple goods shipments during periods when east reach market prices for those goods are in upward pressure. The holds delay outbound transit by three to fifteen days. During the hold period, market prices continue to rise. When goods release, they sell at the elevated price rather than the price at which they arrived. The quality control notation in the warehouse records attributes the delay to routine inspection processes. + +The practice is not documented as price coordination — it is documented as quality management with unfortunate timing. The operational planning files that show the correlation between hold decisions and price pressure events are internal documents that Eastbay does not share with suppliers, buyers, or transit operators. The suppliers who observe that their goods sometimes clear customs quickly and sometimes sit in quality control for two weeks have not been able to establish a consistent pattern because the holds are dispersed across product lines and timing varied enough to avoid obvious correlation. + +--- + +## Gameplay Relevance + +Eastbay Trading is commercial infrastructure in the east reach — its name appears on import documentation, warehouse receipts, and transit manifests throughout the corridor. Players navigating east reach supply chains will encounter Eastbay as the primary distribution intermediary. + +The quality control hold pattern is the investigative thread. The operational planning files exist in Eastbay's internal records. The correlation between hold timing and market price events can be demonstrated by cross-referencing the hold documentation against east reach commodity price records from the same periods. A player assembling a price manipulation case has the structure; locating the documents requires access to Eastbay's warehouse management systems or a source inside the logistics team. + +Eastbay's documentation records also represent a comprehensive intelligence source on east reach goods flows — what has been shipped to which systems, by whom, in what quantities, over the past four decades. + +The hold pattern is the investigative core, but the outer reach communities that depend on Eastbay's distribution are the human consequence. A system that experiences a scarcity event while Eastbay is holding goods in quality control is a community absorbing a price spike whose cause is not visible to it. The transit workers who pay inflated prices for staple goods during holds are not represented in the complaint architecture that would typically produce regulatory action — they are not commercial clients with contracts, they are end consumers whose purchases are aggregated through resellers. A player building a price manipulation case needs the operational planning files to establish intent; they can build the human impact picture from price records and community accounts that exist at the affected systems. The two sets of evidence together — the internal documentation and the community impact — are more powerful than either alone. + +--- + +**Cross-References:** +- [Bridgepoint](../star-systems/GJ-53A/index.md) — Headquarters; transit hub; warehouse complex location +- [Nexus Way Express](nexus-way-express.md) — Primary carrier partner; east reach transit routes +- [Dalbit Systems](dalbit-systems.md) — East reach commercial peer; electronics distribution overlap +- [Commonstock Foods](commonstock-foods.md) — Supplier; staple foods distribution through Eastbay network + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/endymion-instruments.md b/wiki/corporations/endymion-instruments.md index fcb2562bc..2bcfd19f6 100644 --- a/wiki/corporations/endymion-instruments.md +++ b/wiki/corporations/endymion-instruments.md @@ -1,24 +1,100 @@ --- title: "Endymion Instruments" -description: "Endymion Instruments — precision technology manufacturer based in The Narrows, deep frontier" +description: "The Narrows precision survey and navigation instrument manufacturer — deep frontier hardware built from partially salvaged components, sold new-warranted to buyers whose operating conditions depend on what the warranty does not cover" slug: endymion-instruments category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: The Narrows (GJ 875) tags: [tech_premium, deep_frontier, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [rare-vein-survey, dalbit-systems, grampian-systems] --- # Endymion Instruments -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Survey and Navigation Instruments +**Also Known As:** Endymion **Status:** Canonical -**Scope:** Regional — deep frontier operations -**Headquarters:** The Narrows (GJ 875) +**Scope:** Deep frontier primary; outer reach secondary +**Headquarters:** The Narrows (GJ 875) — deep frontier, 9+ hops from Gateway +**Classification:** Sub-Syndic precision engineering enterprise; frontier survey and navigation supply -Endymion Instruments is a precision technology manufacturer operating out of The Narrows (GJ 875). Details to be expanded. +--- + +## Overview + +The deep frontier begins where the established corridor thins — systems reachable by gate but not served by regular commercial transit, where survey work precedes any other kind of development and where the instruments used for that survey work need to function in conditions that inward manufacturers design around rather than for. The Narrows sits at the edge of this territory: a functional system with its own economy, but far enough out that its commercial culture is shaped by the practical realities of distance and the fact that resupply takes months. + +Endymion Instruments makes precision survey and navigation hardware for this environment. Spectrographic analyzers for prospecting operations. Positioning and orientation systems for mapping surveys. Navigation instruments for vessels operating in gateways with minimal infrastructure support. The company's products are specified for deep frontier use conditions: wide temperature tolerance, resistance to power fluctuation, repairability in the field by operators who cannot return the unit to a service center and wait. These specifications are real and the instruments that meet them are genuinely better suited to frontier operations than inward equivalents. + +The company's supply chain realities produce a feature of its products that Endymion does not advertise: a fraction of each instrument's components are not new. + +--- + +## Origin + +Endymion was founded twenty-six years ago by two survey engineers who had been running a prospecting equipment maintenance operation at The Narrows for a decade. The maintenance business required them to source components for instruments that were no longer in production, which meant developing relationships with salvage dealers who recovered working components from decommissioned equipment. These relationships gave Endymion's founders an unusually detailed knowledge of which components in commonly used instruments degraded fast, which lasted indefinitely, and which failed in characteristic ways that the inward manufacturers' warranties didn't cover. + +When the founders decided to manufacture rather than repair, they applied this knowledge to design instruments whose critical components were manufactured new to high specification while their secondary components — structural elements, non-critical interfaces, power conditioning units — were sourced from the salvage pipeline where available and new-manufactured where salvage couldn't supply. The result was instruments that performed to a high standard at a cost structure that the deep frontier could afford. + +--- + +## Operations + +**Product lines:** Survey instruments — spectrographic analyzers, chemical composition sensors, geological imaging units, all specified for field portability and operator repair. Navigation instruments — positioning systems, orientation units, and gate approach sensors for vessels and surface operations. Communication hardware — relay components and signal boosters for survey operations beyond established infrastructure. Calibration services for third-party instruments. + +**Manufacturing:** Single facility at The Narrows. Forty-one employees, approximately half in skilled technical manufacturing and half in engineering, design, and sourcing. The sourcing function is significantly more complex at Endymion than at most comparable manufacturers — managing salvage supply alongside new component procurement requires expertise that most manufacturers don't need. + +**Component sourcing:** New-manufactured optical elements, sensor arrays, and processing hardware for all primary instrument functions. Salvage-sourced structural components, power conditioning units, and secondary interfaces from decommissioned equipment, assessed against condition standards before use. The salvage fraction varies by product line and production batch depending on what's available in the salvage pipeline. + +**Certification:** Lattice Commission survey instrument certification for all applicable product lines. The certification applies to instruments meeting performance standards, not to manufacturing provenance of individual components. + +--- + +## Political Relationships + +**Rare Vein Survey:** Rare Vein Survey is Endymion's largest institutional client and the prospecting operation most dependent on the reliability of Endymion's navigation and spectrographic instruments. Rare Vein's survey claims, and the investment decisions that follow from them, rest on data generated by Endymion hardware. The relationship is commercially close — Endymion designs specific product configurations for Rare Vein's survey methodology — which means Rare Vein has less reason than a general market buyer to question whether the instruments they depend on were built to the standard they were sold against. + +**Dalbit Systems:** Dalbit manufactures navigation systems for transit applications in the east reach; Endymion manufactures survey instruments for frontier applications. The product lines are adjacent rather than directly competitive, and the two companies have an informal referral relationship for clients whose needs span both application areas. Dalbit's east reach distribution also provides Endymion with a wider corridor service relationship than its own service network would support. + +**Grampian Systems:** Grampian operates at the north reach outer corridor in agricultural and environmental monitoring — a different application area but the same "precision instruments for outer reach conditions" market philosophy. The two companies are aware of each other as peers in the same frontier instrument category. Grampian's approach of designing for local conditions parallels Endymion's design philosophy; the difference is that Grampian's supply chain does not include salvage components. + +--- + +## What They Don't Talk About + +Endymion's instruments carry certification marks and are sold as new-manufactured equipment with a new-equipment warranty. The warranty covers defects in materials and workmanship under normal operating conditions. The warranty exclusions, on page eight of the terms document, specifically exclude "failure modes arising from wear-related degradation in components with service history prior to the date of manufacture." + +This exclusion is unusual. New-manufactured equipment does not typically require it. Endymion's legal team drafted it specifically to exclude warranty coverage for failure modes characteristic of salvage optical components — a failure mode that occurs when previously-used optical elements degrade under thermal cycling stress in ways that new-manufactured equivalents resist. The exclusion is not flagged in any client-facing document as indicating that some components have prior service history; it reads as a standard wear exclusion that any equipment warranty might include. + +Buyers purchasing Endymion instruments for prospecting and survey operations are purchasing equipment whose warranty, as written, does not cover the failure mode most likely to affect its reliability in deep frontier service conditions. Endymion's customer service team, when component-related failures occur, cites the page-eight exclusion. The buyers, who have read "new" on the product description and assumed a full new-equipment warranty, typically disagree. The disagreements are handled case by case. + +--- + +## Gameplay Relevance + +Endymion Instruments is sector texture for deep frontier and outer reach survey contexts — its products appear in prospecting operations, geological survey sites, and on vessels running the deep frontier routes. A player operating in frontier territory will encounter Endymion hardware as standard equipment. + +The warranty exclusion is the investigative thread. The salvage component sourcing is documented in Endymion's production records. The warranty exclusion language is in the warranty terms. The gap between "new-manufactured equipment" and "contains components with prior service history" is demonstrable through procurement documents and a warranty terms analysis. Buyers who have experienced component failures and been denied warranty coverage are a potential source base. + +The deep frontier operational context also makes Endymion a node for investigation involving prospecting operations and survey results — the instruments it supplies are used to generate the data that drives resource claims, and the reliability of that data depends on whether the instruments are functioning to specification. + +The warranty exclusion is the legal exposure, but the operational consequence is broader. Survey data produced by an instrument whose optical components have degraded in ways the warranty doesn't cover is data whose reliability is unknown. Resource claims filed on the basis of that data — claims that trigger investment, expedition planning, and legal registration — rest on a measurement foundation that may be compromised. A player working in deep frontier resource claim investigation will find Endymion instruments at the base of the data chain and, behind the instruments, the question of whether the specific units involved had salvage optical components and what their condition was. The answer to that question is in Endymion's production batch records, which exist and identify which components in each serial-numbered instrument were salvage-sourced and from what decommissioned equipment. + +--- + +**Cross-References:** +- [The Narrows](../star-systems/GJ-875/index.md) — Headquarters; deep frontier position; primary client geography +- [Rare Vein Survey](rare-vein-survey.md) — Primary client type; frontier prospecting operations +- [Dalbit Systems](dalbit-systems.md) — Navigation systems peer; overlapping corridor market +- [Grampian Systems](grampian-systems.md) — Outer reach technology peer; frontier-adjacent market + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/erzgebirge-instruments.md b/wiki/corporations/erzgebirge-instruments.md index c992e7283..150188e92 100644 --- a/wiki/corporations/erzgebirge-instruments.md +++ b/wiki/corporations/erzgebirge-instruments.md @@ -1,24 +1,96 @@ --- title: "Erzgebirge Instruments" -description: "Erzgebirge Instruments — precision technology manufacturer based in Eisentor, west reach" +description: "Compact-zone precision metrology manufacturer at Eisentor (GJ 3454) — calibration standards, measurement instruments, and the physical reference artifacts from which the western corridor's manufacturing sector derives its tolerance claims" slug: erzgebirge-instruments category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 -scope: regional +updated: 2026-04-22 +scope: Compact zone primary; west_reach manufacturing sector secondary faction_type: economic headquarters: Eisentor (GJ 3454) tags: [tech_premium, west_reach, mark, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [westphalia-heavy-works, bergkraft-antriebswerke, compact-financial-exchange] --- # Erzgebirge Instruments -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Metrology and Calibration Standards +**Also Known As:** Erzgebirge, EI **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Eisentor (GJ 3454) +**Scope:** Compact zone manufacturing sector primary; west_reach corridor secondary +**Headquarters:** Eisentor (GJ 3454) — 2-aperture spur, 8 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; Compact zone measurement authority -Erzgebirge Instruments is a precision technology manufacturer operating out of Eisentor (GJ 3454). Details to be expanded. +--- + +## Overview + +Precision manufacturing requires precise measurement. A component machined to a specified tolerance is only machined to that tolerance if the instruments verifying it are accurate — which means the instruments must be calibrated, and the calibration must trace to a reference standard, and the reference standard must be verifiable. Erzgebirge Instruments occupies the end of this chain in the Compact zone: it maintains the physical calibration standards from which the western corridor's manufacturing sector derives its tolerance claims, and it produces the measurement instruments that manufacturing operations use to verify their work against those standards. + +This is foundational work that does not appear in procurement documents except as a line item, and does not appear in the accounts of industrial achievement except by implication. When Westphalia Heavy Works describes the tolerances its drilling equipment is machined to, those tolerances are meaningful because Westphalia's measurement instruments are calibrated, and because Erzgebirge's calibration traces to physical reference artifacts that are maintained with more care than most systems give to infrastructure of comparable importance. The invisibility of this function is a consequence of its reliability. When the measurement chain works, nobody thinks about metrology. + +--- + +## Origin + +The Erzgebirge range — the ore mountains on the old Saxon-Bohemian border — was historically a center of precision craftsmanship: mining engineering, clockmaking, instrument-making, and the systematic study of measurement that developed alongside them. The founding cohort that settled Eisentor carried that tradition in trained metrologists and instrument craftspeople who understood that the Compact's emerging manufacturing sector would need the same calibration infrastructure that the Earth-origin manufacturing tradition had required. + +The primary reference artifacts — physical calibration standards fabricated in the founding period and maintained at Eisentor ever since — were developed from the calibration laboratory traditions the founding generation brought with them. The Compact zone's industrial certification framework, developed through the Mark-denominated commercial structure, recognized Erzgebirge's calibration standards as the reference authority for western corridor manufacturing specifications. This recognition was never codified in a single formal document. It accumulated through three centuries of usage: manufacturing firms specifying Erzgebirge calibration in their own supplier contracts, and those contracts eventually becoming the de facto standard for what calibration means in the Mark zone. + +--- + +## Operations + +**Calibration services:** The primary service line. Manufacturing operations send instruments to Eisentor for periodic calibration against the primary reference, or contract Erzgebirge's field calibration teams to come to them. The process produces a calibration certificate — a documented record of the instrument's performance against the primary reference at the calibration date. These certificates are required documentation for manufacturing operations whose own product certifications specify calibrated measurement. In the Compact zone, an Erzgebirge certificate is the calibration certificate. + +**Instrument manufacturing:** Erzgebirge produces measurement instruments across a range of categories: dimensional gauges, force measurement systems, thermal calibration references, and the specialized instrumentation that high-precision manufacturing requires beyond standard commercial tolerance ranges. Instruments are manufactured at Eisentor and calibrated against the primary reference before shipment. + +**Reference maintenance:** The primary reference artifacts are maintained by a small, specialized team under conditions that minimize thermal, humidity, and vibration variation. The reference laboratory at Eisentor is the most environmentally controlled facility in the Compact zone's manufacturing infrastructure. Periodic intercomparison with Reach-wide calibration networks — exercises that verify whether regional calibration standards remain aligned with each other — is managed by Erzgebirge's standards team and reported to the Compact's industrial certification authority. + +**Mark-zone integration:** Erzgebirge's commercial model is fully embedded in the Compact's Mark-denominated economy. Calibration certificates are issued in Mark. The Compact's manufacturing standards reference Erzgebirge authority rather than the Assembly's calibration framework. The Assembly's own calibration authority at Gateway holds a formal equivalence agreement with Erzgebirge — each recognizes the other's certificates for cross-zone commercial purposes — but the day-to-day relationship is arm's-length. + +--- + +## Political Relationships + +**Westphalia Heavy Works:** Westphalia's heavy mining and extraction equipment manufacturing requires calibrated measurement across a wide range of component types. Westphalia's procurement specification requires Erzgebirge calibration certification for measurement instruments used in quality control. This is the Compact zone's largest single client for Erzgebirge's calibration services. The relationship is long-standing and routinely professional. Neither company has particular reason to examine it closely, which is part of why it has persisted for the better part of two centuries without renegotiation. + +**Bergkraft Antriebswerke:** Propulsion component manufacturing tolerances are among the tightest in the Compact zone's industrial sector. Bergkraft's engines require measurement precision at the upper edge of what Erzgebirge's standard services provide. The relationship has driven some of Erzgebirge's most technically demanding instrument development work. Bergkraft's engineers periodically collaborate with Erzgebirge's instrument team on specification development — which gives the propulsion manufacturer a more detailed understanding of Erzgebirge's calibration methodology than most clients have. + +**Compact Financial Exchange:** Erzgebirge's commercial operations are Mark-denominated and structurally embedded in the Compact's financial infrastructure. The CFX's clearing services handle Erzgebirge's intercompany settlements, and the CFX's commercial registry maintains Erzgebirge's Compact-zone certification authority record. The relationship is routine and foundational: Erzgebirge's authority to issue calibration certificates that manufacturing firms treat as authoritative traces partly to its CFX registration status, which is in turn what makes the Mark-zone certification framework a closed system. + +--- + +## What They Don't Talk About + +Thirty-one years ago, the senior metrologist responsible for the primary reference laboratory identified a systematic drift in the primary reference artifacts. The drift was small — in the parts-per-million range — and had apparently been accumulating over several decades before it became detectable in intercomparison results. The cause was traced to an imperfect thermal isolation system in the reference laboratory that had allowed a very slow, very consistent temperature variation to reach the primary standards. The variation was too small to flag any individual calibration as anomalous. Over three decades, it had produced a cumulative offset. + +The implication: every calibration Erzgebirge had performed during the drift period was internally consistent. Instruments calibrated against Erzgebirge standards agree with each other. Manufacturing operations using exclusively Erzgebirge-calibrated instruments had been producing components consistent with each other but systematically offset from the Reach-wide standards derived from independent primary references. This inconsistency is invisible within the Compact zone's manufacturing ecosystem, where Erzgebirge calibration dominates. It becomes visible when Compact-manufactured components interface with components from other calibration jurisdictions — the tolerance stack does not close. The handful of documented cases where this produced visible incompatibilities were attributed to specification interpretation differences between regional manufacturing standards. + +The corrective action: the thermal isolation system was replaced, new primary reference artifacts were fabricated, and the laboratory was re-certified. The new reference is accurate. The calibration lineage documentation represents the new and old references as continuous — a single reference standard whose documented history does not record the drift period as a gap. Historical clients were not notified or invited to re-certify instruments calibrated during it. The senior metrologist's discovery report is in the company's technical archive. The board decision record that responded to it is not. + +--- + +## Gameplay Relevance + +Erzgebirge Instruments is background infrastructure that becomes relevant whenever precision manufacturing or measurement standards are at issue. A player investigating why components from two apparently compatible suppliers do not fit together, or why a manufacturing operation's quality records do not match the physical evidence from a finished product, may find that the calibration lineage is part of the explanation. + +The drift period is a historical fact with ongoing consequences. Any Compact-zone component manufactured during it using exclusively Erzgebirge-calibrated measurement was produced to tolerances that are wrong in a specific, consistent, and documentable direction. Tracing the calibration history of a specific part — when it was made, which instruments measured it, whether those instruments carried Erzgebirge certification — tells you whether its dimensional specifications can be trusted against non-Compact components. + +The metrologist's discovery report is in the archive. The board's response is not. An investigator who knows to look for it and cannot find it, in a company whose core product is documentation, has found an absence that is itself evidence. + +--- + +**Cross-References:** +- [Eisentor](../star-systems/GJ-3454/index.md) — Headquarters system; Compact zone manufacturing hub +- [Westphalia Heavy Works](westphalia-heavy-works.md) — Primary calibration client; Compact zone heavy manufacturing +- [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) — High-precision client; propulsion component manufacturing +- [Compact Financial Exchange](compact-financial-exchange.md) — Mark-zone certification registry; financial infrastructure + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/ferreira-monteiro.md b/wiki/corporations/ferreira-monteiro.md index 5111ff2dd..7f06308a5 100644 --- a/wiki/corporations/ferreira-monteiro.md +++ b/wiki/corporations/ferreira-monteiro.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Matamba (GJ 884) tags: [] decision_refs: [] -cross_refs: [] +cross_refs: [luanda-fabrication] --- # Ferreira Monteiro @@ -85,7 +85,7 @@ The second silence is about the founding partners themselves. Amélia Ferreira a ## Gameplay Relevance -Ferreira Monteiro is not present in the v0.1 slice at Van Maanen's Star. It operates five hops from Matamba, in the south_reach corridor. Its relevance to the vertical slice is as institutional background: commercial disputes that a player might encounter involving south_reach cooperative freight — documentation questions, contested manifests, cargo seized under cross-framework legal ambiguity — reflect a legal landscape that Ferreira Monteiro helped build. Players in the wider game who operate in the south_reach corridor will encounter the firm's precedents as the operating framework for commercial dispute resolution, whether or not they ever interact with the firm directly. +Ferreira Monteiro is not present in most mid-Reach freight districts. It operates five hops from Matamba, in the south_reach corridor. Its relevance is as institutional background: commercial disputes a player might encounter involving south_reach cooperative freight — documentation questions, contested manifests, cargo seized under cross-framework legal ambiguity — reflect a legal landscape that Ferreira Monteiro helped build. Players who operate in the south_reach corridor will encounter the firm's precedents as the operating framework for commercial dispute resolution, whether or not they ever interact with the firm directly. For investigation, Ferreira Monteiro represents a potential intelligence pathway at high access thresholds. The case archive is protected by four centuries of enforced confidentiality. There is no casual route through it. A player who has earned significant trust within south_reach commercial networks — or who is investigating something that one of the parties to a historical dispute would prefer remain sealed — has found an obstacle that is genuinely formidable. The firm will not cooperate with informal inquiry. It will cooperate with something that clears the bar it has set over four hundred years of practice. diff --git a/wiki/corporations/fieldborn-grain.md b/wiki/corporations/fieldborn-grain.md index f25440e7a..1e07a8c48 100644 --- a/wiki/corporations/fieldborn-grain.md +++ b/wiki/corporations/fieldborn-grain.md @@ -1,24 +1,100 @@ --- title: "Fieldborn Grain" -description: "Fieldborn Grain — consumer goods manufacturer based in Calloway Reach, north reach" +description: "Calloway Reach grain producer and agricultural distributor — the primary supplier to the system's distillery trade, running a quiet variety substitution in the volume contracts that the Distillers' Council has not detected" slug: fieldborn-grain category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Calloway Reach (GJ 3325) tags: [commodity_branded, north_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [calloway-distillery, highland-cooperative, grampian-systems] --- # Fieldborn Grain -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Agricultural Grain Producer and Distributor +**Also Known As:** Fieldborn **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Calloway Reach (GJ 3325) +**Scope:** North reach primary; Calloway Reach distillery supply +**Headquarters:** Calloway Reach (GJ 3325) — north reach, 6 hops from Gateway +**Classification:** Sub-Syndic agricultural enterprise; grain supply and corridor distribution -Fieldborn Grain is a consumer goods manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded. +--- + +## Overview + +Calloway Reach's reputation for single malt whisky depends on three things working in combination: the local water, the local yeast culture, and the local grain. The water is geological. The yeast is biological inheritance. The grain is agriculture — and agriculture, unlike water chemistry, is subject to decisions made by the people who grow it. Fieldborn Grain grows the barley that most of the Calloway distilleries use, and it has been doing so for eighty years. + +The company is not glamorous. Grain supply to a distillery corridor does not attract the narrative attention that the distilleries themselves command; Fieldborn's name does not appear on bottle labels or in the provenance documentation that commands premium prices at inward markets. It appears in supply contracts and delivery manifests, as the upstream input to a downstream product that earns its fame. Fieldborn has made its peace with this position. It holds multi-year supply contracts with eight of the eleven Calloway distilleries and operates a reliable, profitable business supplying an input that cannot be substituted without disrupting the output the corridor is famous for. + +The supply contracts include varietal specifications. Whether those specifications are being met is a question the distilleries have not thought to ask. + +--- + +## Origin + +Fieldborn was established by a family of agricultural settlers who arrived at Calloway Reach in the same founding cohort as the distillery families, two hundred years after initial settlement, and planted the cold-adapted barley variety that the original founders had developed through corridor transit. The founding families had brought seeds; Fieldborn's founders brought scale — larger holdings, mechanized cultivation, and the intention to supply rather than process. The original distilleries bought Fieldborn grain from the first decade of operation. + +The supply relationship formalized into long-term contracts about sixty years ago, when the Distillers' Council introduced varietal specifications to the supply agreements to standardize the grain quality that contributed to the whisky's terroir authenticity. Fieldborn's position in those negotiations was as the primary grain supplier and the primary financial beneficiary of specifications that defined what it was already growing. The specifications have remained substantially unchanged since. + +--- + +## Operations + +**Holdings:** Four large agricultural holdings covering the best barley-producing terrain in Calloway Reach's settled lowlands. Total cultivated area represents approximately 60% of the system's barley production capacity for the specified cold-adapted variety. + +**Supply contracts:** Long-term agreements with eight distilleries specifying varietal, growing method, and quality standards. Contract durations range from five to fifteen years. Fieldborn is the sole supplier under most contracts — the distilleries do not have the farm capacity to grow their own grain in meaningful quantities. + +**Processing:** On-site grain storage and processing sufficient to manage the post-harvest period and supply distilleries on a rolling delivery schedule calibrated to their production requirements. The processing facility also handles a smaller volume of grain for the local food production market. + +**Secondary operations:** Fieldborn sells a portion of its harvest to inward grain commodity markets through Tractus-corridor traders. The commodity sales are priced at market rates and represent a hedge against the fixed-price distillery contracts during years when commodity prices rise above contract rates. + +--- + +## Political Relationships + +**Calloway Distillery:** The Distillers' Council's quality standards and supply specifications are the formal framework governing Fieldborn's contracts. Fieldborn has had a seat on the Council's agricultural advisory committee for thirty years — a position that gives it early visibility into any proposed changes to varietal specifications. The committee seat was granted because Fieldborn is the largest grain supplier; it now gives Fieldborn a practical veto on the kind of specification tightening that would expose the F-7 substitution. + +**Highland Cooperative:** Highland Cooperative and Fieldborn are both significant agricultural operations at the north reach outer corridor, but they serve different market segments — Fieldborn supplies the distillery trade; Highland supplies specialty food export. The two operations compete for agricultural labor during harvest periods and have a tension around land use that has been managed quietly through informal agreements about expansion boundaries. + +**Grampian Systems:** Grampian's grain storage monitoring instruments are installed at Fieldborn's facilities, which means Grampian's calibration decisions affect the quality data that Fieldborn's contracts are assessed against. Fieldborn is aware that its storage monitoring data is produced by instruments whose owner has a financial interest in the agricultural insurance outcomes that follow from that data. The awareness is unspoken; neither company has addressed it directly. + +--- + +## What They Don't Talk About + +The cold-adapted barley variety specified in the Distillers' Council supply agreements — designated Type-C in the contract specifications — is a lower-yield crop than the higher-yield variety Fieldborn began introducing to its holdings twelve years ago. The yield difference is approximately 23%, which at Fieldborn's scale represents substantial economic advantage. + +The newer variety — internally designated F-7 in Fieldborn's cultivation records — is not the same as Type-C. It produces grain with a slightly different starch composition that, through fermentation, contributes a marginally different flavor profile to the whisky made from it. The difference is detectable by trained tasters at the founding distilleries. The founding distilleries, Calloway House included, are supplied under contracts that explicitly specify Type-C. Fieldborn supplies them Type-C. + +The newer variety supplies the other six distilleries under contracts whose varietal specifications use language that the founding distilleries' council legal team drafted tightly in their own contracts but that the newer distilleries' contracts inherited in a looser form — "cold-adapted barley in the Calloway tradition" rather than the Type-C designation. Fieldborn's legal assessment is that F-7 meets the looser specification. The distilleries receiving F-7 are not told they are receiving a variety different from what the founding distilleries receive. They have not asked, because they do not know there is a question to ask. + +The Distillers' Council, which sets quality standards for Calloway whisky certification, does not have a testing protocol that distinguishes F-7 from Type-C at the grain supply stage. + +--- + +## Gameplay Relevance + +Fieldborn Grain is agricultural background infrastructure in the north reach — it appears in supply chain documentation and as a tangential reference in Calloway Distillery investigation threads. A player investigating the distillery trade's economic structure will find Fieldborn at the base of the supply chain. + +The varietal substitution is the investigative thread with most reach. The cultivation records that distinguish F-7 from Type-C plantings exist in Fieldborn's agricultural management system. The contract language difference between the founding distilleries' agreements and the others' is demonstrable by comparison. The flavor impact, if a player can arrange taste analysis by a trained evaluator, provides physical evidence. The Distillers' Council, if informed, has governance authority to impose testing requirements that Fieldborn's current contracts cannot satisfy — which has financial implications for the company's supply position. + +The exposure is most consequential for the middle-tier distilleries receiving F-7, not for Fieldborn itself. If those distilleries have sold whisky certified as "Calloway tradition" to inward premium markets — certification that rests on the Distillers' Council's quality standards, which assume the grain supply is consistent across the eleven distilleries — their buyers have paid provenance premiums for a product whose grain is distinguishable from the founding-distillery product they understood themselves to be approximating. The certification is the distilleries' liability, not Fieldborn's: Fieldborn supplied what the contract language permitted. The distilleries signed supply contracts without specifying varietals tightly enough. The Distillers' Council's certification program did not include grain supply verification. The failure is distributed in ways that make simple accountability impossible, which is exactly the condition under which it has persisted. + +--- + +**Cross-References:** +- [Calloway Reach](../star-systems/GJ-3325/index.md) — Headquarters; all holdings and operations +- [Calloway Distillery](calloway-distillery.md) — Primary client; distillery supply chain context +- [Highland Cooperative](highland-cooperative.md) — North reach agricultural peer; overlapping supply market +- [Grampian Systems](grampian-systems.md) — Calloway Reach commercial peer; agricultural monitoring systems + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/fjeldtone-music.md b/wiki/corporations/fjeldtone-music.md index d4f31d0dd..d61e3608b 100644 --- a/wiki/corporations/fjeldtone-music.md +++ b/wiki/corporations/fjeldtone-music.md @@ -1,24 +1,104 @@ --- title: "Fjeldtone Music" -description: "Fjeldtone Music — cultural content producer based in Halvøy, west reach" +description: "Halvøy music label and catalogue publisher — west reach folk and contemporary artists, corridor distribution, and an auto-renewal clause in legacy contracts that has been quietly compounding exclusive representation rights for over a decade" slug: fjeldtone-music category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Halvøy (GJ 624) tags: [cultural, west_reach, mark, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [graben-studio, open-corridor-stream, sungshin-music] --- # Fjeldtone Music -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Music Label and Catalogue Publisher +**Also Known As:** Fjeldtone **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Halvøy (GJ 624) +**Scope:** West reach primary; inward corridor distribution secondary +**Headquarters:** Halvøy (GJ 624) — west reach, 5 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; artist representation and catalogue licensing -Fjeldtone Music is a cultural content producer operating out of Halvøy (GJ 624). Details to be expanded. +--- + +## Overview + +Halvøy sits at the western edge of the corridor with a cultural character shaped by the Norse-heritage communities that settled it and the particular quality of its environment — a system of long winters and short, intense summers that has historically produced a music culture with that same alternating quality: spare, patient forms capable of sudden intensity. Fjeldtone Music has been the primary institutional expression of this culture for forty years, representing the artists who define the Halvøy sound and managing the catalogue that has made that sound known in systems where no one has visited Halvøy. + +The label operates without pretension about what it is. It does not attempt to manufacture stars or drive corridor-wide commercial phenomena. It signs artists who are already doing something and provides the infrastructure — recording facilities, licensing relationships, distribution agreements — that allows that something to reach further than any individual artist could manage independently. The artists who come to Fjeldtone come for competence and longevity; it has a track record of maintaining catalogue relationships over decades without losing what made the original work valuable. + +What the artists cannot easily see from outside is the clause in the standard contract that makes those decades very difficult to exit. + +--- + +## Origin + +Fjeldtone was founded forty years ago by two musicians who had spent their twenties performing across the west reach and had returned to Halvøy with a clear picture of what a working artist needed from a label that most labels, in their experience, did not provide — specifically, access to the licensing infrastructure that made catalogue revenue possible across multiple distribution channels without requiring the artist to manage the relationships personally. Their founding model was label-as-infrastructure: small ownership stake in masters in exchange for comprehensive representation and catalogue management. + +The founding model attracted artists because it was honest about the trade. Ten years in, when the label had built catalogue depth and distribution relationships, the model produced stable recurring revenue from licensing across the west reach and, progressively, inward. The label grew without significantly changing its character. + +The contract terms evolved. The auto-renewal clause appeared in the standard agreement revision fourteen years ago. The founders were not present for that revision — one had retired; the other had reduced his involvement. The clause was introduced by the label's commercial management as a standard industry practice. + +--- + +## Operations + +**Roster:** Thirty-one active artists, ranging from established catalogue acts with twenty-year relationships to newer signings building their first recordings. The roster leans toward the folk, traditional, and contemporary acoustic forms that define the Halvøy sound, with a smaller number of artists in adjacent styles. + +**Recording:** Two studios at Halvøy, maintained to professional standard. The label provides recording facilities to signed artists; studio time is not charged against artist accounts — an unusual practice that the label has maintained as a point of distinction from larger operators. + +**Licensing:** The core of the commercial operation. Fjeldtone's catalogue is licensed to streaming platforms, broadcast networks, and commercial placement services across the corridor. Licensing revenue is the stable base of the business; it is less dependent on any individual artist's current activity than performance royalties. + +**Distribution:** Physical and digital distribution through west reach networks and inward through a service agreement with an inward distribution company. Digital distribution reaches core corridor platforms, including streaming services whose user bases are orders of magnitude larger than the west reach's population. + +--- + +## Political Relationships + +**Graben Studio:** Fjeldtone and Graben Studio are the west reach's two most recognized independent cultural producers in their respective media, sharing significant artistic community and institutional client overlap. Both have faced undisclosed structural issues with creator relationships — auto-renewal contracts at Fjeldtone, undisclosed cross-ownership at Graben. Neither is aware of the other's situation, but the west reach cultural sector is small enough that exposure of either would generate comparison. + +**Open Corridor Stream:** OCS is Fjeldtone's inward streaming distribution partner, carrying the catalogue to audience bases far larger than the west reach population. The OCS licensing agreement is commercially favorable to OCS — terms Fjeldtone accepted as the cost of inward access. If an artist challenges Fjeldtone's exclusive representation claim, the licensing rights OCS relies on derive from Fjeldtone's representation authority; a dispute over that authority would affect OCS's catalogue access without OCS having any role in creating the situation. + +**Sungshin Music:** Sungshin Music is the east reach label most often cited alongside Fjeldtone in cross-corridor industry discussions. Sungshin's artist contracts are structured without auto-renewal provisions, a difference sometimes cited by west reach artists as a reason to prefer east reach label relationships. The comparison is commercially irrelevant at the corridor distances involved but shapes the reputational context in which any Fjeldtone artist dispute would be read. + +--- + +## What They Don't Talk About + +The standard Fjeldtone artist contract includes an exclusive representation clause that covers commercial licensing of the artist's recorded works. Paragraph 11(b) of the standard agreement states that exclusive representation automatically renews for successive one-year periods unless the artist provides written termination notice during a specific 30-day window each year — the 30 days following the anniversary of the original signing date. + +The window is described in the contract. It is not prominently described. The contract does not notify artists that the window has opened or closed. Artists who did not calendar their anniversary date, or who were between management when the window passed, have had their exclusive representation quietly renew without any active decision on their part. + +Fourteen of Fjeldtone's legacy artists — those signed more than ten years ago — are in this position. Their exclusive representation for commercial licensing has auto-renewed every year for between six and twelve years without any of them having affirmatively chosen to remain. Several have, on inquiry, been told that they are currently under contract; the explanation of how that came to be involves the contract terms that they technically agreed to at signing. + +The label's position is that the contract is clear, the clause is standard in the industry, and the artists' failure to exercise termination rights is their own administrative responsibility. This is legally defensible. Whether any of the fourteen artists would characterize their relationship with Fjeldtone as a freely maintained commitment is a different question. + +--- + +## Gameplay Relevance + +Fjeldtone Music is cultural sector presence in the west reach — its artists' work appears in ambient audio contexts, its catalogue is referenced in media platforms and entertainment venues, and its offices at Halvøy are a social environment for the west reach creative community. + +The auto-renewal situation is the investigative thread. The contract terms are the relevant document; the fourteen legacy artists in continuous auto-renewal are identifiable from the label's contract records; the gap between their stated understanding of their status and the legal reality is demonstrable. An artist seeking to license their own work independently, denied on grounds they don't understand, is a potential source and a potential plaintiff. + +Fjeldtone's catalogue licensing records are also an intelligence layer for cultural and commercial investigation — the platforms that pay for its catalogue, the commercial placements approved over the years, and the financial flows that follow. + +An artist in the auto-renewal lock who discovers their situation and seeks legal remedy will find that the contract is technically enforceable — but that the pathway to public awareness is not the same as the legal pathway. The west reach's creative community is small and its relationships are long. An artist who can demonstrate that they have been continuously represented without active consent, for a decade, because an administrative window passed without notification, does not need a legal win to change Fjeldtone's negotiating position. Several of the fourteen legacy artists have public profiles in the west reach corridor that give them platforms; the label's management of their situation would become a matter of cultural sector discussion before any regulatory or legal process concluded. Fjeldtone's founding partners — who built the label on a promise of artist-first operation — would find that distinction harder to maintain in that environment than in a courtroom. + +--- + +**Cross-References:** +- [Halvøy](../star-systems/GJ-624/index.md) — Headquarters; founding cultural context; primary roster +- [Graben Studio](graben-studio.md) — West reach cultural peer; visual and audio production overlap +- [Open Corridor Stream](open-corridor-stream.md) — Inward distribution platform; catalogue licensing relationship +- [Sungshin Music](sungshin-music.md) — East reach music peer; cross-corridor distribution comparison + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/gate-corporation.md b/wiki/corporations/gate-corporation.md index 2318d3865..0600109dd 100644 --- a/wiki/corporations/gate-corporation.md +++ b/wiki/corporations/gate-corporation.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Renaissance (GJ 251) tags: [fusion_fuel, gate_infrastructure, reach_wide, monopolist] decision_refs: [D-095, D-175] -cross_refs: [] +cross_refs: [kaur-observatory-equipment] --- # The Gate Corporation @@ -29,7 +29,7 @@ cross_refs: [] The Gate Corporation owns and operates span gate infrastructure across the Settled Reach. Every intra-system transit gate — the networks that move freight between stations and planets, that make local commerce possible, that keep populations from being stranded on individual orbital platforms — was built, licensed, and is maintained by the Gate Corporation or a contracted subsidiary. -This is not one contract among many. This is the substrate of civilization. The distinction matters: the alien-built Founder Gates that connect star systems between the stars were not built by humans and cannot be modified. The span gates that move people and cargo within each system are human-made engineering. The Gate Corporation built most of them. When residents of Van Maanen's Star ship freight from Station Sova to the planetary surface, they are using Gate Corporation infrastructure. When the Lattice Commission's quarterly inspectors arrive through a hub gate, they step through a Gate Corporation installation. The corporation has been present, in a sense, at every significant movement of people and goods within the Reach for three hundred years. +This is not one contract among many. This is the substrate of civilization. The distinction matters: the alien-built Founder Gates that connect star systems between the stars were not built by humans and cannot be modified. The span gates that move people and cargo within each system are human-made engineering. The Gate Corporation built most of them. When cargo moves between a station and a planetary surface anywhere in the Reach, it transits Gate Corporation infrastructure. When the Lattice Commission's quarterly inspectors arrive through a hub gate, they step through a Gate Corporation installation. The corporation has been present, in a sense, at every significant movement of people and goods within the Reach for three hundred years. The Gate Corporation is Syndic-tier in its commercial classification, but this understates its position. Most Syndic combines operate within a system or a sector. The Gate Corporation operates everywhere simultaneously, because every inhabited system has span gates, and the Gate Corporation built most of them. @@ -91,7 +91,7 @@ There is a second silence around the Corporation's gate failure records. Span ga ## Gameplay Relevance -The Gate Corporation is the background infrastructure of the entire setting. In Sova Transit District, it is present as the equipment — the span gates are Gate Corporation installations. Every gate cycle that moves freight through the district is a Gate Corporation system operating as designed. +The Gate Corporation is the background infrastructure of the entire setting. In any freight or transit hub, it is present as the equipment — the span gates are Gate Corporation installations. Every gate cycle that moves freight through a hub is a Gate Corporation system operating as designed. For investigation, the gate logs — transit timestamps, weight readings, manifest cross-references — are Gate Corporation data. Accessing them requires working through the Corporation's compliance interface or finding another route. The Corporation will cooperate with Commission requests within the terms of its regulatory agreement. It will not cooperate with anything outside those terms without legal compulsion it will contest. diff --git a/wiki/corporations/graben-studio.md b/wiki/corporations/graben-studio.md index be99603b9..e1a8cd5cf 100644 --- a/wiki/corporations/graben-studio.md +++ b/wiki/corporations/graben-studio.md @@ -1,24 +1,98 @@ --- title: "Graben Studio" -description: "Graben Studio — cultural content producer based in Freiholt, west reach" +description: "Freiholt film and immersive media production studio — west reach dramatic and visual content with a cross-ownership structure its talent agencies do not know about and would negotiate differently if they did" slug: graben-studio category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Freiholt (GJ 453) tags: [cultural, west_reach, mark, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [fjeldtone-music, maas-rijn-entertainment, wolkenbruch-cinema] --- # Graben Studio -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Film and Immersive Media Production Studio +**Also Known As:** Graben, the Studio **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Freiholt (GJ 453) +**Scope:** West reach primary; inward corridor distribution secondary +**Headquarters:** Freiholt (GJ 453) — west reach, 4 hops from Gateway +**Classification:** Sub-Syndic independent studio; original production and licensing -Graben Studio is a cultural content producer operating out of Freiholt (GJ 453). Details to be expanded. +--- + +## Overview + +Freiholt's cultural industry is not large, but it is specific. The system's German-heritage founding communities developed a visual aesthetic that has carried through the generations — dense, textured, interested in the physical weight of spaces and the way built environments shape the people who move through them. Graben Studio, founded in Freiholt's creative quarter thirty years ago, works in this tradition: dramatic films and immersive media productions that are set in west reach environments and are photographed and composed in a way that couldn't be mistaken for inward output. + +The studio has produced forty-six features and serial productions over its history, a third of which have found distribution beyond the west reach through licensing deals with inward platforms. The inward audience that finds Graben's work tends to find it specifically — it is not mass-market entertainment and it does not attempt to be. It is the kind of cultural production that accumulates a following over decades rather than breaking through on release, and Graben's business model accommodates the accumulation model without requiring the breakthrough. + +What talent agencies negotiating with Graben do not know is that the person on the other side of the table has a financial relationship with their other clients. + +--- + +## Origin + +Graben Studio was founded by a cinematographer named Werner Steinbach-Vogt who had spent fifteen years as director of photography on commercial productions based inward and had accumulated enough capital and enough frustration with the constraints of commercial production to return to Freiholt and attempt something more particular. His founding investment secured a permanent studio facility — something rare in the west reach, where most independent production operates on location and temporary equipment — and the ability to produce on timelines that matched the work rather than the quarterly reporting schedule of a commercial partner. + +The early productions were entirely self-funded and ran on the capital Steinbach-Vogt brought to the founding. The arrival of outside investment a decade in changed the financial structure without, at the time, visibly changing the creative direction. The investor was an off-system holding company with positions across the west reach entertainment sector. The studio took the investment and has operated on a mixed self-funded/investor-backed model since. + +--- + +## Operations + +**Production capacity:** Permanent studio facility with two sound stages, post-production suites, and technical equipment sufficient for full-production features. The facility is what differentiates Graben from the larger number of west reach production operations that rent equipment per-project — having it available continuously allows production without the logistical overhead of assembly and disassembly. + +**Output:** Two to three productions per year, typically one feature and one or two serial productions. Production timelines are longer than commercial industry norms; the studio does not compress for financial reasons. + +**Distribution:** West reach primary through local media networks. Inward through licensing agreements with platforms that operate in the core corridor. The studio negotiates its own distribution rather than delegating to an agency, which keeps margins higher at the cost of more complex commercial management. + +**Talent relationships:** The studio works with west reach actors, writers, and directors as its primary talent pool and with inward talent agencies for co-productions that require names recognizable in inward markets. + +--- + +## Political Relationships + +**Fjeldtone Music:** Fjeldtone is the west reach's most significant independent music label and a regular collaborator on Graben's sound design and score work. The two companies share creative community networks at Freiholt and Halvøy. Both are currently managing undisclosed structural issues with creator relationships — but in Graben's case, the issue is investor cross-ownership rather than contract terms, and it is entirely invisible to Fjeldtone. + +**Maas-Rijn Entertainment:** Maas-Rijn is presented as a competing studio in the west reach production market. The competition is genuine in terms of talent and project pursuit; the underlying investor structure is not competitive. Talent agents who negotiate compensation against both studios believe they are applying cross-studio competitive pressure; they are not. Whether this dynamic has resulted in below-market rates for west reach talent is a question the internal communications of all three Altan-backed studios could answer. + +**Wolkenbruch Cinema:** Wolkenbruch is the third Altan-backed studio, operating in a somewhat more commercial segment than Graben or Maas-Rijn. Its public relationship with Graben is that of a peer in a small market — occasional project discussions, shared distribution contacts, competitive courtesy. Its actual relationship, mediated through Altan Holdings, is structurally closer than either studio's leadership knows. + +--- + +## What They Don't Talk About + +The off-system holding company that provided Graben's first outside investment — Altan Holdings, registered outside the Reach — also holds minority equity positions in two competing west reach production studios: Maas-Rijn Entertainment and Wolkenbruch Cinema. All three investments were made through a structure that registers each position under a different subsidiary name, which means the connection to Altan is not visible in any individual studio's public filings. + +Talent agencies negotiating with Graben on behalf of actors and directors also represent clients at Maas-Rijn and Wolkenbruch. When an agency negotiates compensation and rights terms with Graben's production team, the agency's leverage is partly based on its ability to offer the talent to competing productions. The competing productions, in two cases, are also backed by the same investor. The competitive pressure the agency believes it is applying may not be operating the way it appears to be. + +The agencies do not know about the shared investor. The talent does not know. Altan Holdings is not mentioned in Graben's client-facing documentation. Whether the investor's positions across multiple studios have ever been used to coordinate outcomes — talent allocation, pricing, distribution windows — is a question the studio's internal communications could answer. + +--- + +## Gameplay Relevance + +Graben Studio is creative industry presence in the west reach — a production environment that appears in creative and media investigation contexts, a social network hub for west reach artistic communities, and a producer of content that appears as ambient media in entertainment and cultural settings. + +The Altan Holdings cross-ownership structure is the investigative thread. The three subsidiary names that hold positions in Graben, Maas-Rijn, and Wolkenbruch can be traced back to Altan through corporate registry research; the connection requires cross-referencing multiple filing jurisdictions. The question of whether the shared investment has produced coordinated behavior requires access to internal communications. The talent agencies, if informed, have standing to argue that their negotiating position was compromised by information asymmetry. + +The Altan Holdings structure is the deeper story. A holding company with positions across three studios in the same market — all through different subsidiary registrations — is either a passive investor or a strategic one. The internal communications of those studios, if compared, would show whether the productions they chose to develop, the talent they competed for or didn't, and the distribution windows they negotiated were made without coordination. If they were not made without coordination, the three studios' apparent competition for talent and distribution is a managed surface over a coordinated market. The cultural output of the west reach's film sector over the past decade was shaped, at least in part, by what Altan's investment structure made attractive to each studio. What was not made — the projects that found no studio willing to fund them — is the invisible consequence. + +--- + +**Cross-References:** +- [Freiholt](../star-systems/GJ-453/index.md) — Headquarters; studio facility; cultural context +- [Fjeldtone Music](fjeldtone-music.md) — West reach cultural peer; overlapping creative community +- [Maas-Rijn Entertainment](maas-rijn-entertainment.md) — West reach production peer; shared investor (undisclosed) +- [Wolkenbruch Cinema](wolkenbruch-cinema.md) — West reach cinema peer; shared investor (undisclosed) + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/grampian-systems.md b/wiki/corporations/grampian-systems.md index 8d70c5210..82177800e 100644 --- a/wiki/corporations/grampian-systems.md +++ b/wiki/corporations/grampian-systems.md @@ -1,24 +1,100 @@ --- title: "Grampian Systems" -description: "Grampian Systems — precision technology manufacturer based in Calloway Reach, north reach" +description: "Calloway Reach precision systems and environmental monitoring manufacturer — agricultural and industrial instrumentation for the north reach, with a dual position as data provider and insurance co-owner that gives calibration decisions commercial consequences" slug: grampian-systems category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Calloway Reach (GJ 3325) tags: [tech_premium, north_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [fieldborn-grain, calloway-distillery, aldgate-trust] --- # Grampian Systems -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Systems and Environmental Monitoring Manufacturer +**Also Known As:** Grampian **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Calloway Reach (GJ 3325) +**Scope:** North reach primary; agricultural and industrial instrumentation +**Headquarters:** Calloway Reach (GJ 3325) — north reach, 6 hops from Gateway +**Classification:** Sub-Syndic precision engineering enterprise; agricultural and environmental systems supply -Grampian Systems is a precision technology manufacturer operating out of Calloway Reach (GJ 3325). Details to be expanded. +--- + +## Overview + +The north reach's agricultural economy depends on data it cannot generate without instruments. Climate monitoring for crop planning, soil analysis for yield optimization, remote sensing for the large holdings that cannot be walked in a day — these functions require hardware that functions reliably in cold-climate conditions, is repairable at the system rather than requiring transit to a service center, and is priced within reach of the agricultural operations it serves. Grampian Systems supplies this hardware. + +The company is not glamorous in the way precision technology firms with high-visibility institutional clients might be. Its customers are farmers, distillery operations, and the small industrial concerns that support them. Its instruments appear in field installations and grain storage facilities and cold-weather monitoring stations, doing work that is noticed only when they fail. This invisibility is characteristic of genuinely functional infrastructure, and Grampian's market position — dominant in the north reach agricultural instrumentation sector for fifty years — reflects that it has earned the invisibility. + +The company also holds a minority financial position in the institution whose business decisions depend most directly on Grampian's data accuracy. This position is not advertised. + +--- + +## Origin + +Grampian was established fifty years ago by an engineer named Catriona Drummond who had spent a decade maintaining instrumentation systems at Calloway Reach's agricultural operations and had concluded that the equipment being imported from inward manufacturers was inadequately specified for north reach cold-climate conditions. Inward instruments calibrated for core corridor temperature ranges required constant recalibration at north reach sites and had failure rates in hard winter conditions that imposed operational costs the agricultural sector absorbed because it had no alternative. + +Drummond's founding product — a temperature and humidity monitoring unit specifically calibrated for Calloway Reach's climate range and built with components tolerant of the freeze-thaw cycling that destroyed inward equivalents — found immediate adoption at the larger agricultural holdings. The company grew by expanding the product line to cover the full range of monitoring and sensing functions that north reach agriculture required, always with the same specification philosophy: built for where it would be used, not for where it would be tested. + +--- + +## Operations + +**Product lines:** Agricultural environmental monitoring — temperature, humidity, soil moisture, and atmospheric pressure systems designed for field installation in north reach climate conditions. Grain storage monitoring — humidity and temperature systems for enclosed agricultural facilities. Remote sensing — longer-range environmental monitoring for large holdings. Industrial monitoring — process instrumentation for the smaller industrial operations at Calloway Reach and adjacent systems. + +**Manufacturing:** Single facility at Calloway Reach. Fifty-three employees, with manufacturing and engineering roughly equally staffed. The facility handles design, production, and calibration in-house; the integration of calibration into the manufacturing process is what allows Grampian to sell instruments pre-configured for north reach conditions rather than requiring site calibration after installation. + +**Service:** Maintenance contracts with most major agricultural clients. Service response is measured in days rather than weeks for Calloway Reach clients; the local presence is a material advantage over inward alternatives. + +**Certification:** Lattice Commission instrumentation certification for applicable product lines; north reach agricultural authority certification for instruments used in regulated agricultural quality monitoring. + +--- + +## Political Relationships + +**Fieldborn Grain:** Fieldborn is Grampian's largest single agricultural client, with grain storage and quality monitoring systems installed across all four of Fieldborn's major holdings. The monitoring data that Grampian's instruments produce is the primary quality record used in Fieldborn's supply contract compliance assessments. Both companies have an interest in the data showing acceptable conditions; the alignment is structural rather than coordinated. + +**Calloway Distillery:** Grampian's fermentation monitoring systems are installed at six of the eleven Calloway distilleries, including three of the founding distilleries. The data these systems produce underlies the quality certification that the Distillers' Council issues for Calloway whisky. Grampian's calibration decisions therefore affect the certification standard that the Council applies — without the Council being aware that it is relying on data from instruments owned by a company with a financial interest in the insurer that pays claims when the certification identifies a problem. + +**Aldgate Trust:** Aldgate Trust manages agricultural estates at Crown's Hollow whose monitoring infrastructure is supplied by Grampian. The Trust's custody management includes equipment lease administration for these clients, giving Aldgate ongoing awareness of which properties have Grampian monitoring systems and under what contract terms — a visibility into Grampian's commercial relationships that neither company has formalized. + +--- + +## What They Don't Talk About + +Grampian's environmental monitoring systems are the primary data source for crop yield and storage condition assessments in Calloway Reach's agricultural insurance framework. When a farmer submits a claim for crop damage or storage loss, the supporting data comes from Grampian instruments installed on the insured property — and the claim adjudication uses that data. + +Eleven years ago, Grampian's owner purchased a 19% equity stake in Calloway Agricultural Assurance, the dominant agricultural insurance underwriter serving the north reach. The purchase was made through a personal investment; it appears in the financial disclosures Grampian files with the Lattice Commission but not in Grampian's product documentation or its client-facing materials. + +The practical implication: Grampian's calibration decisions affect the data that CAA's claims adjusters evaluate. A systematic calibration bias — instruments that read consistently cool in storage facilities, for instance, would produce data consistent with acceptable storage conditions even when conditions were marginal — would reduce claim frequency in ways that benefit an insurer. There is no direct evidence that Grampian has made calibration decisions with this effect. There is evidence that Grampian's owner has a financial interest in the outcome of the process that its instruments inform. The calibration audit records that would answer the question are internal documents. + +--- + +## Gameplay Relevance + +Grampian Systems is agricultural sector infrastructure in the north reach — its instruments are at every significant farming operation and distillery at Calloway Reach, and the company is a known presence in the agricultural community. Players investigating north reach agricultural economics or insurance claims will encounter Grampian as a data infrastructure provider. + +The CAA equity position is the investigative thread. The financial disclosure exists in Grampian's Commission filings. The calibration audit records are internal. The question of whether calibration decisions have been influenced by the insurance relationship requires access to both the calibration documentation and the claims outcomes data. A claims adjuster at CAA who has noticed systematic patterns in instrument readings from insured properties is a potential source. + +Fieldborn Grain and the Calloway distillery supply chain also run through Grampian's instrumentation — the instruments that measure grain quality at storage, that monitor fermentation conditions, that provide the data underlying agricultural quality certifications. + +The dual-position problem does not require active corruption to produce distorted outcomes. A calibration engineer at Grampian making routine instrument adjustments — trying to reduce false-positive alerts that generate unnecessary farmer complaints, for instance — produces calibration drift that systematically shifts readings in one direction. The engineer is solving an engineering problem; the calibration log is accurate; the effect on insurance outcomes is real but not intentional. This is the version of the problem that is most difficult to demonstrate and most likely to be what is actually happening. A player pursuing this thread should be prepared for the investigation to produce evidence of structural conflict without evidence of deliberate manipulation — which is a different kind of finding, with a different kind of consequence, and a different set of actors who must decide what to do with it. + +--- + +**Cross-References:** +- [Calloway Reach](../star-systems/GJ-3325/index.md) — Headquarters; primary client geography +- [Fieldborn Grain](fieldborn-grain.md) — Agricultural supply client; instrumentation at grain storage facilities +- [Calloway Distillery](calloway-distillery.md) — Distillery instrumentation client; fermentation monitoring systems +- [Aldgate Trust](aldgate-trust.md) — Calloway Reach peer enterprise; estate management clients overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/gridsupply-electronics.md b/wiki/corporations/gridsupply-electronics.md index 84eeae80f..623a558fd 100644 --- a/wiki/corporations/gridsupply-electronics.md +++ b/wiki/corporations/gridsupply-electronics.md @@ -1,24 +1,102 @@ --- title: "Gridsupply Electronics" -description: "Gridsupply Electronics — consumer goods manufacturer based in Groombridge, core" +description: "Groombridge commodity electronics manufacturer — power systems, basic components, and household electronics for the core corridor mass market, running consumer units built on industrial tooling with a certification that tests fewer failure modes than the industrial line" slug: gridsupply-electronics category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [commodity_branded, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [alcyone-tech, arclamp, commonstock-foods] --- # Gridsupply Electronics -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Commodity Electronics Manufacturer +**Also Known As:** Gridsupply **Status:** Canonical -**Scope:** Regional — core operations +**Scope:** Core corridor primary; transit hub distribution secondary **Headquarters:** Groombridge (GJ 380) +**Classification:** Sub-Syndic volume consumer enterprise; commodity electronics and power systems -Gridsupply Electronics is a consumer goods manufacturer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Gridsupply Electronics occupies the end of the electronics market that precision manufacturers like Alcyone Tech do not touch: power strips, household charge units, basic communication terminals, environmental control interfaces, the small electronic devices that transit workers and residential populations buy because they need them and replace when they break rather than because they have specific performance requirements. This market does not require excellence. It requires availability, reliability at a minimum acceptable standard, and price points that ordinary people can afford. + +Gridsupply meets this requirement at Groombridge and, through the transit hub distribution networks it has built over sixty years, across most of the inner corridor. Its products are not distinguished. They are not meant to be. The company competes on logistics efficiency, price, and the kind of ubiquity that makes its products the default purchase when a buyer isn't thinking hard about the category — which is most of the time. + +The company's position at Groombridge is an artifact of an early-era decision to locate consumer electronics manufacturing at the corridor's most developed transit hub, where the distribution infrastructure needed to move volume goods was already present. Sixty years later, Gridsupply's competitive advantage is not technology; it is position. The distribution infrastructure it built around its Groombridge facility is expensive to replicate, and new entrants have not replicated it. + +--- + +## Origin + +Gridsupply was founded sixty-one years ago by a components trader who had spent twenty years sourcing electronic parts through the transit networks and had concluded that the consumer electronics supply chain — multiple inward manufacturers producing for multiple distribution intermediaries — was inefficient enough that a vertically integrated operation at a high-traffic hub would outcompete it on price while maintaining acceptable margins. The founding investment built a manufacturing facility adjacent to Groombridge's transit hub and established direct supply relationships with the hub operators that eliminated the intermediary layer. + +The founding thesis was correct. Gridsupply's direct hub supply relationships allowed it to undercut existing consumer electronics suppliers on price within five years. Growth followed distribution: as the hub relationships generated transit network presence, Gridsupply's products appeared at transit stops throughout the inner corridor. + +--- + +## Operations + +**Product lines:** Power systems — residential and commercial power management units, surge protection, portable power storage. Household electronics — charge devices, communication terminals, environmental control interfaces for residential and transit accommodation. Basic components — wire, connectors, and component kits for field repair and installation. The product range is wide but shallow; Gridsupply makes many categories at one quality level rather than few categories at multiple quality levels. + +**Manufacturing:** Primary facility adjacent to the Groombridge transit hub. Secondary facility for power systems production. Combined workforce of approximately two hundred. The facilities are production-optimized: manufacturing process designed around throughput rather than quality differentiation. + +**Industrial line:** A parallel product line marketed to commercial and industrial clients under a separate brand designation. The industrial line is certified to higher performance standards and priced to reflect them. It uses the same production tooling as the consumer line, with post-production calibration and an expanded testing protocol. + +**Distribution:** Hub-direct supply to transit network commissaries and general stores. Wholesale to residential electronics retailers. The distribution network is the company's primary competitive asset. + +--- + +## Political Relationships + +**Alcyone Tech:** Alcyone Tech and Gridsupply occupy opposite ends of the Groombridge electronics market — Alcyone serves institutional clients with precision certified hardware; Gridsupply serves the transit worker and residential mass market with commodity electronics. The two companies do not compete directly, but both are currently maintaining certification situations that have not been disclosed to the Lattice Commission. Alcyone's is a hardware vulnerability; Gridsupply's is a testing protocol gap. The parallel is coincidence but would not read that way under a simultaneous regulatory review. + +**Arclamp:** Arclamp and Gridsupply share the Groombridge manufacturing quarter and the same institutional client base at the maintenance and equipment level — Arclamp furnishes the offices; Gridsupply supplies the power management and small electronics those offices run on. Both are under Lattice Commission certification for their respective product categories; both have product lines where the certification was not updated after specification changes. + +**Commonstock Foods:** Commonstock and Gridsupply are the core corridor's two most significant volume consumer goods suppliers to the transit hub market, operating through the same distribution relationships. Both have built their positions on distribution logistics rather than product differentiation. Both use certification frameworks to signal quality that their internal testing protocols do not fully support. The structural parallel is notable and has not been examined. + +--- + +## What They Don't Talk About + +The consumer and industrial product lines share production tooling. A consumer power management unit and an industrial power management unit begin on the same production line from the same components and are differentiated post-production through calibration settings and the testing protocol applied before packaging. + +The industrial testing protocol tests seventeen performance parameters, including several that evaluate behavior under sustained load conditions and power fluctuation scenarios characteristic of industrial use. The consumer testing protocol tests eleven parameters — the eleven that overlap with the core performance specification the Commission requires for consumer certification. The six parameters not included in the consumer protocol are specifically those that test the failure modes most likely to occur in consumer devices that are operated continuously, underventilated, or subjected to power quality conditions typical of transit accommodation electrical systems. + +When consumer units fail in the ways that the excluded tests cover — thermal protection failure under sustained load, voltage regulation failure under fluctuating input — Gridsupply's warranty response attributes the failure to user error or environmental conditions outside the specified operating range. The specified operating range is defined in the consumer documentation in terms that most transit workers cannot evaluate against their actual living conditions. + +The consumer certification is valid. The consumer certification does not certify what the industrial certification certifies. + +--- + +## Gameplay Relevance + +Gridsupply Electronics is ubiquitous infrastructure in core corridor and transit environments — its products are in every transit accommodation, common store, and working-class residential space. The brand is recognized as standard-issue, not chosen. A failed power strip in a transit bunkroom is almost certainly Gridsupply. + +The testing protocol gap is the investigative thread. The industrial and consumer testing protocols are internal documents. The Commission's certification file confirms what parameters were tested; comparison with the industrial protocol reveals what was omitted. The failure patterns documented in Gridsupply's warranty denial records, cross-referenced against the untested failure modes, make the connection. A consumer protection case would require demonstrating that the certification, while technically valid, created a reasonable expectation the product did not meet. + +Gridsupply's distribution records also provide a comprehensive inventory of which products are at which transit hubs across the inner corridor. + +The consumer certification gap creates a specific vulnerability for the transit hub operators who are Gridsupply's primary distribution channel. Hub commissaries and general stores sell Gridsupply products under their own brand relationships with the hub operators — operators whose own commercial licenses require them to stock certified goods. If the consumer certification is subsequently found inadequate, the liability question that follows is whether the hub operators, as the point of sale, bear any responsibility for goods that failed to meet the standard they were certified to. Gridsupply's standard supply contracts include an indemnification clause for certified-product liability that the hub operators signed without testing. The legal architecture of a failure claim runs through the hub operators before it reaches Gridsupply — a structural feature that Gridsupply's legal team designed and that gives the company's distribution relationships a characteristic that benefits one side considerably more than the other. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters; manufacturing facilities; transit hub distribution +- [Alcyone Tech](alcyone-tech.md) — Groombridge electronics peer; premium institutional market contrast +- [Arclamp](arclamp.md) — Groombridge manufacturer; adjacent commercial sector +- [Commonstock Foods](commonstock-foods.md) — Core corridor volume consumer peer; shared distribution context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/gronnmark-consumer.md b/wiki/corporations/gronnmark-consumer.md index be52820e3..4c946f751 100644 --- a/wiki/corporations/gronnmark-consumer.md +++ b/wiki/corporations/gronnmark-consumer.md @@ -1,24 +1,102 @@ --- title: "Gronnmark Consumer" -description: "Gronnmark Consumer — consumer goods manufacturer based in Nyrheim, west reach" +description: "Nyrheim volume consumer goods manufacturer — west reach household and personal goods branded as locally produced, assembled locally from components that are not, in a distinction the marketing elides" slug: gronnmark-consumer category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) tags: [commodity_branded, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [bavarian-craft, bergkraft-antriebswerke, lowlands-consumer] --- # Gronnmark Consumer -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Volume Consumer Goods Manufacturer +**Also Known As:** Gronnmark **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Nyrheim (GJ 3737) +**Scope:** West reach primary; adjacent corridor distribution secondary +**Headquarters:** Nyrheim (GJ 3737) — west reach, 6 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; household and personal goods volume production -Gronnmark Consumer is a consumer goods manufacturer operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +Nyrheim is a functional outer system that works: settled two centuries ago by a cohort of Scandinavian-heritage families who came intending to stay and built the infrastructure to make staying viable. It has agriculture, manufacturing capacity, and a stable population that has grown by birth and immigration rather than the boom-and-bust dynamics that characterize resource extraction systems. The consumer goods that the population needs are, to a significant degree, produced locally. Gronnmark Consumer is the largest expression of this local manufacturing capacity. + +The company produces household goods, personal care products, and light domestic equipment — the things that a working population buys regularly and does not think hard about. Its market is the west reach's outer corridor, where the distance from inward supply hubs makes local production economically viable and where the Mark currency preference supports local suppliers over Tractus-denominated inward imports. Gronnmark's competitive advantage is proximity: it can supply Nyrheim and adjacent west reach systems faster and more reliably than any inward manufacturer, and its pricing in Mark reflects that it does not pay transit costs. + +The "locally produced" branding that Gronnmark emphasizes in its west reach marketing reflects the proximity advantage. It does not reflect the origin of the components that go into the products being assembled at Nyrheim. + +--- + +## Origin + +Gronnmark was established forty-five years ago by a manufacturing cooperative that had been producing basic household goods for Nyrheim's local market and wanted to expand distribution to adjacent systems. The cooperative structure meant that founding capital came from multiple families, which distributed both the risk and the decision-making. This made growth slower but more stable than single-owner enterprise models, and Gronnmark's cautious expansion is characteristic of its founding culture. + +The shift from cooperative to corporation happened twenty years ago when the capital requirements of expanding manufacturing capacity exceeded what the cooperative governance model could efficiently raise. The founding families retained majority ownership; the corporate structure allowed outside investment. The company has remained majority locally owned, which is part of what the "locally produced" branding signals — that the profits stay at Nyrheim, which is true, even if the components come from elsewhere. + +--- + +## Operations + +**Product lines:** Household goods — cookware, cleaning supplies, storage containers, basic tools. Personal care — grooming products, hygiene supplies, basic medical consumables. Domestic equipment — small appliances, lighting, portable electronics at the utility end of the market. The range is broad; the quality level is consistent — functional, adequate, not aspirational. + +**Manufacturing:** Assembly and final production at Nyrheim. The facility is genuinely local and genuinely employs Nyrheim residents in manufacturing roles — this is accurate in the marketing. What is not in the marketing is that the component parts being assembled come predominantly from inward suppliers at Bergtor and, for a smaller fraction, from inward core corridor manufacturers. + +**Component sourcing:** Established supply relationships with three Bergtor component manufacturers and two inward suppliers. The supply contracts predate the corporate restructuring and have been maintained and expanded as production volume grew. Gronnmark does not manufacture its own components; it assembles supplied components into finished goods. + +**Distribution:** West reach direct, through the Mark-currency commercial networks that Nyrheim's founding position gives it access to. Some adjacent corridor distribution through transit hub supply chains. + +--- + +## Political Relationships + +**Bavarian Craft:** Bavarian Craft is the west reach heritage brand that Gronnmark most conspicuously positions itself against — locally made, traditionally produced, authentically west reach. The irony is that both companies are managing a gap between their marketing and their manufacturing reality: Bavarian Craft's guild certification applies to a fraction of its output; Gronnmark's local production claim applies to assembly rather than manufacture. Both have legal assessments that support their positions; neither has disclosed the gap publicly. + +**Bergkraft Antriebswerke:** Bergkraft is the Bergtor industrial enterprise that supplies the component manufacturers whose output Gronnmark buys for Nyrheim assembly. The supply chain runs through Bergtor regardless of how Gronnmark describes its production origin. A "Made in Nyrheim" challenge that examined the supply chain would trace the component origin to Bergtor and, behind Bergtor, to the same inward supply chains that any commodity manufacturer uses. + +**Lowlands Consumer:** Lowlands Consumer is Gronnmark's nearest competitor in the west reach mass market and the company most likely to file a "Made in" labeling challenge if it believed such a challenge would succeed. Lowlands has its own assembly-with-imported-components production model and similar labeling practices — which is the primary reason neither company has filed against the other. The mutual deterrent is understood without being discussed. + +--- + +## What They Don't Talk About + +Gronnmark's consumer packaging uses the phrase "Made in Nyrheim" on all products, accompanied by the Nyrheim system crest. Under Lattice Commission consumer goods labeling rules, "Made in [system]" is permissible when the final assembly and the majority of value-add processes occur in the named system. Gronnmark's legal assessment is that final assembly at Nyrheim, which is genuine, satisfies this requirement. + +The Commission's standard, as written, permits this interpretation. A competing interpretation — one that the Commission has applied in cases where it has investigated complaints — holds that "Made in" implies a reasonable consumer expectation that primary manufacture occurred in the named system, and that assembly-only production requires disclosure of the component origin. Gronnmark's legal team prepared a memo on this point eight years ago and concluded that the current labeling is defensible but not unambiguously correct. + +The products that Gronnmark's west reach customers buy understanding themselves to be purchasing locally manufactured goods are assembled in Nyrheim from components made predominantly at Bergtor and the core corridor. The jobs and economic activity that the "locally produced" branding implicitly claims for Nyrheim include the assembly employment; they do not include the manufacturing employment that generates the components, which is elsewhere. + +The memo exists in Gronnmark's legal files. It has not been acted upon. + +--- + +## Gameplay Relevance + +Gronnmark Consumer is everyday goods background in west reach systems — its packaging appears in residences, common areas, and market stalls. The brand is visible and familiar in Nyrheim and adjacent systems. + +The labeling memo is the investigative thread. The legal analysis that acknowledges the ambiguity exists in Gronnmark's files. The supply contracts documenting component origin are in the procurement records. Comparison of the "Made in Nyrheim" claim against the supply chain documentation makes the gap demonstrable. A regional trade association or competitor motivated to challenge Gronnmark's labeling would have sufficient grounds; the question is whether the Commission has received a complaint. + +Gronnmark's position as Nyrheim's largest employer also gives it political weight in local governance decisions — relevant context for investigations involving regulatory enforcement or labor conditions. + +The "Made in Nyrheim" question, if raised at the Lattice Commission level, puts Gronnmark's founding families in a position they have not publicly prepared for. Their political identity in the west reach is built on local production, local ownership, and the argument that outer reach communities should be able to sustain themselves economically rather than depending on inward supply. The revelation that their largest enterprise assembles inward components under a local label would not simply be a legal finding — it would be a political contradiction that their opponents in west reach governance discussions would use. Gronnmark's founders understand this, which is the real reason the legal memo has not been acted upon: the risk of regulatory challenge is less significant than the risk of what a public dispute about the "Made in Nyrheim" claim would do to the family's standing in the community it claims to serve. + +--- + +**Cross-References:** +- [Nyrheim](../star-systems/GJ-3737/index.md) — Headquarters; assembly facilities; primary market +- [Bavarian Craft](bavarian-craft.md) — West reach manufacturer; Bergtor component supply overlap +- [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) — Bergtor industrial peer; supply chain context +- [Lowlands Consumer](lowlands-consumer.md) — West reach consumer goods peer; adjacent market segment + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/groot-karoo-cellars.md b/wiki/corporations/groot-karoo-cellars.md index 410c68a05..8b464ab7f 100644 --- a/wiki/corporations/groot-karoo-cellars.md +++ b/wiki/corporations/groot-karoo-cellars.md @@ -1,24 +1,108 @@ --- title: "Groot Karoo Cellars" -description: "Groot Karoo Cellars — regional specialty producer based in Karoo, south reach" +description: "South_reach fortified wine and brandy cooperative based at Karoo (GJ 222A) — arid-terroir mineral character, drought-adapted cultivars, and three generations of patient aging from reserves the founding-era geological survey described as adequate" slug: groot-karoo-cellars category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Karoo (GJ 222A) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kaapse-baai-wines] --- # Groot Karoo Cellars -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Fortified Wine and Brandy Cooperative +**Also Known As:** Groot Karoo, the Cellars **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Karoo (GJ 222A) +**Scope:** Regional — south_reach corridor primary; inner-corridor specialty and collector market secondary +**Headquarters:** Karoo (GJ 222A) — south_reach corridor +**Classification:** Sub-Syndic agricultural cooperative; member-elected governing board -Groot Karoo Cellars is a regional specialty producer operating out of Karoo (GJ 222A). Details to be expanded. +--- + +## Overview + +Groot Karoo Cellars makes fortified wines and grape brandy from cultivars that have spent three generations learning to survive in a system with minimal rainfall, alkaline soil, and the kind of intense seasonal heat that kills less-adapted varieties before harvest. What survives is angular, mineral, and marked by its conditions in ways that cannot be manufactured elsewhere. The cooperative's premium fortified range — sweet, concentrated, with an iron-and-dry-stone character that buyers in the inner corridor have been acquiring at premium prices for sixty years — is the product of that struggle, and the brand has been built around the understanding that difficulty is a terroir. + +Groot Karoo's challenge now is not viticulture. It is water. + +--- + +## Origin + +The founding settlers of the Karoo system arrived from a Cape-Afrikaner background and named their primary settlement after the broad semi-arid plateau of southern Africa — a name that acknowledged the difficulty they were choosing and suggested they considered it appropriate. They were farmers from a dry-land tradition who understood that what grows under constraint is not lesser than what grows with abundance, only different, and that different has commercial value if you can reach the buyers who understand it. + +The first vintages were table wines, adequate and unmemorable. The third generation discovered what the conditions actually favored: the heat and aridity concentrated sugars and phenolics in ways that produced exceptional base material for fortification. The fortified wine tradition — grape spirit added to arrest fermentation and preserve the concentrated sweetness — became the cooperative's defining expression and has remained so for a hundred and forty years. + +The founding deed established a member-elected board of seven, renewable every four years, responsible for production planning, capital allocation, and external commercial relationships. The board was designed to prevent any single family from holding indefinite control. This design has worked as intended on the question of internal governance. It has not prevented a governing board from holding information it considers too consequential to share. + +--- + +## Operations + +**The cooperative:** Groot Karoo operates as a collective of twenty-three member farms, whose production flows into shared cellars, shared aging stock, and shared commercial accounts. Individual farm quality is tracked and compensated differentially, but the premium label portfolio — Groot Karoo Reserve Tawny, Groot Karoo Vintage, and the Groot Karoo Superior Dry Brandy — is a collective product rather than an estate-specific one. This pooling model has served the cooperative well by maintaining quality consistency across member farms with varying microclimates. + +**Water management:** Production at Groot Karoo is entirely irrigation-dependent. The system receives insufficient annual rainfall to sustain commercial viticulture without drawing on supplemental water sources. The primary source is the Onderfontein aquifer, a fossil water deposit discovered by the founding generation's geological survey and developed over the cooperative's first fifty years into a managed draw system. The aquifer has supported every vintage in the cooperative's history. It is the single point of failure for the entire operation. + +**Aging:** Fortified wines require patient barrel maturation — the premium ranges are held for twelve to twenty-five years before release. This timeline means the current board is making decisions whose commercial consequences will be assessed by future boards. It also means the current premium stock under aging represents significant capital that can be valued, separated from the production operation, and sold. + +**Distribution:** The cooperative distributes through south_reach channels and a small set of inner-corridor specialist importers who carry Groot Karoo Reserve Tawny as a category-defining fortified wine. The Dry Brandy moves through general spirit distributors. + +--- + +## Products + +**Groot Karoo Reserve Tawny** — the signature product. A fortified wine from the dominant local red varietal, aged a minimum of fifteen years in old-wood barrels that contribute little tannin but allow the slow oxidative development that gives the tawny style its distinctive amber color and nut-and-dried-fruit character. The arid terroir contributes a mineral dryness to the finish that distinguishes Groot Karoo from any equivalent production in wetter systems. Inner-corridor buyers who collect fortified wines treat Reserve Tawny as a benchmark. + +**Groot Karoo Vintage** — the declared-vintage expression, produced only in exceptional harvest years. Not declared every year; when declared, aged twenty to twenty-five years before release. Substantially more valuable than the Reserve range. The most recent declared vintage was twelve years ago; the cooperative has not declared one since, citing harvest quality concerns. + +**Groot Karoo Superior Dry Brandy** — grape brandy from the same cultivar base, double-distilled and aged in local stone-pine barrels for eight years minimum. The dry brandy has a different market profile from the fortified wines — purchased in the south_reach as a working spirit, appearing in inner-corridor specialty markets as an unusual regional expression. Production volumes are modest. + +--- + +## Political Relationships + +**Kaapse Baai Wines:** The Cape Producers Circle at Kaapse Baai (GJ 213) represents a parallel south_reach terroir wine operation — coastal and cool rather than arid and hot, table wines rather than fortified. The two cooperatives occupy distinct niches and do not compete. Representatives of both operations have occasionally found themselves in conversation at south_reach producer gatherings, sharing the specific perspective of terroir producers in remote systems managing corridor-scale market relationships with limited leverage. The relationship is aware and professionally cordial without being close. + +**Collective membership:** The twenty-three member farms are the cooperative's constituency and its source of internal accountability. Member farmers receive annual production accounts, participate in board elections, and have access to the cooperative's public financial records. They do not have access to the board's internal working papers, strategy documents, or the reports commissioned by the board through external contractors. + +**Ferreira Monteiro:** The cooperative's commercial law relationship for external disputes and contract work sits with a Ferreira Monteiro correspondent registered at the south_reach nodes of Ferreira's network. Ferreira Monteiro's practitioners are familiar with agricultural cooperative governance in the south_reach context. + +--- + +## What They Don't Talk About + +Five years ago, the governing board commissioned a hydrological survey of the Onderfontein aquifer through an external geological consultancy. The survey was marked proprietary and has not been presented to or disclosed to the cooperative membership. Its conclusions established that the aquifer is not inexhaustible. At current draw rates, the Onderfontein system has twenty-five to thirty-five years of viable production capacity before extraction rates fall below the levels required to sustain commercial-scale viticulture. The cooperative could extend this window by reducing annual draw — which would require reducing production — or by locating supplemental water sources, which the survey assessed as unlikely at commercially viable depth in the current geology. + +The board's response, over the subsequent four years, has been to begin preliminary negotiations with an off-system holding company regarding the acquisition of Groot Karoo's premium label portfolio and its aged stock inventory. The negotiation is framed internally as "strategic partnership discussions." The holding company would acquire the labels and the aging barrels — the premium commercial assets — while the cooperative retained the production operation and the member farms. From the board's perspective, this preserves employment and member livelihoods while extracting maximum value from the premium assets before the aquifer constraint becomes public knowledge. + +No member of the cooperative has been informed that these negotiations are occurring, or that the board is in possession of a geological assessment that changes the long-term production outlook. + +--- + +## Gameplay Relevance + +Groot Karoo Cellars is a slow-burning institutional betrayal. The board is not acting from malice — they have convinced themselves they are managing a hard situation responsibly. The members who don't know about the survey and the negotiations would have a different view. + +The productive investigation threads are: + +- **The hydrological survey** — the proprietary geological report exists in the board's internal archive. It was commissioned through an external consultancy, which means the commissioning contract and the consultancy's own records are external to the cooperative and potentially accessible through the consultancy rather than the board. A player who locates the survey has the full picture. A player who locates only the board's internal strategy documents may understand the shape of the situation without the technical foundation. +- **The portfolio negotiations** — the off-system holding company is in preliminary discussions. The negotiation correspondence exists in the board chair's communications rather than official cooperative records. Any member of the cooperative's audit committee has a standing right to review cooperative correspondence — a right they have not exercised because they don't know there is correspondence worth reviewing. +- **The production decline** — the vintage non-declaration pattern (twelve years without a declared vintage, citing harvest quality) is publicly observable. Someone with access to production records and the hydrological survey together would understand that the quality rationale is secondary; the board is avoiding vintage declarations that would create aging inventory commitments extending beyond the aquifer timeline. + +--- + +**Cross-References:** +- [Karoo](../star-systems/GJ-222A/index.md) — Headquarters system; founding terroir; Onderfontein aquifer +- [Kaapse Baai Wines](kaapse-baai-wines.md) — Parallel south_reach terroir producer; coastal estate wines; mutual professional awareness + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/haesungdan-records.md b/wiki/corporations/haesungdan-records.md index bd114214a..5e81a270d 100644 --- a/wiki/corporations/haesungdan-records.md +++ b/wiki/corporations/haesungdan-records.md @@ -1,11 +1,11 @@ --- title: "Haesungdan Records" -description: "Haesungdan Records — cultural content producer based in Miryang, east reach" +description: "East reach vocal arts label at Miryang (GJ 754) — celebrated for artist development depth, demanding craft standards, and a roster built on decades-long relationships" slug: haesungdan-records category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Miryang (GJ 754) @@ -16,9 +16,81 @@ cross_refs: [] # Haesungdan Records -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Vocal Arts Label **Status:** Canonical -**Scope:** Regional — east reach operations +**Scope:** East reach corridor primary; reach-wide distribution via Meridian for principal artists **Headquarters:** Miryang (GJ 754) +**Currency:** Tractus +**Classification:** Sub-Syndic cultural enterprise; independent -Haesungdan Records is a cultural content producer operating out of Miryang (GJ 754). Details to be expanded. +--- + +## Overview + +Haesungdan Records is named for the ceremony of the rising — a sunrise observation tradition practiced at the eastern headlands of Miryang's habitable continent, where the system's star clears a particular ridge formation in a way that produces a window of specific light lasting approximately forty minutes. The ceremony is communal, unhurried, and not concerned with arriving at a conclusion. It is exactly what the label sounds like. + +The label's specialty is the voice — specifically, the trained singing voice developed through methods that take years and do not shortcut. Haesungdan has signed artists as young as nineteen who released their first records with the label at twenty-six. The label considers this normal. Its artist development program is among the most rigorous in the east reach, involving sustained coaching, repertoire building, and the patient accumulation of technique that the label's founders believe is the only legitimate basis for a recording career. An artist who arrives at Haesungdan with talent but without foundation will receive the foundation before they receive a release date. + +The label has produced eleven of the east reach corridor's most respected vocal artists in its forty-five-year history. It has also produced, in that time, a significant number of artists who completed their development period and then moved to other labels for their commercial career. Haesungdan is not proprietary about this. The goal is developed artists, not owned artists. + +--- + +## Origin + +The label was founded forty-five years ago by a vocal instructor named Jiye Seon who had taught at one of Miryang's music conservatories for twelve years and had concluded that the conservatory system and the commercial music system were solving different problems. The conservatory produced skilled singers who knew how to sing. The commercial system produced singers who could record. The gap between these — the artist who knew their instrument and also knew how to make that instrument serve a recording, an audience, a room — was not being systematically addressed by either institution. + +Jiye Seon founded Haesungdan to address the gap. The initial roster was drawn from conservatory graduates who had completed their formal education and needed the next stage of development that neither the conservatory nor the commercial labels were providing. The first three releases, across the label's first four years, were not commercially significant. They were technically exceptional. The east reach music press understood what it was hearing. The wider audience came later. + +Jiye Seon continues as the label's artistic director at an age that requires Perpetual-class longevity technology to have reached. She holds no opinion about retiring. + +--- + +## Operations + +**Artist development:** The label's development program lasts between three and seven years depending on the artist's starting point and trajectory. During this period artists receive a living stipend, coaching from label-contracted instructors, access to the label's rehearsal facilities, and regular performance placements at smaller venues in the east reach corridor. Development artists do not record for release until Jiye Seon and the artist agree that the recording will be a fair representation of what the artist can do. + +**Coaching network:** The label maintains relationships with approximately thirty vocal coaches, accompanists, and music historians across the east reach. Several of these relationships are multi-generational — coaches who studied with Haesungdan-affiliated instructors themselves, now teaching within the network. The network operates as an informal extension of the label's development capacity, providing regional coverage for artists in systems outside Miryang. + +**Repertoire:** The label does not impose repertoire choices. Haesungdan artists are expected to develop their own relationship with their material — which may be traditional east reach vocal forms, contemporary composition, cross-cultural synthesis, or genres that Haesungdan has not previously worked with. The label's position is that repertoire is the artist's decision and that artistic directors who impose repertoire are solving their own aesthetic problems, not the artist's. + +**Distribution:** Tractus-denominated, Meridian-primary. Principal artists with established careers receive full reach-wide distribution through standard Meridian protocols. Development-period artists have limited distribution by design — their material is not intended for wide circulation until it is ready for it. + +--- + +## Reach Position + +Haesungdan Records occupies a specific and respected position in the east reach cultural ecosystem: the label that produces artists the other labels would like to sign. The label's development alumni — artists who completed their Haesungdan training and then moved elsewhere — are well represented in the east reach's major commercial labels and in cross-corridor careers. The label does not advertise this. It does not need to. + +The relationship between Haesungdan and the east reach's commercial music infrastructure is cordial and mutually understood: Haesungdan is not competing for the same commercial outcomes, and the commercial labels are not attempting to replicate the development program that would require them to operate at a different pace and on a different economic logic. The labels that have tried to run accelerated development programs modeled on Haesungdan have generally produced results that Jiye Seon has described, when asked, as "promising starts." + +--- + +## Political Relationships + +**Miryang music conservatories:** Haesungdan draws its development candidates primarily from conservatory graduates and maintains formal consultation relationships with the two largest Miryang institutions. Jiye Seon does not hold a teaching post at either but is invited to examine senior recital performances. The conservatories track their own graduates' trajectory through Haesungdan development — a prestige indicator for the conservatory, not just the artist. + +**East reach commercial labels:** The cordial competitive relationship described above rests on a quiet understanding: the commercial labels do not approach Haesungdan artists during the development period, and Haesungdan does not attempt to retain artists after development. This understanding is not contractual. It has held for forty-five years because breaking it would be expensive for the breaker in ways that nothing in Miryang's music infrastructure rewards. + +**Meridian:** Distribution relationship only, no equity entanglement. Haesungdan's contracts with Meridian are longer-duration than typical commercial label agreements, reflecting the label's longer production cadence. + +--- + +## Silence Topic + +What Haesungdan Records does not discuss: the assessment process. + +How Jiye Seon decides which prospective artists enter the development program and which do not is not documented. The criteria are not published. Artists who have been declined have described the experience variously as clear and direct, ambiguous, and in at least one case devastating. The label does not dispute any of these characterizations. "We make a judgment" is the closest thing to an official statement on the matter. The judgment has been wrong. The label acknowledges this without specifying the cases. + +One declined artist, two decades later, sits on the board of a competing east reach label. Whether that artist remembers the decline decision the way Jiye Seon remembers making it is not something either of them has confirmed in writing. The competing label has never signed a Haesungdan-trained artist. This pattern could be coincidence. The commercial labels do not pursue Haesungdan talent on principle, per the silent understanding above. It could also not be coincidence. + +--- + +**Cross-References:** +- [Hanyang Precision Systems](hanyang-precision.md) — co-located at Changwon adjacent corridor; east reach institutional neighbor +- [Miryang](../star-systems/GJ-754/index.md) — headquarters system; east reach vocal arts corridor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/hakone-hospitality.md b/wiki/corporations/hakone-hospitality.md index 2a19729f0..02ea8627c 100644 --- a/wiki/corporations/hakone-hospitality.md +++ b/wiki/corporations/hakone-hospitality.md @@ -1,24 +1,97 @@ --- title: "Hakone Hospitality" -description: "Hakone Hospitality — premium service provider based in Matsue, east reach" +description: "East reach thermal and restorative hospitality group at Matsue (GJ 687) — geothermally sourced immersive stays built around a Japanese-heritage tradition of deliberate recovery" slug: hakone-hospitality category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Matsue (GJ 687) tags: [service_premium, east_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [prometheus-labs, lattice-commission] --- # Hakone Hospitality -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Thermal and Restorative Hospitality Group **Status:** Canonical -**Scope:** Regional — east reach operations +**Scope:** East reach corridor primary; inward referrals secondary **Headquarters:** Matsue (GJ 687) +**Currency:** Tractus +**Classification:** Sub-Syndic service enterprise; private partnership -Hakone Hospitality is a premium service provider operating out of Matsue (GJ 687). Details to be expanded. +--- + +## Overview + +Matsue sits on a geologically active body with subsurface thermal systems that produce hot springs of exceptional mineral consistency. This is not unusual in the Reach — geothermal activity appears on dozens of inhabited worlds — but what the founding generation of Matsue's hospitality trade understood, and what the competitors who have tried to replicate it have not, is that the thermal water is not the product. The product is the stay. The water is the occasion. + +Hakone Hospitality operates five properties at Matsue, each built around a different thermal source with different mineral composition and temperature characteristics. The properties share a common design language derived from the Japanese heritage traditions of their founding generation: low construction, natural materials, deliberate spatial arrangement that manages privacy without walls. The guest experience is structured around immersion, recovery, and the specific quality of time that occurs when a person has no obligations and no Meridian connectivity and nowhere to be. + +The last point is operational rather than philosophical. Hakone properties do not maintain Meridian connectivity for guest use. This is disclosed in the booking materials and is the reason approximately forty percent of the group's guests book specifically with Hakone rather than other east reach premium properties. The other sixty percent book for the thermal experience and discover, during the stay, that the absence of connectivity is something they did not know they needed. + +--- + +## Origin + +The founding partnership was established sixty years ago by three families from Matsue's original settlement wave — all with roots in Japanese heritage communities that had maintained traditional hospitality practices through several generations of corridor transit. The tradition they brought was specific: not luxury as accumulation of amenities, but hospitality as structured recovery. The onsen tradition held that the value of thermal immersion was inseparable from the conditions around it — the silence, the absence of demand, the specific quality of attention from staff who understood that service sometimes means leaving someone alone. + +The first Hakone property opened with twelve rooms and one thermal pool. It was full within a month and has operated at full occupancy or close to it for the sixty years since. The partnership added properties at intervals of roughly a decade, each one occupying a different thermal zone on the habitable body, each one designed by the same architectural family that designed the first. The current managing partnership is third-generation: grandchildren of two of the founding families, extended through Perpetual-class longevity into careers that are still in their middle decades. + +The founding families brought their practice to Matsue specifically because the system's geothermal profile matched what the tradition required. Three generations of corridor transit had compressed the practice to what could not be lost: the structural relationship between thermal immersion, silence, and the quality of attention that is not quite service and not quite friendship. The properties as they now stand are what those three generations carried and what the current partnership has had sixty years to rebuild around Matsue's five specific thermal zones. + +--- + +## Operations + +**Properties:** Five properties, forty to sixty rooms each, designed for stays of three days minimum. The booking systems do not accommodate one-night stays; the property design assumes guests who need time rather than a bed. Occupancy is managed to ensure no property runs above eighty percent capacity — the remaining twenty percent is held as operational buffer and, in practice, as the reason the properties feel spacious when they are full. + +**Thermal access:** Each property centers on its specific thermal source. The properties do not share thermal infrastructure. Guests at one property do not visit another during their stay; the stays are designed to be complete within one location. The mineral profile of each thermal source is documented and published — not for marketing purposes but because guests with specific health considerations need the information, and because the transparency is consistent with the hospitality philosophy. + +**Connectivity policy:** Meridian access is absent from all guest areas at all properties. Staff areas maintain connectivity for operational purposes. The policy is enforced through infrastructure design rather than rule-setting: the properties are constructed in locations where Meridian signal does not reach, and the construction materials maintain the gap. Guests who need connectivity during their stay are directed to a facility outside the property grounds, a ten-minute walk that the group considers appropriate to the purpose. + +**Lattice wellness services:** Hakone offers, as a supplementary service at four of its five properties, a lattice wellness assessment — a non-clinical review of lattice performance indicators conducted by credentialed staff and positioned as a restorative service rather than a medical one. The assessment uses equipment licensed under a wellness services classification rather than the clinical classification that would apply to Lattice Commission-certified medical procedures. The service is popular. The licensing category it operates under was designed for occupational fitness assessments, not for the extended diagnostic depth that Hakone's assessments reach. The Lattice Commission has not, to date, examined this classification closely. + +--- + +## Political Relationships + +**Prometheus Labs:** The research data agreement connecting Hakone's wellness assessments to a Prometheus Labs research division was established by the group's second-generation management. The current managing partnership knows the agreement exists; the specific scope of what Prometheus Labs receives has not been the subject of an internal review in twenty years, and the relevant documents are in the founding archive rather than the current operational record. The relationship is passive — Hakone provides data, Prometheus Labs provides the research fee — and neither party has needed to renegotiate. + +**The Lattice Commission:** The wellness services classification that Hakone's assessment program operates under is the institution's regulatory pressure point. Commission certification staff at the nearest regional office have flagged the classification for review three times in the past decade; each review concluded without action, partly because the boundary is genuinely ambiguous and partly because Hakone's assessment volumes have remained below the threshold that triggers mandatory audit. The east reach's growing commercial traffic is putting Matsue's systems on trajectories that will eventually exceed that threshold. + +**Matsue's industrial syndicate community:** Hakone's properties exist in a manufacturing system whose primary economic character has nothing to do with hospitality. The coexistence is stable — the thermal trade draws high-end clients who spend in the service economy without competing for industrial resources. The Yongli Combine's management staff use Hakone properties for restorative stays, which is a relationship neither party discusses publicly and which gives Hakone a commercial anchor in the system's most powerful industrial institution. + +--- + +## What They Don't Talk About + +Hakone's lattice wellness assessments produce records. The assessment records are held by the group for the stated purpose of longitudinal wellness tracking for returning guests. This is accurate; the records are used this way. What the group does not prominently disclose is that the aggregate assessment data — anonymized, statistically processed, stripped of individual identification — is provided quarterly to a Prometheus Labs research division studying long-term lattice performance in high-functioning professionals under restorative conditions. The data is provided under a research agreement that predates the current management partnership. The guests whose data contributed to the aggregate provided consent for "research use of anonymized wellness data" in the booking terms they agreed to. Most of them have not read that clause carefully. + +The more operationally significant fact is the assessment equipment's certification trajectory. The current wellness services classification creates an ambiguous regulatory boundary that has been stable because neither the Commission nor Hakone has pressed it. If Commission review thresholds catch up with Hakone's growing assessment volumes, the relevant question will not be whether the service constitutes medical practice but what data has been collected and shared under a classification that may not have covered it. The research agreement with Prometheus Labs makes the answer complicated. + +--- + +## Gameplay Relevance + +Hakone properties are investigation-relevant for any case touching the east reach's professional and institutional class. People who need to be unreachable come here. The connectivity absence is a genuine operational gap — a player tracking someone's movements will find a gap in Meridian activity records corresponding to a Hakone stay, and the gap will require explanation. The group's guest records, which do exist (unlike Alcazar's), are private; accessing them requires either the group's cooperation, legal process, or a source inside the property. + +The lattice wellness assessment data is a secondary thread. The Prometheus Labs research division purchasing aggregate data is a relationship that, if surfaced, raises questions about what Prometheus Labs is learning from east reach professional lattice performance and why they are paying for access through a wellness hospitality intermediary rather than through standard research channels. The assessment equipment's licensing classification is the entry point: an investigator who knows what questions to ask about the equipment's certification can establish that the assessments exceed the scope of the license, which is a Lattice Commission concern and a potential lever. + +The managing partnership is a potential direct source: third-generation Perpetual-class practitioners who know the founding archive exists, understand what it contains in general terms, and whose primary institutional interest is the properties' operational continuity. They will not volunteer information about the Prometheus Labs data agreement. They will negotiate about what they know and what they are prepared to confirm — which is a different posture from either full cooperation or active obstruction. + +--- + +**Cross-References:** +- [Matsue](../star-systems/GJ-687/index.md) — Headquarters system; geothermally active; five distinct thermal zones +- [Prometheus Labs](prometheus-labs.md) — purchaser of aggregate lattice wellness assessment data +- [Lattice Commission](../factions/lattice-commission.md) — wellness services classification dispute; regulatory pressure point + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/hana-creative.md b/wiki/corporations/hana-creative.md index ed14a8a89..b4207b2ad 100644 --- a/wiki/corporations/hana-creative.md +++ b/wiki/corporations/hana-creative.md @@ -1,24 +1,100 @@ --- title: "Hana Creative" -description: "Hana Creative — cultural content producer based in Jinghu, east reach" +description: "Jinghu visual design and cultural media studio — east reach institutional identity work, public communications design, and a content library built on commissioned art whose underlying attribution rights the studio has been systematically absorbing" slug: hana-creative category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Jinghu (GJ 445) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [hangang-studio, ondori-interactive, byeolbit-entertainment] --- # Hana Creative -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Visual Design and Cultural Media Studio +**Also Known As:** Hana **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Jinghu (GJ 445) +**Scope:** East reach primary; inward institutional licensing secondary +**Headquarters:** Jinghu (GJ 445) — east reach, 4 hops from Gateway +**Classification:** Sub-Syndic creative enterprise; institutional design and visual media production -Hana Creative is a cultural content producer operating out of Jinghu (GJ 445). Details to be expanded. +--- + +## Overview + +The east reach's institutional identity landscape — the visual language that governments, corporations, and cultural organizations use to represent themselves — has been shaped to a significant degree by one studio. Hana Creative handles corporate identity design, government communications materials, and public cultural programming for the majority of Jinghu's institutions and a substantial portion of the east reach's regional organizations. When a new commercial district at Seongho needs environmental graphics, when a regional transit authority updates its wayfinding system, when a cultural festival needs visual identity across five platforms, the commission is as likely as not to end up at Hana. + +The studio's design language is recognizable across the east reach without being loud about it — a particular combination of typographic restraint and illustration warmth that carries identifiable character while adapting to each client's requirements. This adaptability is the studio's core skill and the reason institutional clients retain it across refresh cycles rather than searching for new designers when their previous identity ages. + +The studio has built, over twenty years of commissioned work, a visual content library that is its most valuable commercial asset. The terms under which that library was assembled are the part of the studio's history that the original artists would not recognize. + +--- + +## Origin + +Hana Creative was founded twenty-three years ago by a graphic designer named Park Soyeon who had spent a decade doing freelance identity work for east reach clients and had accumulated enough commissions, reputation, and frustration with the administrative overhead of solo practice to formalize into a studio operation. The founding configuration — a small permanent team with a larger network of commissioned collaborators — was practical: institutional clients wanted a single point of accountability that a solo practice couldn't always provide; a studio provided it. + +The early commissions built the reputation; the reputation brought larger commissions; larger commissions required more complex production, which justified the permanent team expansion. The studio grew from four people at founding to twenty-six now, covering design, illustration, motion, and production. The library of work produced across two decades of institutional commissions has become the basis of a licensing operation that generates revenue independent of active commissions. + +--- + +## Operations + +**Institutional design:** The core practice — corporate identity, government communications, cultural organization visual systems. Multi-year retainer relationships with approximately fifteen institutional clients. Commission work for non-retainer clients representing approximately 40% of project volume. + +**Visual content library:** A catalogue of illustrations, motion assets, and design elements developed across two decades of commissioned projects. Licensed to platforms, publishers, and commercial clients for use in contexts beyond the original commission. Library licensing is a growing revenue stream. + +**Production:** Full in-house production capacity for digital and physical deliverables. The permanent studio handles digital work; physical production is outsourced to Jinghu's printing and fabrication network. + +**Commissioned collaborators:** A network of approximately forty freelance illustrators, motion designers, and photographers who contribute to specific projects. These collaborators are paid project fees; their relationship with the rights produced is defined by their commission contracts. + +--- + +## Political Relationships + +**Hangang Studio:** Hangang Studio is the east reach's dominant media platform and carries a significant portion of the moving-image content that Hana's clients commission for broadcast contexts. The two companies have a commercial relationship through Hana's motion design work for Hangang-distributed productions; they also share east reach institutional clients who use both companies' services for different content types. Both companies have unresolved intellectual property arrangements with creators whose rights they are managing in ways those creators have not been told about. + +**Ondori Interactive:** Ondori Interactive commissions visual design work from Hana for its interactive media products and maintains a retainer relationship for interface design. The retainer gives Ondori early visibility into Hana's design language development — visual approaches that appear in Ondori products before they appear in the public catalogue. The relationship is commercially standard; the timing of design language adoption has occasionally produced confusion about which studio originated specific visual approaches. + +**Byeolbit Entertainment:** Byeolbit is the largest east reach entertainment production company and one of Hana's most significant institutional clients for broadcast visual design. The commercial relationship gives Hana significant revenue stability; it also means that Hana's visual design language is shaped, at the margin, by what Byeolbit's productions need. The derivative work registrations that Hana has filed include visual elements developed specifically for Byeolbit productions — elements that Byeolbit believes it has licensed and Hana believes it has registered as its own derivative. + +--- + +## What They Don't Talk About + +Hana Creative's commission contracts with freelance collaborators include a work-for-hire clause that assigns copyright in the commissioned work to the studio. This is standard. The contracts also include an attribution clause that preserves the collaborator's right to credit and attribution in derivative works produced from the original commission. + +Over twelve years, Hana Creative has been registering the most commercially valuable elements of its commissioned library as derivative works — new registrations that list the studio as rights holder based on design elaboration or contextual reframing that the studio applies to the underlying commissioned art. The derivative registrations are legally defensible — the modifications are genuine — but the practical effect is that subsequent commercial licensing of the library's most valuable visual assets cites the derivative registration, not the original commission. + +The original artists' attribution rights attach to the original work. They do not automatically extend to derivative registrations. When the library element that generates the most commercial licensing revenue is a derivative registration, the original artist's attribution right applies to an asset that isn't what's being licensed. Several of the collaborators who contributed foundational work to the library have, when they have discovered their work in commercial contexts without credit, been directed by Hana's legal team to the original commission contract — which confirms their attribution right to the original, not to the derivative that's actually being used. + +The distinction is documented in the registration records. It is not explained to collaborators when commissions are completed. + +--- + +## Gameplay Relevance + +Hana Creative is visual culture presence in the east reach — its design work is the visual identity of institutions and organizations throughout the corridor, making it ambient everywhere that institutional communication appears. A player navigating east reach commercial and cultural environments will encounter Hana's work without knowing it. + +The derivative registration pattern is the investigative thread. The original commission contracts, the derivative registrations, and the licensing records are three sets of documents that tell the story when compared. A collaborator who has tried to license their own work and been informed it falls outside their attribution rights is a potential source. The cumulative scale of the practice — twenty years, dozens of collaborators — makes the pattern demonstrable rather than requiring analysis of any single case. + +The consequence of exposure varies by collaborator. Artists who contributed incidentally to a single commission have limited standing; artists whose foundational work underpins a significant licensing revenue stream have a strong case that their attribution rights are being extinguished through a registration process they were not party to. The most significant thread involves two or three collaborators whose illustration work from Hana's first decade is now the visual foundation of multiple institutional identities across the east reach — identities that renew licensing revenue annually. The derivative registration structure means these artists cannot exercise attribution rights in the commercial contexts that actually generate value. For a player mediating an IP dispute or building an attribution rights case, the registrations, the original contracts, and the licensing revenue records are the three document sets that make the pattern legible. The studio's founder, who is still active at Hana, was not the architect of the registration practice; it developed under commercial management below her. This is context that matters for how the case resolves. + +--- + +**Cross-References:** +- [Jinghu](../star-systems/GJ-445/index.md) — Headquarters; institutional client base; design community +- [Hangang Studio](hangang-studio.md) — East reach media peer; overlapping institutional licensing +- [Ondori Interactive](ondori-interactive.md) — East reach creative enterprise; shared client geography +- [Byeolbit Entertainment](byeolbit-entertainment.md) — East reach entertainment peer; visual content licensing overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/hangang-studio.md b/wiki/corporations/hangang-studio.md index d401cf7fd..930bc8f16 100644 --- a/wiki/corporations/hangang-studio.md +++ b/wiki/corporations/hangang-studio.md @@ -1,24 +1,100 @@ --- title: "Hangang Studio" -description: "Hangang Studio — media platform and catalogue service based in Songjiang, east reach" +description: "Songjiang media platform and archive service — east reach cultural catalogue streaming and preservation, collecting licensing revenue on lapsed-agreement works while renegotiating quietly and leaving rights holders uninformed" slug: hangang-studio category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Songjiang (GJ 625) tags: [platform_catalogue, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [hana-creative, open-corridor-stream, byeolbit-entertainment] --- # Hangang Studio -**Type:** Corporation — Media Platform And Catalogue Service +**Type:** Corporation — Media Platform and Archive Catalogue Service +**Also Known As:** Hangang **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Songjiang (GJ 625) +**Scope:** East reach primary; inner corridor catalogue distribution secondary +**Headquarters:** Songjiang (GJ 625) — east reach, 4 hops from Gateway +**Classification:** Sub-Syndic media enterprise; streaming, archive licensing, and cultural preservation -Hangang Studio is a media platform and catalogue service operating out of Songjiang (GJ 625). Details to be expanded. +--- + +## Overview + +The east reach's cultural production — films, music, visual art, immersive media — is scattered across systems without a coherent distribution infrastructure. What exists in one system may be entirely inaccessible two hops away. Hangang Studio was built to solve this: a platform that aggregates east reach cultural content into a searchable, streamable archive and distributes it across the corridor. The ambition is genuine and the execution is substantial. Hangang's catalogue is the most comprehensive aggregation of east reach cultural production available anywhere in the corridor, and for communities whose own cultural output they couldn't previously access outside their home system, the platform is genuinely valuable. + +The commercial model that sustains this is licensing: content owners license their work to Hangang for distribution; Hangang pays licensing fees and collects subscription revenue from the corridor communities who use the service. Where this model functions as described, it works for everyone. The platform's problem is what happens when licensing agreements lapse during the extended renegotiation periods that multi-system rights management requires. + +--- + +## Origin + +Hangang Studio was founded sixteen years ago by a media technology entrepreneur named Cho Minju who had been working in network services at Songjiang and had identified that the east reach's cultural content was distributed in a pattern that made more sense from the perspective of individual system economies than from the perspective of a corridor audience. Each system had its own distribution infrastructure; cross-system access required either physical transit of media carriers or ad hoc bilateral distribution agreements that rarely covered more than two systems. A coordinated platform built from Songjiang's network infrastructure position would consolidate access. + +The founding investment built the technical infrastructure and the initial licensing relationships simultaneously. The first four years were spent building the archive rather than monetizing it — taking on losses to build catalogue depth before introducing subscription pricing. The model worked: when subscription pricing launched, the catalogue was large enough that the pricing was justified. + +--- + +## Operations + +**Catalogue:** Approximately 4,200 titles across film, serial, music, and immersive media. The catalogue skews east reach but includes inward co-productions and purchases. Approximately 600 titles are original Hangang productions; the remainder are licensed from rights holders ranging from individual artists to production studios. + +**Licensing management:** A team of twelve managing approximately 800 active licensing relationships across the catalogue. Agreements range from flat-fee licenses to revenue-share arrangements to long-term exclusivity contracts for major production relationships. + +**Archive function:** Hangang operates a genuine preservation program for east reach cultural material at risk of loss — older works on degrading physical media, productions from systems without local preservation infrastructure. The preservation work is acknowledged as valuable by the cultural communities involved. + +**Distribution:** East reach streaming platform, accessible across the corridor. Content is available offline-download for transit contexts where streaming bandwidth is unavailable. The service operates on a subscription model with tiered pricing. + +--- + +## Political Relationships + +**Hana Creative:** Hana Creative is both a catalogue licensor and a visual design vendor to Hangang — it supplies motion design and interface visual work for the platform, and it licenses visual archive content to the platform's contextual packaging. The dual relationship means Hana has commercial interest in the platform's continued operation and visibility into platform licensing practices. Neither company has disclosed to the other that it has intellectual property arrangements with creators that have not been fully explained to those creators. + +**Open Corridor Stream:** OCS is the inward streaming platform most directly competitive with Hangang's east reach service for content that crosses the corridor boundary. The two platforms have formal territorial divisions in some licensing agreements and informal competition in others. OCS's presence in east reach markets depends partly on the content that Hangang has not licensed exclusively — and Hangang's lapsed-agreement continuation model has kept content active on the platform that, if rights were renegotiated to OCS, would shift competitive balance. + +**Byeolbit Entertainment:** Byeolbit is Hangang's largest content production partner and the studio whose original productions anchor the platform's premium subscription tier. The production relationship gives Byeolbit significant leverage over Hangang's content strategy and the platform's subscriber retention. Byeolbit is aware that Hangang's lapsed-agreement policy has kept some Byeolbit-adjacent catalogue active without current agreements, and has chosen not to raise this because the continued activity sustains audience engagement that benefits Byeolbit's brand. + +--- + +## What They Don't Talk About + +Approximately 200 titles in Hangang's current active catalogue are being distributed under licensing agreements that have technically lapsed — the agreement term expired and renegotiation has been initiated but not completed. The platform continues streaming these works during the renegotiation period under an internal policy described as "good faith maintenance of distribution pending renewal." + +The rights holders whose agreements have lapsed are not informed that their agreements have expired. They are not informed that their work is generating subscription revenue during the lapsed period. The renegotiation correspondence they receive asks them to consider updated terms; it does not note that the content is currently active without a valid agreement. + +Hangang's standard service terms include a clause — agreed to by rights holders at initial onboarding — that permits continued distribution under the expired agreement's terms while active renegotiation is underway, and that deems the rights holder to have accepted any distribution revenue during the lapsed period as advance payment against the renewal agreement at the agreed rate. The rate that applies to the "advance payment" calculation is the rate the renegotiation arrives at — which, if the renegotiation results in lower rates than the expired agreement, means the rights holder's lapsed-period revenue is credited at below-expired-agreement rates. + +Rights holders who sign the renewal agreement receive a credit note, not cash. Rights holders who decline the renewal discover the credit note applies to a service relationship they have just ended. The clause has survived the two legal challenges that have been filed against it. + +--- + +## Gameplay Relevance + +Hangang Studio is media infrastructure in the east reach — the platform appears as a content source in common areas, residences, and transit accommodation, and its preservation archive is a reference resource for cultural investigation. A player researching east reach communities, organizations, or historical events may encounter Hangang's archive as a source of documentary material. + +The lapsed-agreement revenue model is the investigative thread. The internal policy document exists. The list of titles in lapsed-agreement active distribution is a platform management record. The credit note accounting for rights holders who renegotiated or declined is in Hangang's financial records. A rights holder who has received a credit note rather than cash and is trying to understand the mechanism is a potential source who can point to the onboarding clause. + +The archive function also gives Hangang cultural community relationships that make its staff potential sources on east reach creative industry dynamics. + +The lapsed-agreement revenue model is particularly consequential for the estates of deceased artists — the rights holders least likely to be monitoring the platform's activity and most likely to have relied on a previous administrator's understanding of the agreement status. An estate executor who discovers that a family member's work has been generating revenue during a lapsed agreement period, and that the credit note they would receive is calculated at a renegotiated rate the estate never agreed to, faces a legal situation that is difficult to navigate from the outer reach without representation. Hangang's terms were designed for the platform's operational convenience; they produce outcomes for rights holders that a lawyer reviewing them on behalf of an estate would characterize differently than the platform's onboarding framing suggests. A player who can identify one such estate and help it understand its position has a source with standing, time, and motivation. + +--- + +**Cross-References:** +- [Songjiang](../star-systems/GJ-625/index.md) — Headquarters; network infrastructure base +- [Hana Creative](hana-creative.md) — East reach creative peer; visual content licensing overlap +- [Open Corridor Stream](open-corridor-stream.md) — Inward platform peer; distribution comparison context +- [Byeolbit Entertainment](byeolbit-entertainment.md) — East reach entertainment peer; catalogue licensing relationship + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/hangil-celadon.md b/wiki/corporations/hangil-celadon.md index fc74d5635..0588bf2d6 100644 --- a/wiki/corporations/hangil-celadon.md +++ b/wiki/corporations/hangil-celadon.md @@ -1,24 +1,97 @@ --- title: "Hangil Celadon" -description: "Hangil Celadon — heritage craft manufacturer based in Miryang, east reach" +description: "Miryang traditional celadon pottery manufacturer — Korean ceramic heritage sustained across the generations at the east reach, with a glaze authentication gap between the collector tier and the middle market that the company's marketing does not clarify" slug: hangil-celadon category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Miryang (GJ 754) tags: [heritage_craft, east_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [hangil-celadon, hana-creative, iznik-atelier] --- # Hangil Celadon -**Type:** Corporation — Heritage Craft Manufacturer +**Type:** Corporation — Traditional Celadon Pottery Manufacturer +**Also Known As:** Hangil **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Miryang (GJ 754) +**Scope:** East reach primary; inward corridor heritage ceramics market secondary +**Headquarters:** Miryang (GJ 754) — east reach, 6 hops from Gateway +**Classification:** Sub-Syndic heritage craft enterprise; traditional celadon production and distribution -Hangil Celadon is a heritage craft manufacturer operating out of Miryang (GJ 754). Details to be expanded. +--- + +## Overview + +Korean celadon is a ceramic tradition with particular requirements: a specific iron-bearing clay body, a specific glaze chemistry producing the pale grey-green color that has defined the form for centuries, and a specific firing process that transforms both into the subtle, luminous surface that separates true celadon from its imitations. Hangil Celadon has maintained this tradition at Miryang for 180 years, across the generations that separate the founding family from their originary culture, through the long transmission of a craft that requires the same materials, processes, and patience as it did in the first generation. + +The company produces celadon vessels, plates, tea ware, and decorative objects that are genuine in every technical respect. The founder's descendants learned the craft from the founder; the current master potters learned from them; the celadon produced at Miryang is what celadon is. This is not performance heritage. It is continuous practice. + +What has changed, as the market for Hangil's work has grown beyond what the master potters can supply by hand alone, is what "produced at Miryang in the Hangil tradition" means in the middle tier of the product range. + +--- + +## Origin + +The founding family arrived at Miryang as skilled-labor settlers in the system's second generation of settlement, already trained celadon potters who brought clay preparation knowledge, glaze chemistry formulas, and kiln construction skills. The decision to establish a production operation was practical — the founding generation recognized that Miryang's geology provided clay and feldspar bodies suitable for celadon production, and that a settled community had uses for beautiful objects that a transit worker life did not accommodate. + +The first century of production was small and local. The second century saw export, as east reach systems connected and goods moved across the corridor with increasing regularity. By the time inward markets became aware of Hangil's work — approximately eighty years ago, when a collector at Groombridge encountered a piece at a trading house and acquired it — the celadon was already several generations deep in its Miryang context, not a recreation but a continuous lineage. + +--- + +## Operations + +**Collector tier:** Master potter works — individual pieces made entirely by the five senior master potters, hand-formed, hand-glazed with the traditional compound formula, kiln-fired in the original single-chamber kiln. Production is measured in individual pieces per month. Marked with the master potter's personal seal and the Hangil house seal. The objects in this tier are genuinely unique and genuinely expensive. + +**Heritage tier:** Production work by Hangil's full pottery staff — twenty-one potters trained in the traditional method. Hand-formed, hand-glazed, kiln-fired. Higher volume than the collector tier; marked with the Hangil house seal and the producing potter's registration mark. This is traditional production at scale. + +**Middle tier:** Production pieces made by apprentice potters and junior staff, hand-formed, kiln-fired — but glazed using an industrial spray application process that produces the visual celadon surface through controlled deposition rather than hand-brushing. The visual result is near-identical to hand-glazed pieces under ordinary inspection. Microscopic examination reveals the application pattern. Marketed with language that describes pieces as "crafted in the Miryang tradition" — accurate in terms of form and firing; not accurate in terms of glazing method. + +--- + +## Political Relationships + +**Hana Creative:** Hana Creative has produced the visual identity materials and institutional documentation that Hangil uses for its inward market presence, including the catalogue photography and certification presentation that accompanies gallery submissions. The collaboration means Hana's design choices shape how buyers perceive the tier distinctions — or fail to perceive them. Hana has no awareness of the glaze method distinction; its materials accurately represent what the studio was told. + +**Iznik Atelier:** Iznik Atelier is the west reach's most significant heritage ceramics producer and Hangil's closest peer in terms of tradition depth and inward market positioning. The two studios are occasionally compared in ceramic collector contexts; the comparison generally favors Hangil's longer unbroken lineage. Whether Iznik Atelier's production methods have their own tier distinctions is a question the Hangil comparison would invite if the spray-glazing situation were publicly examined. + +**Lattice Commission:** The Commission's heritage craft authentication framework governs the certification marks that distinguish certified craft from commercial production. Hangil's house seal is registered under this framework. The framework's enforcement mechanism relies on self-certification and periodic audit; the audit protocol does not include microscopic examination of glaze application patterns. The certification structure assumes that what the seal means is what the holder represents it to mean. + +--- + +## What They Don't Talk About + +The distinction between the heritage tier and the middle tier — hand-glazed versus industrially spray-glazed — is disclosed in Hangil's product specification sheets, accessible on request from institutional purchasers. It is not disclosed on the pieces themselves. Both tiers carry the Hangil house seal. The marketing language for the middle tier describes the "Miryang tradition" and the "Hangil lineage" without noting which elements of the traditional process apply and which do not. + +The middle tier sells at a price point that positions it as heritage craft below the collector tier — not cheap, not mass-produced, something in the register of authentic traditional ceramics that a buyer who cannot afford a collector piece can still acquire with the understanding that they are buying into the Hangil tradition. Whether that understanding is accurate depends on what the tradition is defined to include. + +The master potters are aware of the distinction and consider the middle tier a separate market segment that does not compromise the work they do. The buyers in the middle tier market are not told, and cannot determine from the object or its documentation, that the glaze was sprayed rather than brushed. The piece they receive is beautiful, correctly fired, and technically celadon. It was not made the way they understand a Hangil piece to be made. + +--- + +## Gameplay Relevance + +Hangil Celadon is cultural heritage presence in the east reach — its pieces appear in private collections, institutional displays, and as high-value traded goods. The brand is known and respected in ceramic-aware contexts across the inner and east corridor. + +The glaze method distinction is the investigative thread. The product specification sheets that document the distinction are accessible; the marketing materials that do not mention it are public; the gap is demonstrable. A buyer who acquired a middle-tier piece understanding it to be hand-glazed has the basis of a misrepresentation complaint if they can demonstrate the marketing created that expectation. A ceramics expert who can identify spray application under examination is the technical witness. + +Hangil's collector tier pieces also circulate through premium goods channels — galleries, private sales, estate transfers — making the authentication documentation that distinguishes collector tier from heritage tier and middle tier a potential target for forgery or substitution schemes. + +The glaze method distinction is also consequential for the institutional buyers who have purchased middle tier pieces as heritage craft for collection or display purposes — government cultural collections, private foundations, and commercial institutions that cite their acquisitions in communications that imply hand-craft provenance. If the spray-glazing distinction becomes public and the "crafted in the Miryang tradition" language is found to imply hand-process to a reasonable buyer, those institutions' acquisitions carry a provenance question. Hangil's exposure in that scenario is not criminal but reputational: the company that has sustained a 180-year ceramic tradition at the outer reach would be understood, in the coverage that followed, as having quietly industrialized the process while marketing the tradition. The master potters themselves — the five who produce the collector tier in the original method — would find the question of what their work is associated with a difficult one. The founding family's relationship to the company's identity is the most consequential casualty of exposure, not the legal liability. + +--- + +**Cross-References:** +- [Miryang](../star-systems/GJ-754/index.md) — Headquarters; pottery tradition; production site +- [Hana Creative](hana-creative.md) — East reach heritage creative peer; cultural context +- [Iznik Atelier](iznik-atelier.md) — Heritage ceramics peer; West reach; comparative craft tradition + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/hanyang-precision.md b/wiki/corporations/hanyang-precision.md index ae0997ff2..f08f4fea8 100644 --- a/wiki/corporations/hanyang-precision.md +++ b/wiki/corporations/hanyang-precision.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Changwon (GJ 860B) tags: [lattice_substrate, electronics, precision_instruments, east_reach, korean, assembly] decision_refs: [D-175] -cross_refs: [] +cross_refs: [kaur-observatory-equipment] --- # Hanyang Precision Systems diff --git a/wiki/corporations/hartsteen-legal.md b/wiki/corporations/hartsteen-legal.md index 4d350be93..2dfcb0954 100644 --- a/wiki/corporations/hartsteen-legal.md +++ b/wiki/corporations/hartsteen-legal.md @@ -1,24 +1,100 @@ --- title: "Hartsteen Legal" -description: "Hartsteen Legal — premium service provider based in Confluent, west reach" +description: "Confluent commercial law firm — west reach contract practice, dispute resolution, and syndicate representation, with undisclosed advisory positions that compromise the firm's conflict clearance for a specific class of client" slug: hartsteen-legal category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Confluent (GJ 395) tags: [service_premium, west_reach, mark] decision_refs: [D-189] -cross_refs: [] +cross_refs: [bavarian-craft, bergkraft-antriebswerke, nordhavn-financial] --- # Hartsteen Legal -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Commercial Law Firm +**Also Known As:** Hartsteen, the firm **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Confluent (GJ 395) +**Scope:** West reach primary; inward corridor commercial law secondary +**Headquarters:** Confluent (GJ 395) — west reach, 3 hops from Gateway +**Classification:** Sub-Syndic professional services; commercial law, contract, and dispute resolution -Hartsteen Legal is a premium service provider operating out of Confluent (GJ 395). Details to be expanded. +--- + +## Overview + +Confluent is the west reach's closest thing to a commercial hub — not at the scale of Groombridge, but a system with enough commercial activity, enough institutional presence, and enough trade to support professional services of genuine depth. Hartsteen Legal has been the dominant commercial law practice in Confluent for fifty years. Its practice covers the things that commercial activity generates: contract drafting and review, commercial dispute resolution, transactional work for businesses entering or exiting arrangements, and representation in the occasional litigation that reaches the west reach's court systems. + +The firm's reputation is technical competence and longevity. Clients who retain Hartsteen get lawyers who know the west reach's commercial law thoroughly, who have managed disputes at every level of the local system, and who have relationships with counterpart firms inward that allow them to handle matters extending beyond the west reach's jurisdiction. This is not glamorous work. It is reliable work, and reliable work is what commercial clients need. + +What those clients do not know, because Hartsteen does not publish it, is that several of the firm's senior partners hold advisory positions with trade syndicates they regularly represent against. + +--- + +## Origin + +Hartsteen Legal was founded fifty years ago by a lawyer named Brigitte Hartsteen who had come to Confluent as a young advocate from an inward firm and had stayed when she realized that the quality of commercial legal services available locally was significantly below what the commercial activity warranted. Her founding practice was built on commercial contract work — the transactional backbone that enables trade — and expanded into dispute resolution when her contract work generated disputes that clients naturally brought to the same firm that had drafted the agreements. + +The firm grew through careful associate hiring and the maintenance of a practice philosophy that the founder imposed: every matter the firm takes, it takes seriously; no client is handled by staff who are not competent to handle them. This standard produced the quality that built the reputation. The firm now has fourteen lawyers, four of whom are partners. + +--- + +## Operations + +**Core practice:** Commercial contract drafting and review — the majority of revenue. West reach trade agreements, supply contracts, licensing arrangements, real property transactions, corporate formation and restructuring. Dispute resolution — commercial arbitration and litigation for disputes within the west reach's legal jurisdiction. Inward referral — for matters extending beyond the west reach, maintained referral relationships with three inward firms. + +**Client base:** Commercial businesses of all sizes operating in the west reach, including a significant proportion of the manufacturing and trading enterprises at Confluent and adjacent systems. Trade syndicates — the collective commercial organizations that coordinate sector interests in the west reach — represent a significant client segment and the most politically complex one. + +**Conflict management:** Standard commercial law practice requires conflict checks before accepting new matters — a review of existing clients to identify whether a new matter creates adverse relationships. Hartsteen conducts these checks. The firm's internal conflict protocol is documented and followed. The protocol relies on a client list that includes direct clients. It does not include advisory positions. + +--- + +## Political Relationships + +**Bavarian Craft:** Hartsteen Legal handles Bavarian Craft's regulatory compliance work, including the guild certification documentation that underpins the company's heritage branding. The legal team that produced the bylaw interpretation justifying Bavarian Craft's certification practice is the same team that manages the firm's west reach industrial client portfolio. If the bylaw interpretation is ever challenged formally, Hartsteen's advice is part of the chain — which gives the firm its own interest in the interpretation surviving scrutiny. + +**Bergkraft Antriebswerke:** Bergkraft's Series 9 certification situation was reviewed by Hartsteen's industrial law team at the point of the fixture discrepancy decision. The legal analysis — that the discrepancy fell within manufacturing tolerances and did not require resubmission — was produced by Hartsteen. The memo exists in both Bergkraft's files and Hartsteen's matter archive. + +**Nordhavn Financial:** Nordhavn Financial is a commercial banking relationship client of Hartsteen's, with the firm handling transactional and dispute work on behalf of Nordhavn's west reach lending portfolio. One of the partners who holds a trade syndicate advisory position also advises Nordhavn on certain regulatory matters — a second concurrent advisory relationship that is likewise absent from Hartsteen's conflict protocol. + +--- + +## What They Don't Talk About + +Three of Hartsteen's four partners hold advisory board positions with trade syndicates that are active in the west reach commercial sector. These positions — which involve attendance at quarterly meetings, review of policy positions, and occasional consultation on regulatory and legal matters — are disclosed in the partners' personal ethics disclosures filed with the west reach legal authority. They are not disclosed in client engagement letters. They are not disclosed to opposing parties. + +When a client retains Hartsteen to represent them in a commercial dispute with a syndicate, the firm's conflict protocol checks the syndicate against the client list. If the syndicate is not a current client, no conflict is identified. The protocol does not check advisory positions because advisory positions are not in the client database. The partner whose advisory position creates the conflict does not recuse from the matter; the conflict is not surfaced. + +Clients who have retained Hartsteen to negotiate against syndicates where a Hartsteen partner sits on the advisory board have been represented by a lawyer who attends the syndicate's quarterly strategic meetings. The lawyer is not consciously betraying the client — the conflict is structural, not active — but the information environment that a lawyer advising a client on strategy is drawing from includes months of syndicate advisory meetings that the client does not know about and that the lawyer cannot fully compartmentalize. + +The west reach legal authority's ethics framework requires disclosure of advisory positions in representations where the position is relevant. "Relevant" is a term the framework does not define precisely. Hartsteen's position is that advisory board attendance does not create a conflict unless the specific dispute was discussed at the board, which it generally has not been. + +--- + +## Gameplay Relevance + +Hartsteen Legal is professional services background in the west reach — it handles the commercial disputes and contracts of the businesses the player encounters, and its lawyers are social contacts in Confluent's professional community. A player pursuing commercial investigations in the west reach will find Hartsteen referenced in commercial documentation. + +The advisory position situation is the investigative thread. The partners' personal ethics disclosures exist in the legal authority's filings — they name the syndicate positions. The client engagement letters, for any matter where a partner held a relevant advisory position, do not reflect corresponding disclosure. A client who discovers the omission while managing the consequences of a negotiation they lost has grounds for a complaint. Whether those grounds are sufficient under the framework's ambiguous "relevant" standard is a legal question that would be resolved by the authority Hartsteen's partners have relationships with. + +The firm's archives also document the commercial relationships that have shaped west reach trade over fifty years — contract structures, dispute patterns, and the history of which syndicates have pushed which commercial positions at what times. + +The advisory position situation is most consequential for clients who lost disputes against syndicates where a Hartsteen partner held a board advisory role. Whether any of those clients lost because of information their lawyer had and they didn't — or simply lost because the other side was stronger — is not a question the case outcomes answer. It is a question that the outcome, combined with the advisory calendar, makes worth asking. A client who reviews what a Hartsteen partner was discussing at syndicate advisory meetings in the quarter before a negotiation they lost has context that changes the meaning of every piece of legal advice they received during that period. Whether that context translates to a malpractice claim depends on what the advisory meetings covered. The partner's calendar and the meeting minutes are the documents; the client's case file is the comparison. Both exist. + +--- + +**Cross-References:** +- [Confluent](../star-systems/GJ-395/index.md) — Headquarters; primary client base; legal authority jurisdiction +- [Bavarian Craft](bavarian-craft.md) — West reach commercial client; guild certification legal work +- [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) — West reach industrial client; certification dispute exposure +- [Nordhavn Financial](nordhavn-financial.md) — West reach financial peer; commercial relationship context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/higashiyama-vehicle.md b/wiki/corporations/higashiyama-vehicle.md index 9839e06b9..b5e77a25d 100644 --- a/wiki/corporations/higashiyama-vehicle.md +++ b/wiki/corporations/higashiyama-vehicle.md @@ -1,24 +1,101 @@ --- title: "Higashiyama Vehicle" -description: "Higashiyama Vehicle — precision technology manufacturer based in Kurashiki, east reach" +description: "Kurashiki surface and atmospheric vehicle manufacturer — east reach transit and industrial vehicle production, with a certification test facility that Higashiyama helped design and partially funds, ensuring the tests favor what Higashiyama builds well" slug: higashiyama-vehicle category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kurashiki (GJ 205) tags: [tech_premium, east_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [dalbit-systems, higashiyama-vehicle, kumho-navigation] --- # Higashiyama Vehicle -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Surface and Atmospheric Vehicle Manufacturer +**Also Known As:** Higashiyama, HV **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kurashiki (GJ 205) +**Scope:** East reach primary; inward corridor vehicle procurement secondary +**Headquarters:** Kurashiki (GJ 205) — east reach, 3 hops from Gateway +**Classification:** Sub-Syndic precision manufacturing enterprise; surface transport and atmospheric vehicle production -Higashiyama Vehicle is a precision technology manufacturer operating out of Kurashiki (GJ 205). Details to be expanded. +--- + +## Overview + +Moving people and goods on the surface of east reach worlds requires vehicles built for the specific conditions those worlds present — variable gravity, atmospheric compositions that corrode standard alloys, terrain that would wreck vehicles designed for Core corridor infrastructure. Higashiyama Vehicle has been manufacturing surface transport and atmospheric vehicles for these conditions from Kurashiki for sixty years, and its product catalogue is the reason east reach planetary operations can run without importing vehicles from inward suppliers who have never been to the systems their products are supposed to work in. + +The company's engineering approach is environmental: start with where the vehicle will operate, specify for those conditions, test against them. This sounds obvious. It is not, in practice, as common as it should be. Inward manufacturers who sell into the east reach produce to general specifications that cover a wide range of environments and miss the edge cases specific to outer corridor conditions. Higashiyama's vehicles are not necessarily better in general terms; they are significantly better in the specific terms that east reach operators encounter daily. + +The certification framework that validates this is one that Higashiyama had a hand in designing. + +--- + +## Origin + +Higashiyama Vehicle was established sixty years ago by an industrial engineer who had spent twenty years maintaining vehicles on Kurashiki's surface operations and had arrived at the same conclusion that outer reach manufacturers consistently arrive at: the equipment being imported was not designed for the actual use environment, and the people using it were absorbing the cost of that mismatch in maintenance hours, downtime, and shortened equipment life. + +The founding operation started with agricultural and mining vehicles, where the operational conditions diverged most sharply from inward design assumptions. Early product success established the company's local market position; expansion into atmospheric transport vehicles came fifteen years in, when Kurashiki's growing population needed transit capacity that local operators could maintain without inward technical support. The product range expanded further as the company's engineering capabilities and manufacturing capacity grew. + +--- + +## Operations + +**Product lines:** Surface transport vehicles — personnel carriers, cargo movers, and agricultural equipment for planetary surface operations. Atmospheric transit vehicles — lighter aircraft and VTOL transports for inter-site movement across systems without gate infrastructure. Industrial vehicles — heavy equipment for mining and construction applications requiring environmental hardening. Maintenance parts and retrofit kits for vehicles in the installed east reach fleet. + +**Manufacturing:** Main facility at Kurashiki, with a secondary production facility at an adjacent system. Combined workforce of four hundred, of whom approximately one hundred are in engineering and technical roles. The facilities produce to order for most institutional clients and maintain a smaller ready-inventory line for standard specifications. + +**Certification:** Vehicles for commercial and institutional use require certification under east reach transit authority standards. Higashiyama's products are certified across all applicable categories. The certification process requires independent testing of performance parameters. + +**Service:** Regional service network at twelve east reach systems. Maintenance contract clients represent approximately 40% of institutional revenue. + +--- + +## Political Relationships + +**Dalbit Systems:** Dalbit's navigation systems are standard integration in Higashiyama's atmospheric and surface transport products. The integration is specified in Higashiyama's vehicle certification documentation — which means Dalbit's hardware is part of the certified configuration that Kurashiki Testing Services tested. The same testing body that Higashiyama helped design the protocols for also certified Dalbit-equipped Higashiyama vehicles. The layered relationship between the two companies runs through a testing institution that both benefit from. + +**Kumho Navigation:** Kumho Navigation is the east reach competitor whose products perform differently from Dalbit's in the edge cases that Kurashiki Testing Services' protocols don't cover. Kumho has raised protocol coverage concerns with the transit authority and been unable to advance them through a committee process where Higashiyama participates. Kumho does not know that Higashiyama contributed 40% of the testing body's founding capital. + +**Lattice Commission:** The Commission's certification framework for east reach vehicles accepts regional transit authority certification as sufficient for corridor-wide recognition. Kurashiki Testing Services' certifications therefore carry Commission recognition without Commission audit. The Commission's regional certification acceptance policy assumes that regional bodies are independent of the manufacturers they certify — an assumption the Higashiyama founding capital relationship does not support, though it has not been examined. + +--- + +## What They Don't Talk About + +The certification body that issues performance certifications for east reach surface and atmospheric vehicles is Kurashiki Testing Services — an independent organization established twenty years ago as the east reach transit authority's preferred certification facility. Its independence is genuine in structure: it is not owned by any vehicle manufacturer, its board includes transit authority representatives and public members, and its certification results have never been challenged by the Lattice Commission. + +Higashiyama Vehicle provided 40% of the founding capital for Kurashiki Testing Services when it was established, through an industry development contribution that the transit authority solicited from major regional manufacturers. The founding capital contribution gave Higashiyama a role in the facility's founding governance — specifically, in the working group that developed the initial testing protocols for surface and atmospheric vehicles. + +The testing protocols that Kurashiki Testing Services uses today are built from the working group's recommendations. They are thorough, technically sound, and comprehensive across the parameter ranges that Higashiyama's vehicles perform well in. The edge cases that testing protocols do not cover — specific combinations of atmospheric composition and thermal load, lateral stability at grade angles above typical terrain, power management under sustained partial-atmosphere conditions — are edge cases where Higashiyama's design philosophy makes different tradeoffs than some competing manufacturers. These tradeoffs would not favor Higashiyama under testing that evaluated them. The current testing framework does not evaluate them. + +Competing manufacturers whose vehicles perform better in the untested edge cases have noted the absence and have been unable to raise the issue through the transit authority's protocol review process, which Higashiyama participates in as an industry stakeholder. + +--- + +## Gameplay Relevance + +Higashiyama Vehicle is industrial background presence in the east reach — its vehicles are the surface transport at planetary operations, the atmospheric transports between settlements, the industrial movers in mining facilities. A player on a planetary east reach surface will encounter Higashiyama vehicles without necessarily noting the brand. + +The testing protocol design is the investigative thread. The founding capital contribution and working group participation are documented in Kurashiki Testing Services' founding records and governance documentation. The current protocols are public documents. A competing manufacturer who can specify the edge cases the protocols don't cover and demonstrate that their products perform better in those cases has the substance of a complaint to the transit authority; the question is whether the authority's review process is susceptible to that complaint when Higashiyama participates in the review. + +The service network also gives Higashiyama visibility into the operational patterns of east reach industrial and transit operations. + +The certification body conflict is structurally difficult to prosecute because the testing protocols are technically sound within their scope and because the protocol review process is designed for incremental improvement rather than challenge. A competing manufacturer who wants the edge cases added to the test suite must raise the request through the Kurashiki Testing Services protocol committee — on which Higashiyama participates as an industry stakeholder. The most viable route is the transit authority's oversight panel, which sits above the committee and has authority to mandate protocol review. Getting the authority's attention requires demonstrating that the current protocols produce materially different safety outcomes for the untested scenarios than the tested ones — a technical argument that requires independent testing of the competing manufacturer's vehicles in the untested conditions, which requires financing and access to frontier operational environments where those conditions occur. A player with resources and access can build this case; a player without them is working a slow administrative dispute against an institutional structure that has incentives to stay where it is. + +--- + +**Cross-References:** +- [Kurashiki](../star-systems/GJ-205/index.md) — Headquarters; manufacturing facilities; testing services +- [Dalbit Systems](dalbit-systems.md) — East reach technology peer; navigation systems in Higashiyama vehicles +- [Kumho Navigation](kumho-navigation.md) — East reach navigation peer; vehicle integration client + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/highland-cooperative.md b/wiki/corporations/highland-cooperative.md index f38cbc420..56f10c604 100644 --- a/wiki/corporations/highland-cooperative.md +++ b/wiki/corporations/highland-cooperative.md @@ -1,24 +1,102 @@ --- title: "Highland Cooperative" -description: "Highland Cooperative — regional specialty producer based in Crown's Hollow, north reach" +description: "Crown's Hollow specialty agricultural cooperative — north reach terroir products governed as a democratic collective of independent producers, with a voting structure that gives the two largest members effective veto power they have been quietly using for a decade" slug: highland-cooperative category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Crown's Hollow (GJ 661A) tags: [terroir, north_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [aldgate-trust, calloway-distillery, brindlewood-honey] --- # Highland Cooperative -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Specialty Agricultural Cooperative +**Also Known As:** the Cooperative, Highland **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Crown's Hollow (GJ 661A) +**Scope:** North reach primary; inward corridor specialty food market secondary +**Headquarters:** Crown's Hollow (GJ 661A) — outer north reach, 7+ hops from Gateway +**Classification:** Sub-Syndic agricultural collective; specialty terroir product production and distribution -Highland Cooperative is a regional specialty producer operating out of Crown's Hollow (GJ 661A). Details to be expanded. +--- + +## Overview + +Crown's Hollow's cold-climate agricultural tradition produces specialty goods that could not be grown anywhere else in the corridor: heritage grain varieties adapted over centuries to the system's short growing season, cured and preserved products whose process was developed to work within the constraints of limited storage infrastructure, and a small collection of botanical preparations unique to the native flora of the system's highland terrain. These goods move inward as curiosities and premium imports; they move outward as practical trade goods and the kind of accumulated cultural production that outer reach communities develop when generations have adapted to a specific place. + +Highland Cooperative is the organization through which Crown's Hollow's specialty agricultural producers collectively bring their goods to market. It manages shared distribution infrastructure, collective branding, and the pricing negotiations that individual small producers would be unable to conduct on equivalent terms. It represents approximately forty families, the smallest of which operates a holding of a few hectares and the largest of which controls a substantial fraction of the system's cultivated land. + +The democratic framing under which it operates is accurate on paper. The voting structure it uses is the reason the democratic framing does not function as described. + +--- + +## Origin + +Highland Cooperative was established sixty years ago by a group of fifteen farming families who had concluded that the absence of coordinated marketing was costing them individually more than the cost of coordination would be. Each family selling its own goods to transit traders produced prices set entirely by the traders; a collective organization with negotiating leverage and shared distribution infrastructure would shift the balance. + +The founding governance documents established voting rights proportional to production volume — the larger the holding, the more votes. This was rationalized as fairness to the families who took larger risks and invested more capital in the collective's shared infrastructure. In the founding era, no family held more than three times the volume of any other; the proportional structure did not produce meaningful power asymmetry. + +Over sixty years, the distribution of holdings has shifted. Inheritance consolidation, strategic purchase, and two significant acquisitions by the founding period's most successful families have produced a situation where two families together hold approximately 42% of total production volume and, therefore, approximately 42% of total votes. + +--- + +## Operations + +**Production:** Approximately forty active producer members. Products include heritage grain and grain products, cured meat and preserved proteins, highland botanical preparations (teas, tinctures, preserved specimens), and seasonal items that vary by member. The variety is genuine; the Cooperative does not standardize what its members produce, only how they bring it to market. + +**Collective infrastructure:** Shared cold storage and processing facilities owned by the Cooperative. Shared distribution logistics — cargo aggregation for outbound transit and coordination with inward traders who visit Crown's Hollow on the specialty goods circuit. A shared quality certification program administered by the Cooperative. + +**Pricing governance:** Collective pricing decisions made through member vote. The vote weight is proportional to production volume. Major pricing decisions require a 50% majority of vote weight. + +**External relationships:** Distribution agreements with inward specialty food traders. A licensing relationship with an inward premium food importer. The Cooperative's collective branding is what gives its members access to premium market positioning that their individual scale would not support. + +--- + +## Political Relationships + +**Aldgate Trust:** Several Highland Cooperative members have agricultural holdings under Aldgate Trust's estate management. Aldgate's custody relationships give it visibility into the financial health of individual member operations — which members are distressed, which are carrying debt against their holdings, which are likely to reduce production volume in coming years. This information is not shared with the Cooperative, but it shapes which estates might be candidates for the Trust's 14(c) administrative authority in ways that intersect with the Cooperative's own governance dynamics. + +**Calloway Distillery:** Calloway Reach's distillery trade and Highland Cooperative's specialty food production exist in the same north reach outer corridor economic ecosystem. Several Highland members supply grains and botanicals to the smaller Calloway distilleries; the supply relationships are individual rather than collective, but they make the Cooperative's member welfare directly connected to the distilleries' economic health. A governance crisis at the Cooperative would propagate into the distillery supply chain. + +**Brindlewood Honey:** Brindlewood Honey is the north reach specialty food producer that has most successfully established inward premium market positioning — the benchmark that Highland Cooperative members reference when discussing their own export strategy. The Cooperative's distribution committee has studied Brindlewood's model extensively. Several members have proposed that the Cooperative adopt a similar managed-scarcity production constraint. The two large members who control the pricing governance have not supported this, because managed scarcity would require reducing their own production volume. + +--- + +## What They Don't Talk About + +The two families that together hold 42% of the Cooperative's voting weight have, over the past decade, coordinated their votes before the Cooperative's quarterly pricing meetings. The coordination is informal — a conversation, shared expectations — and is not documented. The effect is that on any pricing decision requiring a 50% majority, these two families need to persuade only a handful of smaller members to achieve a majority. On questions where the smaller members are divided, the two families' aligned block determines the outcome. + +The smaller members of the Cooperative know that the large members vote similarly. They do not know — because the conversation is not visible to them — that the voting is coordinated in advance rather than arrived at through the meeting's deliberation. They accept that larger producers have more votes because they accepted the founding governance structure. They accept pricing decisions that favor the large producers' interests because they have consistently lost the votes that would change them, and because the collective distribution infrastructure the Cooperative provides is something they cannot replicate individually. + +Three years ago, the Cooperative's pricing committee recommended increasing the price floor for highland botanical preparations — a category where smaller members are disproportionately represented. The recommendation failed at the membership vote by exactly the margin that the two large families' coordinated block supplied. The botanical producers have attributed the failure to the large members' disinterest in a category they don't produce. The reason was not disinterest. + +--- + +## Gameplay Relevance + +Highland Cooperative is community and agricultural sector texture in the outer north reach — its brand appears on specialty goods at inward premium markets, its members are part of Crown's Hollow's social fabric, and its governance disputes are the kind of community friction that outer reach settlements accumulate over decades. + +The voting coordination is the investigative thread. The informal coordination is not documented, but its pattern is visible in the voting record — a decade of aligned votes from two families on contested pricing decisions, cross-referenced against the outcomes for the categories those families do and don't produce. The botanical producers who have experienced the pattern without understanding it are potential sources. A governance dispute that reaches the Lattice Commission's cooperative oversight function would require demonstrating that the informal coordination constitutes a breach of the fiduciary duty members owe each other — a legal question with a contested answer. + +The Cooperative's connection to Aldgate Trust — which manages estates for several of its member families — creates a secondary thread: an estate management relationship that intersects with the governance structure. + +The voting coordination is most consequential for the botanical producers, who are the smallest and least individually viable of the Cooperative's membership. Their products occupy a premium niche that the Cooperative's collective branding makes accessible to inward markets; without the branding, their individual scale would not support inward distribution at all. They are therefore the members with least practical ability to exit the Cooperative in response to governance outcomes they object to — which is the same characteristic that makes them the most exploitable by a governance structure where they are perpetually outvoted. A player mediating a governance dispute or tracing the economic conditions of outer reach specialty producers will find in the Highland Cooperative a case study in how collective organization can simultaneously protect and constrain its smallest participants. The founding families who designed the volume-weighted governance structure were not anticipating the concentration of holdings that the following sixty years would produce; the structure they built for equity has produced the opposite. + +--- + +**Cross-References:** +- [Crown's Hollow](../star-systems/GJ-661A/index.md) — Headquarters; member holdings; community context +- [Aldgate Trust](aldgate-trust.md) — Crown's Hollow fiduciary services; member estate management +- [Calloway Distillery](calloway-distillery.md) — North reach cooperative peer; analogous governance dynamics +- [Brindlewood Honey](brindlewood-honey.md) — North reach specialty producer; outer reach terroir market context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/iberian-standard-foods.md b/wiki/corporations/iberian-standard-foods.md index 90aa6694d..795e31224 100644 --- a/wiki/corporations/iberian-standard-foods.md +++ b/wiki/corporations/iberian-standard-foods.md @@ -1,24 +1,96 @@ --- title: "Iberian Standard Foods" -description: "Iberian Standard Foods — consumer goods manufacturer based in Caparica, south reach" +description: "Caparica-based packaged foods manufacturer serving the south reach corridor — branded commodity lines, affordable pricing, and a protein certification dispute no one has examined closely" slug: iberian-standard-foods category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Caparica (GJ 1002) tags: [commodity_branded, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [alentejo-partners, destilaria-confluencia, mercado-travessia] --- # Iberian Standard Foods **Type:** Corporation — Consumer Goods Manufacturer +**Also Known As:** Iberian Standard, ISF **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Caparica (GJ 1002) +**Scope:** South reach corridor primary; limited inward distribution secondary +**Headquarters:** Caparica (GJ 1002) — 3-aperture hub, 4 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; branded commodity operations -Iberian Standard Foods is a consumer goods manufacturer operating out of Caparica (GJ 1002). Details to be expanded. +--- + +## Overview + +In the south reach corridor, Iberian Standard Foods occupies the kind of market position that invites neither enthusiasm nor complaint: it is simply what the shelves contain. Packaged proteins, shelf-stable prepared meals, grain-derived staples, and condiment lines under four brand names — all of them priced at accessible points, all of them present from Caparica outward to the corridor's less-served stations. The company does not pursue premium positioning and does not need to. Volume is the business. Presence is the strategy. + +The public brand voice is dependable and quietly proud — "Reach-grown ingredients, Caparica craft" appears on packaging materials and in the company's regulatory filings as a positioning statement. For most consumers in the south reach, ISF products represent reliable basic nutrition at manageable cost. The brand does not promise luxury. It promises adequacy, consistently delivered, and it has kept that promise across four decades of operation. + +--- + +## Origin + +Iberian Standard Foods was established at Caparica forty-two years ago by a food processing cooperative that had been operating informally for a generation before that. The cooperative's original business was buying surplus agricultural output from Caparica's farming districts and converting it into packaged goods that could be shipped outward without spoilage. The formalization into a registered corporation was driven primarily by the need to satisfy Lattice Commission hygiene and labeling standards for multi-system distribution. + +The transition from cooperative to corporation introduced the branded product architecture that defines ISF today. What had been generic surplus processing became four distinct consumer lines differentiated by packaging and positioning: a premium tier for institutional buyers, a standard tier for general retail, a bulk tier for station commissaries, and a children's line developed in response to a Caparica government nutrition initiative. The children's line remains the company's most visible brand, appearing in school distribution programs across three south reach systems. + +--- + +## Operations + +**Product lines:** Shelf-stable proteins marketed as "Reach-grown" — the specification being that the primary raw materials were purchased from agricultural suppliers within the south reach corridor. Grain-based staples under the Iberian Standard mark. Condiment and sauce lines under the subsidiary brand Caparica Table, which carries stronger provenance marketing. The children's nutrition line under the Alentejo Kids brand, distributed partly through institutional channels. + +**Manufacturing:** Two facilities at Caparica, one at Velha Guarda operating under a licensing agreement. The Caparica facilities handle the majority of production. Ingredient sourcing is managed through long-term supply agreements with Alentejo Partners and several smaller agricultural cooperatives. + +**Distribution:** Mercado Travessia is the primary distribution partner for inward-corridor placement. For south reach distribution, ISF maintains its own logistics relationships with station commissaries and the regional retail networks at Mwangaza and Karoo. + +**Workforce:** Approximately 340 people across production, logistics, and administration. The production workforce is heavily concentrated at the two Caparica facilities, with seasonal variation linked to agricultural supply cycles. + +**Certification:** All product lines are certified under Lattice Commission food safety and labeling standards. The "Reach-grown" ingredient claim appears on regulatory filings and is the basis for the southern corridor provenance designation that ISF uses in its institutional distribution contracts. + +--- + +## Political Relationships + +**Alentejo Partners:** ISF's primary agricultural supply relationship, covering grain, legume, and secondary crop inputs. The long-term supply agreements are standard in their structure, but ISF's volume is large enough that Alentejo's production planning is partly driven by ISF's forecasting. When ISF's demand projections change, Alentejo's farmers feel it. + +**Caparica government:** The children's nutrition line distribution through Caparica's school system was established under a government procurement contract that ISF has held for eleven years. The contract specifies nutritional standards for the products distributed. The certification categories used in the contract's nutritional specifications are the same categories used in ISF's Lattice Commission filings — which means the grandfather provision the company is relying on also covers the school distribution contract's compliance claims. + +**Mercado Travessia:** ISF's relationship with Mercado Travessia is the company's only significant inward corridor distribution relationship. Mercado handles the product at the premium end of the ISF range — specifically the Caparica Table condiment line, which is positioned as a provenance product at inward distribution points rather than as a standard commodity line. + +--- + +## What They Don't Discuss in Regulatory Filings + +The protein base that underpins ISF's flagship packaged meal line is classified in their Lattice Commission filing as "plant-derived compound protein" — a category that was established under regulations drafted before the Commission's Nutrition Standards Review of twelve years ago. At the time of the Review, the category was flagged for redefinition because several proteins produced from novel substrate fermentation processes had been placed into it under technical readings that the Review board considered overly broad. + +ISF's primary protein source is a fermentation-derived substrate that qualifies under the old classification by meeting a molecular weight criterion that the Review was intended to move away from as the sole test. The Review's updated standards were implemented with a five-year grandfather provision for existing certified products. ISF applied for and received renewal of their existing certification before the grandfather window closed. + +The substantive issue is that the updated standards would require ISF to relabel the flagship line with a classification consumers typically associate with synthetic food supplements rather than "Reach-grown" staples. ISF's regulatory team is aware that the Commission's next scheduled classification audit, due in approximately three years, will examine whether grandfathered certifications were renewed in compliance with the Review's intent. The legal team has assessed the renewal as technically defensible under the letter of the grandfather provision and has not recommended proactive relabeling. + +--- + +## Gameplay Relevance + +Iberian Standard Foods is ambient commercial infrastructure — present on shelves wherever the player is in the south reach, useful as a background institution when investigating food supply chains, agricultural contracting, or nutritional policy. The company's distribution relationships with Mercado Travessia create a natural thread between south reach agricultural politics and inward consumer markets. + +The certification dispute is the primary investigative thread. A player with access to Lattice Commission regulatory archives could trace the protein classification history and identify the gap between the "Reach-grown" marketing and the substrate's actual origin. The renewal documentation is in the Commission's public record; the internal legal assessment that recommended not relabeling is in ISF's internal compliance files. The gap between the two documents is the story. + +--- + +**Cross-References:** +- [Caparica](../star-systems/GJ-1002/index.md) — Headquarters system; primary manufacturing base +- [Alentejo Partners](alentejo-partners.md) — Primary agricultural supply relationship +- [Destilaria Confluência](destilaria-confluencia.md) — Caparica corridor neighbor; comparable south reach brand +- [Mercado Travessia](mercado-travessia.md) — Inward distribution partner + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/incheon-salt.md b/wiki/corporations/incheon-salt.md index 1462ebf02..c44d2cbb4 100644 --- a/wiki/corporations/incheon-salt.md +++ b/wiki/corporations/incheon-salt.md @@ -1,24 +1,95 @@ --- title: "Incheon Salt" -description: "Incheon Salt — regional specialty producer based in Changwon, east reach" +description: "East reach mineral salt producer operating from Changwon's rare brine geology — premium provenance product with a blending practice that the certification language was never written to catch" slug: incheon-salt category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Changwon (GJ 860B) tags: [terroir, east_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [koryo-standard, kumho-navigation] --- # Incheon Salt **Type:** Corporation — Regional Specialty Producer +**Also Known As:** Incheon, Changwon Brine **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Changwon (GJ 860B) +**Scope:** East reach primary; inward premium market secondary +**Headquarters:** Changwon (GJ 860B) — 2-aperture system, 5 hops from Gateway +**Classification:** Sub-Syndic specialty producer; provenance-designated scarcity product -Incheon Salt is a regional specialty producer operating out of Changwon (GJ 860B). Details to be expanded. +--- + +## Overview + +Salt is not rare. Salt is one of the most ordinary commodities in the Reach, produced in industrial volumes at half a dozen systems and shipped in bulk to wherever food preservation or chemical processing requires it. What Incheon Salt sells is not ordinary salt. It is a specific mineral composition drawn from a specific brine formation at Changwon — a deep geological structure whose chemistry produces a crystalline product with trace mineral ratios that food preparers across the east reach have spent three centuries learning to cook with. The pale amber crystals and the particular sharpness they give to preserved proteins are recognizable. Cooks who grew up in the east reach corridor recognize the taste; when they encounter it inward, they pay for it. + +The company positions itself accordingly. Incheon Salt's branding materials use the phrase "Changwon Brine" as though it were a protected designation of origin — the imagery is geological, ancient, specific. Premium product tiers carry provenance certificates describing the extraction depth, mineral assay, and seasonal batch number. Institutional buyers — restaurant groups, food processors, specialist importers — treat these certificates as meaningful. They pay the premium because the premium is justified, and the distinction is real. + +--- + +## Origin + +The Changwon brine formation was identified and mapped by a geological survey team ninety years ago. The first commercial extraction operation was established twenty years after the survey, when a small family enterprise at Changwon's primary settlement obtained extraction rights and began selling direct to the east reach corridor market. The product's reputation built slowly and then quickly — the moment a Jeonnam food preparer mentioned the salt in a published recipe that circulated across three systems, the market demand jumped sharply beyond what the original operation could supply. + +Incheon Salt as a corporate entity was formed when a consortium of east reach investors bought the original family operation and expanded extraction capacity. The founding family retained a minority stake and operational management roles that they hold to this day. The corporate structure allowed investment in extraction equipment and distribution logistics that the family operation could not have funded; the family's continued involvement preserved the operational knowledge and the relationships with the geological survey teams that manage extraction permitting. + +--- + +## Operations + +**Extraction:** The brine formation produces several hundred tonnes of raw mineral salt per year from the accessible extraction points. This is a small volume by industrial salt standards but a substantial volume for a provenance product. The extraction process is carefully managed to avoid contaminating the brine composition — industrial techniques would increase volume but change the mineral ratios that define the product's character. + +**Product tiers:** The premium line — sold under the "Changwon Brine" mark with provenance certificates — commands prices an order of magnitude above commodity salt. A mid-range line without full provenance documentation sells at a lower premium to food processors and commercial buyers. A bulk line without the Incheon Salt brand name is sold to Koryo Standard and other east reach manufacturers for use as an ingredient in their own products. + +**Distribution:** East reach direct to specialist food retailers and institutional buyers. Inward markets through a distribution agreement with a Kurashiki-based importer who handles the premium tier's inward corridor placement. + +**Workforce:** Small — fewer than sixty people, including extraction, processing, quality control, and the assay team that produces the provenance documentation. + +--- + +## Political Relationships + +**East reach corridor food industry:** Incheon Salt's premium positioning makes it a reference point for east reach culinary provenance products generally. The company has informal relationships with other east reach specialty producers and participates in the regional food producers' association where collective advocacy on provenance designation frameworks happens. This association is also where industry peers would most easily notice a provenance discrepancy, which is one reason Incheon Salt's management stays attentive to its association relationships. + +**Lattice Commission provenance desk:** The "Changwon Brine" designation appears on Incheon Salt's product labeling but has no statutory definition in Commission standards — the Commission's provenance framework for specialty salts predates the east reach corridor's development and was written for inward systems. Incheon Salt's labeling team wrote the "Changwon Brine" definition in their own marketing materials and regulatory filings, and the Commission accepted it without formal review because no competitor had contested it. This self-defined designation is the legal structure the blending practice depends on. + +--- + +## What the Assay Certificates Don't Disclose + +The premium tier is genuine. The mid-range tier is where the question lives. + +Incheon Salt's mid-range product line — sold without full provenance certificates but bearing the Incheon Salt mark and Changwon origin labeling — is produced by blending Changwon brine extract with industrial mineral salt purchased from a commodity supplier at a system three hops outward. The blend ratio is approximately 40% Changwon extract to 60% commodity material. The resulting mineral profile is within acceptable variation of the pure product and is indistinguishable to most buyers. + +The "Changwon Brine" designation that Incheon Salt defined in its own regulatory filings does not specify a minimum origin-content percentage. The definition describes a mineral profile and a processing method, not an origin purity threshold. This was not accidental — the definition was written after the blending practice began, at a point when the operational team had already determined that pure-origin production could not meet mid-range demand volumes. The definition's language is technically accurate: the mid-range product does exhibit the described mineral profile, because the blend is designed to produce it. + +Buyers who purchase the mid-range line under the Incheon Salt brand are paying for a product they believe to be Changwon-origin salt. The documentation they receive does not state that it is a blend. + +--- + +## Gameplay Relevance + +Incheon Salt is a secondary institution in the east reach corridor — relevant whenever the player is working in food commerce, supply chain investigation, or provenance fraud. The blending practice is investigative material with clear evidence: production records, procurement invoices for the commodity salt, and the assay certificates that describe the mineral profile without disclosing the blend ratio. The gap between the origin labeling and the procurement records is the thread. + +The provenance designation framework question — that Incheon Salt wrote its own definition — is a secondary angle with broader implications. If one east reach specialty producer has an uncertified self-defined provenance mark, others may as well. A player following that thread enters the politics of the east reach food producers' association and the Commission's provenance desk. + +--- + +**Cross-References:** +- [Changwon](../star-systems/GJ-860B/index.md) — Headquarters; brine formation location; extraction zone +- [Koryo Standard](koryo-standard.md) — Bulk salt purchaser; ingredient supply relationship +- [Kumho Navigation](kumho-navigation.md) — Changwon corridor neighbor; east reach institutional context +- [Kyoto Valley Estates](kyoto-valley-estates.md) — East reach provenance product parallel; comparable self-defined designation +- [Jeju Lattice](jeju-lattice.md) — East reach industrial neighbor; Yeongwol corridor context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/ironbark-films.md b/wiki/corporations/ironbark-films.md index fb07aaf63..deaa0f384 100644 --- a/wiki/corporations/ironbark-films.md +++ b/wiki/corporations/ironbark-films.md @@ -1,24 +1,95 @@ --- title: "Ironbark Films" -description: "Ironbark Films — cultural content producer based in Fremantle, north reach" +description: "Fremantle-based production studio serving the north reach corridor — documentary work, cultural programming, and an unexercised archive rights option that would give them total control over a community's oral history" slug: ironbark-films category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Fremantle (GJ 273) tags: [cultural, north_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ashwick-broadcasting, calloway-distillery] --- # Ironbark Films **Type:** Corporation — Cultural Content Producer +**Also Known As:** Ironbark **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Fremantle (GJ 273) +**Scope:** North reach corridor primary; limited inward distribution secondary +**Headquarters:** Fremantle (GJ 273) — 2-aperture system, 5 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; documentary and narrative production -Ironbark Films is a cultural content producer operating out of Fremantle (GJ 273). Details to be expanded. +--- + +## Overview + +Ironbark Films is the north reach's most credible production house for documentary and cultural content. The company's output over forty years of operation covers the corridor's human history in depth: the agricultural migrations of the first generations, the political evolution of north reach governance structures, the settlement patterns of communities that arrived with distinct cultural identities and produced new ones. Institutional buyers, educational bodies, and cultural archives across the corridor hold Ironbark licenses. The work is substantive. + +The studio's public positioning leans on this record consistently and accurately. When Ironbark Films pitches to funders, applies for cultural production grants, or discusses production partnerships with north reach institutions, the forty-year documentary archive is the credential. The studio presents itself as a custodian of corridor memory. That framing is sincerely held by many of the people who work there and is not purely instrumental. + +--- + +## Origin + +Ironbark Films was founded at Fremantle by a group of journalists and documentary producers who had been working for Ashwick Broadcasting and found the broadcast format inadequate for the kind of long-form work they wanted to produce. The founding agreement was that the studio would operate as an independent production entity selling to broadcasters, archives, and direct institutional clients rather than being embedded in any single broadcast organization. + +The early productions were modest — regional history commissions for Fremantle's local government, documentary work about the agricultural cooperatives that had shaped Calloway Reach culture during the corridor's formative period. These productions required negotiating archive access and interview rights with communities that had not previously been the subject of documentary attention. The studio's early reputation for respectful community engagement was built during this period and is not fabricated. + +What changed the studio's scale was a series of oral history commissions in the second decade of operation, during which Ironbark acquired extensive rights to recorded materials — interviews, cultural performances, privately held visual archives — from communities across the north reach corridor. The acquisition contracts of that era were drafted at a time when community understanding of rights transfer was limited. Communities often signed agreements that transferred broad rights to recorded materials in exchange for production fees that seemed substantial at the time. + +--- + +## Operations + +**Production:** Ongoing documentary and cultural content production with an average of four to six long-form projects in various stages of development at any given time. The studio employs a core creative staff of approximately thirty-five and contracts substantially for specific productions. + +**Archive:** The Ironbark archive is the studio's most significant asset — a collection of recorded materials spanning forty years of north reach cultural documentation. The archive is licensed to educational institutions, broadcasters, and cultural bodies. License fees provide a stable secondary revenue stream that the studio's public materials describe as "supporting ongoing production." + +**Distribution:** Documentary and cultural content distributed through Ashwick Broadcasting under a long-standing first-look agreement. For materials that Ashwick passes on, Ironbark maintains its own distribution relationships with inward corridor educational distributors. + +**Community relationships:** The studio maintains formal consultation protocols for productions involving living communities. These protocols were introduced fifteen years ago, partly in response to criticism from communities who felt their materials had been appropriated without adequate representation in the resulting work. + +--- + +## Political Relationships + +**Fremantle cultural institutions:** Ironbark Films occupies a comfortable position in Fremantle's cultural establishment — board seats at the local arts foundation, advisory roles in cultural policy discussions, a relationship with the corridor's educational administration. This institutional position generates commission work and protects the studio's grant eligibility. + +**Community documentation relationships:** The communities who provided the oral history materials in the studio's archive have varying relationships with Ironbark today. Some maintain active consultation relationships and value the access the studio provides to their documented histories. Others have expressed concerns about license terms and access fees that they feel prevent their own communities from using materials they originally provided. These concerns have not resulted in formal disputes. + +--- + +## What Stays in the Rights Database + +Among the materials Ironbark Films acquired during the oral history commissions of its second decade is a collection of recordings from a now-deceased cultural historian who spent her life documenting the traditions of a small north reach community — an oral tradition of navigational knowledge, astronomical interpretation, and settlement ceremony that the community considers foundational to its identity. + +The rights contract, signed before her death, included a standard clause giving Ironbark an option on her "life-rights archive" — meaning all additional materials the historian had accumulated but not yet delivered under the commission. The historian produced far more than she had been commissioned for. The undelivered archive was transferred to Ironbark's possession as part of her estate settlement, under the option clause, in exchange for a modest payment to her estate. + +The community believes this archive is publicly held. The oral tradition it documents is understood within the community to belong to the community. Ironbark has not told them otherwise. The studio has not exercised the option in the sense of actively commercializing the materials — the archive sits in Ironbark's rights database, licensed for educational use under terms the community has not been consulted on. The option itself, which grants Ironbark exclusive commercial rights to the most complete documented record of the community's foundational tradition, has never been disclosed to the community. + +The studio's legal team reviewed the contract eight years ago when a community representative inquired about accessing the full archive. The review confirmed that the contract is valid under the law that governed it. The studio provided the representative with access to the commissioned materials and did not mention the option. + +--- + +## Gameplay Relevance + +Ironbark Films is a secondary institution for investigation into cultural rights, archive access politics, and the ethics of documentary production. The studio is well-connected enough in the north reach that a player working cultural or political threads in the corridor will encounter its output and reputation. + +The archive rights option is the primary investigative thread. The evidence exists: the original contract, the estate settlement, the rights database entry, and the community's public statements about the archive's status. The gap between what the community believes and what the contract says is documented in Ironbark's legal files. A player who surfaces this information faces a situation where the studio's wrongdoing is technically legal — which makes what to do with the information a meaningful choice. + +--- + +**Cross-References:** +- [Fremantle](../star-systems/GJ-273/index.md) — Headquarters system; primary production base +- [Ashwick Broadcasting](ashwick-broadcasting.md) — Distribution partner; first-look agreement +- [Calloway Distillery](calloway-distillery.md) — Early documentary subject; corridor cultural parallel + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/iznik-atelier.md b/wiki/corporations/iznik-atelier.md index b97a200e9..e3b39f518 100644 --- a/wiki/corporations/iznik-atelier.md +++ b/wiki/corporations/iznik-atelier.md @@ -1,24 +1,96 @@ --- title: "Iznik Atelier" -description: "Iznik Atelier — heritage craft manufacturer based in Groombridge, core" +description: "Groombridge-based ceramic and tile studio producing premium heritage craft for institutional clients — four centuries of aesthetic tradition, a provenance authentication system with an exploitable flaw, and two forgery settlements no one discusses" slug: iznik-atelier category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [heritage_craft, core, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [alcyone-tech, the-registry, groombridge-settlement-house] --- # Iznik Atelier **Type:** Corporation — Heritage Craft Manufacturer +**Also Known As:** The Atelier, Iznik House **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; reach-wide institutional commissions secondary +**Headquarters:** Groombridge (GJ 380), Lendel district — 2-aperture loop_member +**Classification:** Sub-Syndic artisan enterprise; sole-source institutional supplier for specific aesthetic categories -Iznik Atelier is a heritage craft manufacturer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +In the institutional buildings of Groombridge and throughout the core corridor, Iznik Atelier's tiles and ceramics are visible on walls that were meant to communicate permanence. Financial houses commission entrance hall panels. Legal institutions order courtroom tile work specified to a tradition that references continuity and authority. Private clients at Groombridge's wealthier residential tiers specify kitchen installations that reference four centuries of craft lineage. Iznik Atelier makes all of these things and has been making them from the same Lendel district workshop for three generations. + +The aesthetic tradition the studio draws on originated in the pre-migration cultures of the founding populations that settled Groombridge. The specific geometric patterns, glaze chemistry, and tile formats that define Iznik Atelier's recognizable work are documented in the studio's own published materials with references to historical precedent that read as scholarly. The studio's position is that it is not merely producing decorative objects — it is maintaining a living craft tradition. This argument is made sincerely by the people in the studio who are trained artisans and make it sincerely. It is also extremely good marketing. + +--- + +## Origin + +The Atelier was founded three generations ago by a ceramic artist named Halide Çevik, who had trained under the last working practitioner of a tile-making method that had survived corridor travel through a single lineage. Çevik's innovation was not the craft itself but the organizational decision to document the method, train apprentices systematically, and market the work to institutional clients who were building or renovating permanent structures. The founding generation took twelve years to receive its first major institutional commission; by the time Çevik retired, the studio had a twenty-year waiting list for certain commission formats. + +The current generation of leadership is Çevik's grandchildren, two of whom are working artisans and one of whom manages the business. The craft knowledge is genuinely transmitted through the workshop; there are currently nine trained artisans at various levels of the apprenticeship structure, each of whom has spent years learning the specific hand techniques that produce the studio's distinctive output. + +--- + +## Operations + +**Production tiers:** The premium commission work — large-format architectural installations, institutional panels, significant residential commissions — is executed by the trained artisans under close supervision and constitutes approximately 30% of the studio's output by value. The remainder is produced on a manufacturing line that handles tile formats whose dimensions and glaze chemistry are within what the line can consistently reproduce; artisans perform finish detailing and quality review on all production-line output before it ships. + +**Provenance documentation:** Every piece that leaves Iznik Atelier is accompanied by a provenance document that includes a serial number from the studio's issue ledger, production date, the name of the supervising artisan, and a description of the piece's design lineage. Institutional clients use these documents for insurance valuation and resale authentication. The documents are printed on the studio's letterhead and bear a stamp from the issue ledger. + +**Market position:** Iznik Atelier has no direct competitor at Groombridge in its specific aesthetic category. The institution-grade commission market is small, relationship-driven, and involves long lead times; new entrants would require decades to build the commission pipeline the studio currently holds. This structural moat is the studio's most significant asset after the craft knowledge itself. + +**Workforce:** Twelve to fifteen people across artisan, production, administrative, and logistics functions. Small, highly skilled, stable. + +--- + +## Political Relationships + +**Groombridge institutional clients:** The Atelier's primary client relationships are with Groombridge's financial and legal institutions — the same entities that form the core of the system's economic establishment. These relationships involve more than commercial transactions; Iznik tile work in a financial house's entrance hall is an aesthetic statement about the institution's relationship to Groombridge's cultural history. Losing the Atelier's work from their spaces would be noticed. + +**The Registry:** The Registry uses Iznik Atelier provenance documents as reference material for valuation records — when the Registry processes insurance or resale documentation for Iznik pieces, the provenance documents are the authentication basis. This gives the Atelier's documentation a quasi-official status it does not formally possess. + +--- + +## The Issue Ledger + +The provenance authentication system is the studio's visible guarantee to buyers that a piece is genuinely Iznik Atelier work. The serial number on each provenance document corresponds to an entry in the studio's issue ledger — a bound physical record maintained at the Lendel workshop. Buyers, insurers, and resale authenticators who want to verify a piece's authenticity can request confirmation of the serial number against the ledger. + +The ledger is the system's only authentication anchor. There is no cryptographic signature, no Commission-certified registry, no third-party verification. The serial number format is documented in the studio's published materials, and the ledger itself is maintained by the studio's administrative manager, who is authorized to confirm serial number validity by correspondence. + +Over the past decade, two incidents have involved pieces bearing valid-format serial numbers that the studio did not produce. Both were identified because buyers who purchased the pieces sought expanded provenance information and found discrepancies between the described design lineage and the studio's actual commission records. Both incidents were settled quietly — the studio compensated the buyers and the forgeries were destroyed. No formal complaint was filed with any authority. The studio's legal team negotiated nondisclosure terms in both settlements. + +The forgeries succeeded because anyone with the serial number format and access to the studio's public commission descriptions could produce a document that would pass casual inspection. The issue ledger itself was never breached; the forgeries simply used plausible numbers that appeared to fall within the ledger's valid range. The studio has not changed its authentication system. The administrative manager's position on the matter is that the risk is manageable and that introducing a more robust system would imply to institutional clients that the current system was inadequate. + +--- + +## Gameplay Relevance + +Iznik Atelier is an atmospheric institution in Groombridge's cultural and economic landscape — the kind of place a player encounters through the work it produces rather than through direct engagement. Its pieces appear in the institutional spaces where important conversations happen and important transactions are recorded. + +The authentication system is the investigative thread. A player tracing ownership history of a specific piece, or working a fraud investigation in Groombridge's art and antiques market, will find the issue ledger at the center of a verification request that the ledger is not well-designed to satisfy. The two settled forgery cases are in the studio's legal files; the nondisclosure agreements cover the counterparties but not the studio's own records. + +The Registry's reliance on Iznik provenance documents for valuation purposes means that any question about those documents becomes a question about the integrity of records the Registry has issued. That thread connects the Atelier to the financial infrastructure. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; primary institutional client base +- [The Registry](the-registry.md) — Uses Iznik provenance documents for valuation records +- [Alcyone Tech](alcyone-tech.md) — Groombridge institutional neighbor; parallel craft/infrastructure relationship +- [Groombridge Settlement House](groombridge-settlement-house.md) — Major institutional client; entrance hall commission + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/jeju-lattice.md b/wiki/corporations/jeju-lattice.md index 1b163bf82..89d7f020b 100644 --- a/wiki/corporations/jeju-lattice.md +++ b/wiki/corporations/jeju-lattice.md @@ -1,24 +1,96 @@ --- title: "Jeju Lattice" -description: "Jeju Lattice — precision technology manufacturer based in Yeongwol, east reach" +description: "Yeongwol-based precision electronics manufacturer serving east reach industrial and infrastructure clients — certified components, a subcontracting network, and a Lattice Commission mark applied to batches that were never fully audited" slug: jeju-lattice category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Yeongwol (GJ 268) tags: [lattice_grade_material, lattice_substrate, tech_premium, east_reach, tractus, electronics] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [kumho-navigation, namsan-collective, kyoei-design] --- # Jeju Lattice **Type:** Corporation — Precision Technology Manufacturer +**Also Known As:** Jeju, JL Components **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Yeongwol (GJ 268) +**Scope:** East reach primary; corridor-wide institutional distribution secondary +**Headquarters:** Yeongwol (GJ 268) — 2-aperture system, 4 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; certified industrial component supplier -Jeju Lattice is a precision technology manufacturer operating out of Yeongwol (GJ 268). Details to be expanded. +--- + +## Overview + +In the east reach corridor, the industrial and infrastructure operators who need precision electronic components with documented certification histories buy from Jeju Lattice. The company occupies a specific market niche: not consumer electronics, not cutting-edge research applications, but the dependable certified components that go into industrial control systems, environmental monitoring hardware, station infrastructure, and the secondary systems of gate maintenance facilities. Components that need to perform reliably for years in conditions where replacement is inconvenient and failure is costly. + +Jeju Lattice's certification record is its primary sales argument. The company's catalog lists each component's compliance with Lattice Commission industrial standards — the documentation that infrastructure operators require before specifying a component in a critical system. When a client asks whether Jeju components meet the standard, the answer, supported by the Commission certification document, is yes. + +--- + +## Origin + +Jeju Lattice was founded at Yeongwol twenty-eight years ago by an electrical engineer who had spent a decade as a certification auditor for the Lattice Commission before concluding that the east reach corridor's industrial clients were systematically under-served by the available component supply. The corridor's major manufacturing operations were distant; delivery times were long; and the smaller east reach infrastructure operators had no regional supplier capable of providing certified components on short lead times. + +The founding model was explicitly designed around Commission certification standards. The founder's auditor background shaped the company's production documentation systems from the start — meticulous batch records, comprehensive test reports, clear traceability chains from raw materials to finished components. These systems produced the certification record that defines the company's market position. + +The founder stepped back from operational management seven years ago. The current leadership team grew up within the company's systems and maintains the documentation culture the founder established. + +--- + +## Operations + +**Product lines:** Industrial sensors, control system modules, relay components, and environmental monitoring hardware across approximately 200 distinct catalog items. Each item carries a Commission certification document and a batch test record. The catalog has grown steadily as Jeju has added items in response to client requests. + +**Primary manufacturing:** The Yeongwol facility employs sixty-three people and handles approximately 60% of Jeju's production volume by unit count. The facility is well-equipped for the company's scale, with functional quality control infrastructure and the documentation systems the founder built. + +**Subcontracting network:** Fourteen years ago, as demand exceeded Yeongwol facility capacity, Jeju established supply agreements with three smaller manufacturers in the east reach corridor to produce components from Jeju specifications. Products from these subcontractors ship to Yeongwol for final quality review and are shipped to clients under Jeju's brand and certification marks. + +**Clients:** East reach infrastructure operators, station maintenance authorities, and industrial equipment assemblers across a six-system corridor footprint. + +--- + +## Political Relationships + +**Lattice Commission certification desk:** The Commission's east reach certification office conducts periodic audits of Jeju's production records. The relationship is formally compliant — Jeju's documentation systems are thorough and have satisfied every audit that has been conducted. The certification relationship is the company's most important institutional asset. + +**Subcontractor relationships:** Jeju's subcontractors operate under supply agreements that specify production parameters and documentation requirements. Jeju reviews subcontractor batch documentation before applying its certification marks. The review process is less intensive than the Yeongwol facility's internal production oversight, which the operations team acknowledges is a design constraint rather than a deliberate choice. + +--- + +## The Certification Mark and What It Guarantees + +Three years ago, during a period of unusually high demand, Jeju's subcontractor at Hwaseong produced a batch of relay components that failed Jeju's standard incoming quality review at a rate marginally above threshold. The operations team's decision was to conduct a secondary review of the failed units and release the batch with a conditional pass — an internal designation that the team's interpretation of their own quality procedures allowed under a provision for minor specification deviations within defined tolerance ranges. + +The batch shipped to clients under Jeju's standard certification marks. The conditional pass designation was recorded in Jeju's internal batch records but was not reflected in the certification documentation accompanying the shipment. The Commission certification mark represents that the product meets the relevant standard; the standard does not distinguish between a standard pass and a conditional pass, and Jeju's internal conditional pass procedure is not part of the Commission's certified quality management framework. + +The relay components from that batch are currently in service across east reach infrastructure installations. The conditional pass designation applies to a specific parameter — contact resistance under temperature cycling — that degrades over time in operating conditions. The components will meet specification for several years before the degradation becomes material. Jeju's engineering team has not formally assessed the service-life implications. + +The batch records exist and are accurate. A Commission auditor examining those records would find the conditional pass designation and would ask questions about why it was not disclosed in the certification documentation. The question the operations team has not fully worked out is whether the answer to that question is a quality management finding or a certification compliance violation. + +--- + +## Gameplay Relevance + +Jeju Lattice is a secondary institution in the east reach industrial supply chain — relevant to investigations concerning component quality, infrastructure reliability, and certification integrity. The company's products are ambient in any east reach station infrastructure setting. + +The conditional pass batch is the investigative thread. The batch records are the primary evidence — they exist, they are accurate, and the conditional pass designation is in them. A player with access to Jeju's quality records, or to the Commission's audit correspondence, can find the discrepancy between what the certification mark represents and what the batch documentation shows. The downstream question — where those components are installed and what their service-life trajectory is — requires access to client delivery records and the Commission's infrastructure installation database. + +--- + +**Cross-References:** +- [Yeongwol](../star-systems/GJ-268/index.md) — Headquarters system; primary manufacturing base +- [Kumho Navigation](kumho-navigation.md) — East reach corridor neighbor; tech premium parallel +- [Namsan Collective](namsan-collective.md) — Yeongwol system neighbor; cultural context +- [Kyoei Design](kyoei-design.md) — East reach institutional client; architectural hardware overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kaapse-baai-wines.md b/wiki/corporations/kaapse-baai-wines.md index 28044be49..9e100ebbd 100644 --- a/wiki/corporations/kaapse-baai-wines.md +++ b/wiki/corporations/kaapse-baai-wines.md @@ -1,24 +1,107 @@ --- title: "Kaapse Baai Wines" -description: "Kaapse Baai Wines — regional specialty producer based in Kaapse Baai, south reach" +description: "South_reach Cape-heritage wine producer based at Kaapse Baai (GJ 213) — two centuries of estate tradition, informal appellation certification, and a producers' circle that has come to mean what its most powerful member finds convenient" slug: kaapse-baai-wines category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kaapse Baai (GJ 213) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groot-karoo-cellars, meridional-banking] --- # Kaapse Baai Wines -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Estate Wine Producer and Appellation Authority +**Also Known As:** Kaapse Baai (as both place and brand), the Circle (for the producers' governance body) **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Kaapse Baai (GJ 213) +**Scope:** Regional — south_reach corridor primary; inner-corridor premium market secondary +**Headquarters:** Kaapse Baai (GJ 213) — south_reach corridor +**Classification:** Sub-Syndic estate consortium; informal appellation governance under the Cape Producers Circle -Kaapse Baai Wines is a regional specialty producer operating out of Kaapse Baai (GJ 213). Details to be expanded. +--- + +## Overview + +Kaapse Baai Wines is not one company. It is the collective commercial identity of the Cape Producers Circle — a governance body representing the wine estates of the Kaapse Baai system — and the dominant estate within that circle, Eerste Helling, which holds the Circle's administrative secretariat and has done so for one hundred and forty years. The distinction matters less in practice than it should, because the Cape Producers Circle is not a formal institution. It has no Lattice Commission charter, no public regulatory standing, and no enforcement mechanism beyond the agreement of its members. What it does have is control over the label "Kaapse Baai Origin" — an appellation designation that inner-corridor distributors and serious buyers have been paying a premium for since the third generation of Eerste Helling's Joubert-Van Rooyen family began marketing it as a certification of quality. + +The wines themselves are real. The appellation means something in the sense that the south_reach terroir at Kaapse Baai produces wines with a specific character — cooler growing conditions, high mineral content from the rocky volcanic substrate, varietals that have adapted over two centuries of selection. What the appellation means institutionally is whatever the Circle says it means, and the Circle has had a consistent controlling interest for a very long time. + +--- + +## Origin + +The founding settlers of Kaapse Baai arrived from a mixed Cape Afrikaner and Dutch colonial community — families carrying vine cuttings as a practical agricultural investment and an identity statement simultaneously. The name they gave the system and the primary settlement was deliberate: Kaapse Baai, Cape Bay, a persistent reference to the coastal wine country they were leaving and the possibility that the new system's cooler coastal analogue terrain could be made to work. + +The first commercial harvest occurred approximately two hundred years ago. The third generation of the dominant families established the Cape Producers Circle in the system's second century, when it became clear that a common quality signal for export would command better prices than the individual estates could negotiate separately. The founding principle — that the Circle would certify quality standards and allow member estates to use the "Kaapse Baai Origin" designation — was sensible and has served the system's wine industry well in aggregate. The governance structure gave equal votes to founding member estates. This seemed reasonable when all the founding estates were comparable in size and influence. + +They are no longer comparable. + +--- + +## Operations + +**The estates:** The Kaapse Baai system has twelve active wine estates ranging from the Eerste Helling property — the oldest, the largest, the administrative center of the Circle — down to three small single-family operations whose commercial scale is modest and whose viability has been, at various points, uncertain. The varietals grown reflect two centuries of local adaptation: the primary red varietal is a Pinotage-lineage cultivar that has developed the mineral-ferrous character that defines the Kaapse Baai profile; the dominant white is a Chenin Blanc descendant notable for high acidity and a reductive aromatic style. + +**The Circle's certification process:** Member estates submit wines for tasting review by a panel drawn from Circle membership. The panel assesses adherence to regional style standards. The standards are defined in a founding document that has been revised three times, each revision managed by the Circle's secretariat — Eerste Helling's administrative staff. Revision three, completed forty years ago, expanded the acceptable production methods in ways that primarily benefited large-scale estate operations and disadvantaged small producers whose traditional techniques fell outside the revised criteria. + +**Distribution:** Certified wines carry the Kaapse Baai Origin seal — a stylized cape-peak silhouette in deep green, recognized by inner-corridor buyers who track south_reach terroir production. Distribution runs through general south_reach freight channels for the mid-range and through specialist provenance distributors for the premium estates. Eerste Helling manages its own premium distribution contracts; smaller estates participate in a collective export arrangement administered by the Circle's secretariat. + +--- + +## Products + +**Eerste Helling Rooiberg** — the flagship red from the dominant estate, aged eighteen months in local oak before bottling. The wine that most inner-corridor buyers encounter when they encounter Kaapse Baai wines at all. Deep, structured, with the iron-mineral finish the region is known for. The benchmark against which other Kaapse Baai reds are measured, partly by merit and partly by virtue of the fact that Eerste Helling has been placing it in front of influential buyers for five generations. + +**Eerste Helling Blanc de Kaap** — the flagship white. High-acid, long-finishing, polarizing in the inner corridor in the way that serious high-acid whites are always polarizing: the people who love it order it whenever available; the people who don't wonder what the fuss is. A small allocated release each vintage; genuinely difficult to obtain outside the south_reach. + +**Circle member range** — wines from the remaining eleven estates, certified under the Kaapse Baai Origin designation at varying price points. Quality is genuine but inconsistent. The Circle's collective export arrangement manages the mid-range category. Three of the smaller estates produce wines that serious tasters regard as significantly undervalued relative to the dominant estate's production; they lack the distribution relationships to correct this. + +--- + +## Political Relationships + +**Groot Karoo Cellars:** The Karoo system's fortified wine and brandy operation represents a different expression of south_reach terroir — arid and mineral against Kaapse Baai's coastal-cool character, fortified styles against the Circle's table wines. The two operations occupy separate market niches and are aware of each other as parallel examples of south_reach terroir building corridor reputations from remote systems. There is no commercial relationship. There is occasional contact at corridor trade events where the representatives of both operations have found themselves on the same side of a discussion about south_reach producer interests. + +**Inner-corridor distributors:** A small network of provenance-oriented distribution houses handles Kaapse Baai Origin wines in the inner corridor. The relationship is asymmetric: the distributors can represent multiple south_reach producers, giving them negotiating leverage; the smaller Kaapse Baai estates have no alternative to the Circle's collective arrangement and therefore cannot negotiate individually. Eerste Helling negotiates its own terms. + +**Meridional Banking:** The Circle's operating accounts and the individual estates' commercial credit facilities are managed through Meridional Banking's south_reach correspondent network. Estates in financial difficulty have, over the past four decades, negotiated restructuring arrangements through Meridional's commercial desk. + +--- + +## What They Don't Talk About + +Seven of the twelve estates in the Cape Producers Circle have, at various points over the past forty years, sold minority stakes to outside investors during periods of financial stress. In each case, the buyer was a commercial entity called Baai Kapitaal Holdings, registered through Meridional Banking's correspondent structure at an address in the Meridional administrative district. Baai Kapitaal's beneficial ownership — which requires tracing through two intermediate holding layers in Meridional's commercial register — terminates at a family trust administered by the Joubert-Van Rooyen family of Eerste Helling. + +The estate owners who sold these minority stakes did so believing they were dealing with a commercial investor unaffiliated with the wine industry. The transaction terms were reasonable for distressed-seller transactions: cash, no operational interference, no board seat. No seller has since realized that the entity they sold to is their largest competitor. + +Baai Kapitaal does not exercise voting rights through the estates it holds stakes in, because doing so would require disclosing beneficial ownership in Circle governance proceedings. It collects dividends quietly through Meridional's payment infrastructure. The combined position across seven minority stakes gives the Joubert-Van Rooyen family an economic interest in approximately sixty percent of total Kaapse Baai wine production, while nominally controlling only the one estate that has always been theirs. + +--- + +## Gameplay Relevance + +Kaapse Baai Wines provides entry into south_reach commercial governance and beneficial ownership investigation. The Circle structure is a model for how informal institutions can concentrate control without formal regulatory exposure. + +The productive investigation threads are: + +- **Baai Kapitaal Holdings** — the beneficial ownership trace runs through Meridional Banking's correspondent structure. A player with access to Meridional's commercial register can follow the intermediate holding layers. The trace is not difficult if you know to look; the difficulty is knowing that Baai Kapitaal exists and is connected to Eerste Helling. Smaller estate owners who sold stakes are potential sources: they remember the transaction, they don't know what they were part of, and some of them would have opinions about it if they did. +- **The Circle governance revision** — the third revision to the certification standards is documented in the Circle's administrative archive, held by Eerste Helling's secretariat. Comparing the revision text to the production methods of the estates that lost certification access during the same period establishes the pattern. The secretariat is not a public archive. +- **The distribution asymmetry** — the smaller undervalued estates are a point of entry. Any of them would benefit from a player who could either expose the ownership structure or help them negotiate directly with inner-corridor buyers rather than through the collective arrangement. + +--- + +**Cross-References:** +- [Kaapse Baai](../star-systems/GJ-213/index.md) — Headquarters system; founding terroir; estate wine production +- [Groot Karoo Cellars](groot-karoo-cellars.md) — Parallel south_reach terroir producer; fortified wines and brandies; mutual awareness without commercial overlap +- [Meridional Banking](meridional-banking.md) — Commercial register location for Baai Kapitaal Holdings; estate restructuring credit facilities + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kalahari-leatherworks.md b/wiki/corporations/kalahari-leatherworks.md index bdeece169..17174392c 100644 --- a/wiki/corporations/kalahari-leatherworks.md +++ b/wiki/corporations/kalahari-leatherworks.md @@ -1,24 +1,95 @@ --- title: "Kalahari Leatherworks" -description: "Kalahari Leatherworks — heritage craft manufacturer based in Karoo, south reach" +description: "Karoo-based heritage leather goods manufacturer operating in south reach — traditional tanning techniques, rare local hides, and a geographic origin certification that Kalahari wrote for themselves" slug: kalahari-leatherworks category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Karoo (GJ 222A) tags: [heritage_craft, south_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groot-karoo-cellars, iberian-standard-foods, alentejo-partners] --- # Kalahari Leatherworks **Type:** Corporation — Heritage Craft Manufacturer +**Also Known As:** Kalahari, the Leatherworks **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Karoo (GJ 222A) +**Scope:** South reach corridor primary; limited inward premium distribution secondary +**Headquarters:** Karoo (GJ 222A) — 3-aperture hub, 5 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; provenance-designated craft goods -Kalahari Leatherworks is a heritage craft manufacturer operating out of Karoo (GJ 222A). Details to be expanded. +--- + +## Overview + +Karoo is a dry system with open terrain and specific fauna that have adapted across three centuries to conditions that produce dense, tight-grained hides unlike anything the corridor commonly trades. Kalahari Leatherworks has built its market position on that biological specificity — the company's tanned leather goods are positioned as products of a particular place, a particular ecosystem, and a particular craft tradition that has evolved alongside the animals it processes. The bags, harnesses, boots, and specialist functional goods the workshop produces carry the "Karoo-bred hide" mark as a guarantee of origin, quality, and craft lineage. + +In the south reach corridor, this positioning works. Buyers understand that they are paying for something specific that they cannot obtain from a standard goods supplier. At inward distribution points, the provenance story — Karoo system, desert-adapted fauna, three-century craft lineage — carries the premium markup that terroir products command. The Leatherworks maintains a small showroom in Karoo's primary settlement that functions as much as a marketing exercise as a retail point of sale. + +--- + +## Origin + +Kalahari Leatherworks traces its founding to a tannery established by the second generation of Karoo settlers, who had arrived from southern African heritage communities and brought tanning techniques developed for arid-zone hides. The system's fauna — the Karoo plains elk and the smaller, tougher corridor deer that had adapted to the dry lowlands — proved exceptionally compatible with the inherited methods. + +The original tannery operated as a family enterprise for five generations before being incorporated as Kalahari Leatherworks to facilitate external investment and expanded distribution. The founding family retains a controlling stake and the operational management of the craft workshop. The corporate entity added distribution infrastructure, a second workshop space, and the marketing program that built the brand's inward corridor presence. + +The "Karoo-bred hide" designation was introduced as a marketing term during the incorporation period, appearing first in export documentation and later in promotional materials. It became the brand's central identity claim. + +--- + +## Operations + +**Product lines:** Functional leather goods — riding harnesses, work boots, storage bags, and carrying equipment for industrial use — are the volume product. These sell throughout the south reach corridor at pricing that reflects the material quality without the full artisan premium. The premium tier covers hand-stitched bag and accessory lines, bespoke commissioned pieces, and the specialist equipment supplied to several south reach resource extraction operations that specify Kalahari material for durability reasons. + +**Material sourcing:** The Karoo plains elk and corridor deer that produce the hides Kalahari uses for its premium tier are managed through a pastoral network across Karoo's agricultural zones. The herd management is genuine — the pastoral families who manage the herds have multi-generational relationships with the Leatherworks and supply under long-standing agreements. + +**Workshop:** Two workshop spaces at Karoo's primary settlement, employing thirty-eight people across tanning, cutting, stitching, and finishing functions. The senior tanners are the craft knowledge holders; the finishing workshop handles the production-line goods under their oversight. + +**Distribution:** South reach direct. Inward distribution through a premium goods importer at Caparica who handles the brand's inward presence. + +--- + +## The "Karoo-Bred Hide" Certification + +The Lattice Commission's provenance framework for craft goods includes provisions for geographic origin designation, but the Commission has not formally codified a standard for hide goods from the south reach corridor systems. There is no statutory definition of "Karoo-bred hide" in Commission standards. + +Kalahari Leatherworks wrote its own definition. The definition appears in the company's export documentation, its Lattice Commission product registration filings, and the descriptive text on every certificate of origin that accompanies a shipped product. The definition reads: "Hides produced from animals born, raised, and processed within the Karoo system, or from animals of Karoo-origin breeding stock processed using traditional Karoo tanning methods on-system." + +The second clause — "Karoo-origin breeding stock processed on-system" — was introduced in the definition at a point when the Leatherworks had begun supplementing its local hide supply with imported animals from a breeding program at a south reach system two hops distant. The breeding program uses stock descended from original Karoo herd animals, exported several generations ago. + +Under the definition Kalahari wrote, hides from these imported animals, tanned at the Karoo workshop, qualify as "Karoo-bred." Under any reasonable buyer's understanding of the phrase, they do not. The premium tier remains genuinely local; the volume lines and a portion of the mid-range functional goods use the blended supply. The certificate of origin accompanying all products uses the same language regardless of which supply source the hides came from. + +No Commission body has reviewed the definition. No competitor has contested it. The definition simply exists in the company's own documentation, applied consistently in ways that the company's legal team has assessed as technically accurate under the terms as written. + +The pastoral families who manage the genuine Karoo herds supply approximately half the current hide volume. They are aware that the workshop also purchases animals from the outward breeding program but have not been told how that supply is certified or labeled. The relationship between the workshop and the pastoral families is maintained carefully — they are both a supply source and a community whose cooperation the Leatherworks's legitimacy depends on. + +--- + +## Gameplay Relevance + +Kalahari Leatherworks is background commercial texture for south reach investigations — present in markets, visible in equipment on south reach characters, relevant whenever supply chain provenance or origin certification is the investigative thread. + +The certification question is the primary angle. The evidence requires two pieces: the definition Kalahari filed (in Commission product registration records) and the procurement records showing the imported breeding-stock animals (in the Leatherworks' own supply ledgers). The gap between what buyers understand "Karoo-bred" to mean and what the filed definition actually says is the story. A player who connects those two documents has found a provenance fraud that is technically defensible under the letter of a definition the company wrote for itself. + +The pastoral families who supply the genuine Karoo herd animals are secondary characters with direct knowledge of the sourcing split — they know the workshop buys outside animals and know it began after the incorporation. What they know about the certification framing is a separate question. + +--- + +**Cross-References:** +- [Karoo](../star-systems/GJ-222A/index.md) — Headquarters system; herd management zones; workshop facilities +- [Groot-Karoo Cellars](groot-karoo-cellars.md) — Karoo system neighbor; comparable provenance product +- [Iberian Standard Foods](iberian-standard-foods.md) — South reach corridor neighbor; parallel origin certification question +- [Alentejo Partners](alentejo-partners.md) — South reach agricultural context; supply chain parallel +- [Matosinhos Fishing](matosinhos-fishing.md) — South reach provenance parallel; comparable methodology question + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kaur-observatory-equipment.md b/wiki/corporations/kaur-observatory-equipment.md index e4049ef4c..aacd8d177 100644 --- a/wiki/corporations/kaur-observatory-equipment.md +++ b/wiki/corporations/kaur-observatory-equipment.md @@ -1,24 +1,101 @@ --- title: "Kaur Observatory Equipment" -description: "Kaur Observatory Equipment — precision technology manufacturer based in Kaur's Observatory, east reach" +description: "Sikh-heritage scientific instrumentation manufacturer at Kaur's Observatory (GJ 432A) — observation arrays, stellar survey hardware, and the long-baseline telescope systems used by the Reach's most serious scientific institutions" slug: kaur-observatory-equipment category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 -scope: regional +updated: 2026-04-22 +scope: east_reach primary; reach-wide scientific and navigation instrument contracts secondary faction_type: economic headquarters: Kaur's Observatory (GJ 432A) tags: [tech_premium, east_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [hanyang-precision, dalbit-systems] --- # Kaur Observatory Equipment -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Scientific Observation and Survey Instrumentation +**Also Known As:** Kaur, KOE **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kaur's Observatory (GJ 432A) +**Scope:** East_reach primary; reach-wide scientific institution and navigation contracts secondary +**Headquarters:** Kaur's Observatory (GJ 432A) — 2-aperture spur, 9 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; scientific instrumentation specialist -Kaur Observatory Equipment is a precision technology manufacturer operating out of Kaur's Observatory (GJ 432A). Details to be expanded. +--- + +## Overview + +The span gates require stellar reference points to orient themselves. The survey vessels that mapped the Reach's outer corridors required precision instruments to record what they found. The Veil Institute's observatories, distributed across the Reach to maintain continuous coverage of the alien horizon stations that made the gate network possible, require hardware to do the observing. Kaur Observatory Equipment makes this hardware: precision stellar survey arrays, long-baseline telescope systems, atmospheric sensor platforms, and the orientation instruments that tell gate alignment systems where they are relative to everything else. + +The company occupies a specific niche in the east_reach's technology sector — not the consumer-facing precision electronics of Hanyang or the volume manufacturing of Dalbit, but the specialist instrumentation that scientific institutions and navigation infrastructure require and that general manufacturers do not build to the required specification. Kaur's clients are the Reach's most demanding users of precision optics and sensor technology. Their requirements have driven the company's capability for seven generations, and the company's capability has in turn shaped what those institutions consider achievable. + +--- + +## Origin + +Amarjit Kaur arrived at GJ 432A as the lead scientist on an observation survey mission, not as a colonist. The system's specific location — its angular position relative to several of the Reach's boundary regions, and the minimal atmospheric interference at its primary orbital platform — made it unusually well-suited for long-baseline stellar observation. Kaur's initial mission was three years. She stayed for the remainder of her life, which was not Perpetual-class long but was long enough to establish the observatory that would eventually become the system's defining institution and give it her name. + +The transition from scientific station to commercial instrumentation manufacturer happened in the second generation, when Kaur's students found that the custom instruments they were building for the observatory's own research programs were better than anything available through standard commercial channels, and that other institutions were willing to pay for access to those capabilities. The founding proposition was not commercial ambition but practical necessity: the observatory needed funding, the instruments were fundable, and the manufacturing operation that grew from the observatory's workshop produced revenue that the research program could not. + +The Kaur family name attached to the company as a consequence of the system's naming, not through any deliberate branding decision. The system was informally called Kaur's Observatory within a generation of Amarjit's arrival; the name was formal within two generations; the company took the name because it was the name everyone already used for the place and the work. + +--- + +## Operations + +**Survey instrumentation:** Custom stellar survey arrays for scientific and navigation applications. The observation hardware produced by KOE is not the same as commercial telescope systems; it is designed for the specific requirements of long-baseline survey work — extended integration periods, precise pointing stability, calibrated sensitivity across the relevant spectral ranges — that scientific observation programs require. Each array is fabricated to client specification rather than produced as a standardized product. + +**Orientation systems:** The stellar orientation sensors used in span gate calibration systems require a specific combination of precision and reliability that Kaur's background in long-baseline survey instruments naturally produces. Gate orientation sensors are a significant portion of KOE's commercial revenue — Gate Corporation installations across the Reach use KOE orientation hardware as standard specification. The Gate Corporation relationship is the company's largest single commercial account by volume. + +**Atmospheric sensor platforms:** Planetary observation programs require atmospheric sensor arrays distinct from the stellar instruments used for void-space observation. Kaur's atmospheric sensor product line developed from the planetary observation programs at the home observatory and has expanded to serve scientific stations and environmental monitoring programs across the east_reach. + +**Observatory maintenance:** KOE maintains a field service program for instruments installed at external scientific institutions. The maintenance relationships with the Veil Institute's observatory network and several independent research stations provide a revenue stream that is smaller than the fabrication business but strategically important — field service engineers see what the instruments are being used to observe, which is useful context for understanding what capabilities clients will need next. + +--- + +## Political Relationships + +**Hanyang Precision Systems:** Supply and licensing relationship. KOE's stellar observation sensors provide the high-precision data inputs that Hanyang's navigation instruments require for stellar reference calibration. The two companies operate at different points in the navigation instrument supply chain: KOE makes the observation hardware, Hanyang integrates the data into the instruments that ships and gates actually use. The relationship is commercially productive and technically close; the engineering teams coordinate on calibration specifications with enough regularity to have developed a working relationship that goes beyond standard supplier-client dynamics. + +**The Veil Institute:** KOE's most significant scientific client. The Institute's observatory network across the Reach uses KOE instruments as primary observation hardware. The relationship is research-client in form but deeper in practice — Veil Institute researchers have been among the most technically demanding users of KOE's instruments for generations, and several of the instrument advances that KOE's current product portfolio builds on emerged from problems that Veil Institute observation programs surfaced. The Institute's field staff know KOE's engineering team well enough to call them directly about instrument behavior rather than going through the formal service channel. + +**Gate Corporation:** The orientation sensor supply relationship that constitutes KOE's largest single commercial account. Gate Corporation's installation standards specify KOE orientation hardware for gate alignment systems across the network. The relationship is long-standing and professionally transactional — Gate Corporation procurement operates at institutional scale and treats KOE as a qualified sole-source supplier rather than as a partner. KOE has invested in maintaining the certification that keeps it on Gate Corporation's qualified supplier list precisely because losing that status would remove the company's most reliable revenue stream. + +--- + +## What They Don't Talk About + +The observatory at Kaur's Observatory maintains long-baseline observation records going back seven generations — a continuous archive that is one of the longest unbroken astronomical datasets in the east_reach. Most of that data is scientific background: stellar positions, variable star monitoring, survey records used as reference baselines for navigation and gate calibration. The archive is available to researchers and has been used in published work across multiple disciplines. + +Three years ago, the current director of KOE — Dr. Parveen Kaur, great-great-great-grandniece of the founder — was reviewing the archive for a calibration stability study and encountered an anomaly in the microwave background data from a specific region in the outer boundary of the Reach's eastern surveyed territory. The anomaly has characteristics consistent with a reflection signature from a horizon station aperture: a specific pattern of microwave emission that the Veil Institute's published observation protocols describe as indicative of active alien installation. + +The surveyed territory in that region is mapped. The anomaly's source location does not correspond to any surveyed installation. + +Dr. Kaur has not disclosed the anomaly to the Veil Institute, to the Gate Corporation, or to any other institution. She has been quietly tasking a portion of the observatory's maintenance observation allocation — equipment time that is logged internally as long-baseline calibration stability verification — toward refining the position and brightness data on the anomaly. The project designation in the observatory's scheduling records is technical and opaque. The accumulating dataset is stored in the raw observation archive under that designation, accessible to anyone with archive access who knows what they are looking at and why the project designation doesn't match the observation targets. + +She has not decided what to do with the data when it is sufficient to confirm or rule out the hypothesis. She is aware that the decision will not be simple. + +--- + +## Gameplay Relevance + +Kaur Observatory Equipment is a scientific instrument manufacturer that becomes relevant when navigation, stellar survey, or observation data are at issue. The Gate Corporation relationship makes KOE's products present throughout the Reach's gate infrastructure. The Veil Institute relationship makes KOE a point of access into the Institute's research network — field service engineers who work at Veil Institute observatories know which programs are currently active and what the instruments are being pointed at. + +The anomaly dataset is the significant investigative thread. A player who gains access to the observatory's raw observation archive and understands the observation scheduling records is looking at several years of data pointing at a region of space that, if the hypothesis is correct, contains an undiscovered alien installation. The implications for the Veil Institute, for gate network expansion, and for whoever gets there first are extensive. Dr. Kaur is an intelligent person who has been sitting with a significant discovery for three years without disclosing it; understanding why requires understanding her position, which is that she leads a small regional instrumentation company and is not confident that being the person who reported this would end well for the observatory or for herself. + +--- + +**Cross-References:** +- [Kaur's Observatory](../star-systems/GJ-432A/index.md) — Headquarters system; founding observatory; long-baseline observation archive +- [Hanyang Precision Systems](hanyang-precision.md) — Supply and calibration relationship; navigation instrument integration +- [Dalbit Systems](dalbit-systems.md) — East_reach electronics peer; overlapping institutional client base +- [Veil Institute](../factions/veil-institute.md) — Primary scientific client; observatory network instruments +- [Gate Corporation](gate-corporation.md) — Largest commercial client; gate alignment orientation sensors + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kellervolk.md b/wiki/corporations/kellervolk.md index 663a07f01..da0a728b4 100644 --- a/wiki/corporations/kellervolk.md +++ b/wiki/corporations/kellervolk.md @@ -1,24 +1,96 @@ --- title: "Kellervolk" -description: "Kellervolk — cultural content producer based in Nyrheim, west reach" +description: "Nyrheim-based cultural content studio producing west reach serialized narrative and documentary work — public-facing independence, a government funding relationship routed through an arts foundation, and a side agreement that makes the independence contractually fictional" slug: kellervolk category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) tags: [cultural, west_reach, mark, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [nordhavn-financial, norrland-woodcraft, maas-rijn-entertainment] --- # Kellervolk **Type:** Corporation — Cultural Content Producer +**Also Known As:** Kellervolk Studio, the Keller collective **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Nyrheim (GJ 3737) +**Scope:** West reach corridor primary; limited inward distribution secondary +**Headquarters:** Nyrheim (GJ 3737) — 3-aperture hub, 6 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; narrative and documentary production -Kellervolk is a cultural content producer operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +Nyrheim's west reach corridor identity is partly a cultural export project, and Kellervolk is the studio most responsible for what that project looks like. The company produces serialized narrative content — multi-season dramatic works with west reach settings and characters — and documentary programming that covers Nyrheim's history, geology, resource economy, and communal culture. Both streams are well-regarded in the west reach corridor and have inward distribution through a Mark-currency broadcaster. + +The studio's public profile emphasizes independence and editorial integrity. Kellervolk's promotional materials and award applications describe the studio as "practitioner-led" and "community-grounded" — the implication being that content decisions are made by people whose first allegiance is to the work rather than to financial or political stakeholders. This is the standard story that quality cultural producers tell about themselves, and in Kellervolk's case it is believed by most of the people who say it. + +--- + +## Origin + +Kellervolk was founded twenty-two years ago by a group of west reach documentary producers and writers who had been working individually and wanted a shared production infrastructure. The founding philosophy was horizontal governance — major production decisions made collectively, no single producer with unilateral authority. The early productions were modestly funded and editorially independent in the way that things funded on a small scale with limited external stakes tend to be. + +The turning point was the studio's fifth year, when Nyrheim's regional government identified Kellervolk as an appropriate vehicle for a cultural export initiative — a program to commission and distribute west reach content that would strengthen the corridor's cultural identity relative to the inward systems whose media presence dominated available programming. The government's interest was genuine and the alignment was real: Kellervolk wanted to make west reach content; the government wanted more of it produced and distributed. + +The mechanism chosen was an arts foundation — the Nyrheim Cultural Foundation, formally independent, with a board drawn from civil society and the cultural sector — that would receive government funding and disburse it to eligible productions through a grant process. Kellervolk became the Foundation's primary grantee. + +--- + +## Operations + +**Production:** Four to six long-form productions in active development at any given time. The studio employs a core creative staff of twenty-eight, with significant production-phase contracting. Productions are developed under the studio's collective governance framework — proposals reviewed by a committee of senior producers, greenlit by majority vote. + +**Funding structure:** The majority of Kellervolk's production budget comes through grants from the Nyrheim Cultural Foundation. Commercial revenue from distribution rights and licensing covers operating costs. The Foundation grant process involves an editorial review in which Kellervolk submits production proposals describing the work's thematic content and intended market. + +**Distribution:** Mark-currency broadcaster at Nyrheim holds first-look broadcast rights. For inward corridor distribution, Kellervolk uses an agency relationship with a Dokkum-based distributor. + +**Governance:** The founding collective governance model has been maintained in formal terms — the senior producers committee remains the greenlight body, and no single executive holds unilateral editorial authority. + +--- + +## Political Relationships + +**Nyrheim Cultural Foundation:** The Foundation is Kellervolk's primary funder and its primary political relationship. The Foundation's board members include Nyrheim government nominees who are not majority but who are consistent voices in board discussions. The grant process creates a natural channel for alignment between government priorities and production decisions. + +**Nyrheim regional government:** The government's relationship with Kellervolk is managed through the Foundation structure and is therefore formally indirect. Government officials do not appear in Kellervolk's governance documents or editorial meetings. + +--- + +## The Side Agreement + +The Nyrheim Cultural Foundation's charter describes the Foundation as an independent body making editorial decisions on grant applications without reference to government priorities. This description is accurate in the formal governance sense — the board reviews applications on artistic merit criteria and the government nominees participate as individual board members, not as government representatives. + +Alongside the Foundation charter, there is a side agreement between the Foundation and Nyrheim's regional cultural ministry. The side agreement was established at the Foundation's founding, is not a public document, and is described in the ministry's internal records as an "operational protocol." It gives the ministry a veto over grant applications that touch three thematic categories: resource extraction industry representation, relations between Nyrheim and the inward corridor commercial systems, and the governance of west reach regional institutions. + +The veto has been exercised twice in the past decade, both times through a process in which the ministry's government liaison on the Foundation board identifies an application as falling within a flagged category and the application is returned to the applicant for "further development" without being formally rejected. In both cases, the productions were eventually produced after the problematic elements were revised. The producers involved understood they were being managed but were not told why. + +Kellervolk's senior producers do not know the side agreement exists. They know that certain topics require more revision cycles than others and have internalized this as editorial feedback from the Foundation board. The Foundation chair knows about the side agreement and regards it as an administrative mechanism rather than a restriction on editorial independence, because the productions are ultimately made. + +--- + +## Gameplay Relevance + +Kellervolk is relevant as a west reach cultural institution and as a thread into the relationship between Nyrheim's government and its cultural infrastructure. The studio appears wherever west reach culture, media, or political messaging intersects with the player's activities. + +The side agreement is the investigative thread. It is a document — in the cultural ministry's internal records, countersigned by the Foundation chair. A player who accesses either set of records finds an agreement that contradicts the Foundation's public independence claim and explains the revision pattern that working producers have noticed but not understood. The thematic categories covered by the veto are narrow enough that most Kellervolk productions have never encountered it — which is part of why the arrangement has persisted without internal scrutiny. + +--- + +**Cross-References:** +- [Nyrheim](../star-systems/GJ-3737/index.md) — Headquarters system; production base; cultural ministry +- [Nordhavn Financial](nordhavn-financial.md) — Nyrheim system neighbor; west reach institutional context +- [Norrland Woodcraft](norrland-woodcraft.md) — Nyrheim system neighbor; comparable west reach brand +- [Maas Rijn Entertainment](maas-rijn-entertainment.md) — West reach corridor competitor; Mark-currency broadcaster overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kinlochewe-instruments.md b/wiki/corporations/kinlochewe-instruments.md index d9bedb2a3..f8455f753 100644 --- a/wiki/corporations/kinlochewe-instruments.md +++ b/wiki/corporations/kinlochewe-instruments.md @@ -1,24 +1,100 @@ --- title: "Kinlochewe Instruments" -description: "Kinlochewe Instruments — precision technology manufacturer based in Braemar, north reach" +description: "Braemar-based precision instruments manufacturer serving academic and industrial clients in the north reach — calibration standards derived from a deprecated methodology and a certification update the company has been slow to pursue" slug: kinlochewe-instruments category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Braemar (GJ 475) tags: [tech_premium, north_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [calloway-distillery, ironbark-films, erzgebirge-instruments] --- # Kinlochewe Instruments **Type:** Corporation — Precision Technology Manufacturer +**Also Known As:** Kinlochewe, KI Scientific **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Braemar (GJ 475) +**Scope:** North reach primary; corridor-wide institutional client base secondary +**Headquarters:** Braemar (GJ 475) — 2-aperture loop_member, 5 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; certified scientific and navigational instrumentation -Kinlochewe Instruments is a precision technology manufacturer operating out of Braemar (GJ 475). Details to be expanded. +--- + +## Overview + +Braemar is an academic and scientific system in the north reach corridor — several universities, a deep-space observation network, and the kind of institutional culture that accumulates over generations of settlement by people who came to do careful work. Kinlochewe Instruments has been the primary local supplier of precision scientific and navigational instruments for that community for thirty-seven years. Spectrometers, atmospheric sensors, survey equipment, and the calibration reference tools that other instruments are measured against: these are what Kinlochewe builds. + +The company's public positioning leans on the academic relationship and the research credentials it implies. Kinlochewe instruments appear in published research from Braemar's universities. The company sponsors symposia and occasionally contributes instrument loans to long-duration observation projects. The story the company tells about itself is one of scientific rigor and precision — an instrument maker whose products are trusted by people for whom being wrong is professionally consequential. + +--- + +## Origin + +Kinlochewe Instruments was founded by a physicist who had spent twenty years as an instrument specialist at Braemar's primary research university before concluding that the external suppliers the university depended on were not building to the standards that serious research required. The founding proposition was local manufacture to research-grade specifications, with calibration services embedded in the supply relationship. + +The first clients were the university departments the founder had worked with directly. Word spread through the research community over several years, and by the end of the first decade Kinlochewe had established supply relationships with every research institution at Braemar and with several of the resource extraction operations in the wider north reach corridor that required precision survey and environmental measurement capability. + +The resource extraction sector ultimately became the larger share of Kinlochewe's revenue. The research positioning remained the company's primary identity. This tension — between a brand built on academic scientific standards and a revenue base dominated by industrial clients — is the operative internal dynamic at Kinlochewe today. + +--- + +## Operations + +**Product lines:** Scientific instruments for atmospheric and environmental measurement, geological survey equipment, navigational precision hardware, and calibration reference standards. The calibration reference line — tools used to verify the accuracy of other measuring instruments — is the highest-margin product and the one most critical to the company's certification status. + +**Calibration standards:** Kinlochewe's instruments are certified under Lattice Commission metrology standards, which define the measurement methodologies and accuracy specifications that certified instruments must meet. The calibration reference products are certified to these standards and are used by industrial clients whose own instruments must demonstrate compliance. + +**Primary clients:** Braemar's research institutions, the north reach corridor's resource extraction operators, and a smaller number of environmental monitoring bodies. The resource extraction clients represent approximately 65% of revenue. + +**Workforce:** Forty-seven people across engineering, manufacturing, calibration, and customer service. The calibration team is the most specialized and the most difficult to replace. + +--- + +## Political Relationships + +**Braemar research institutions:** The university relationships are maintained more carefully than their revenue share would suggest. The institutional endorsement that comes from academic clients using Kinlochewe instruments in published research is the brand's primary credential. Losing an academic client would cost more in positioning than in revenue. + +**North reach resource extraction sector:** The industrial clients are less interested in brand story than in performance specifications and service continuity. Several of Kinlochewe's largest industrial clients are on long-term supply agreements that predate the current management team. + +**Lattice Commission metrology board:** The metrology board maintains the standards under which Kinlochewe's products are certified. The company interacts with the board through the certification renewal process, which occurs every five years for each product line. + +--- + +## The Deprecated Methodology + +Three years ago, the Lattice Commission's metrology board completed a review of calibration methodology standards for atmospheric and environmental measurement instruments. One of the outcomes of the review was the formal deprecation of a measurement methodology — Differential Path Integration, or DPI — that had been included in the calibration standards for twenty years but which the review determined was producing systematic error in specific atmospheric compositions common in the north reach corridor's habited worlds. + +The deprecated methodology was removed from the certification testing matrix effective from the date of the review's publication, with a transition provision that existing certified products would be re-evaluated against the updated standards at their next scheduled certification renewal. + +Kinlochewe's flagship atmospheric sensor line uses DPI as its primary calibration methodology. The line was certified under the old standards three years before the deprecation. Its certification renewal is due eighteen months from now. + +The company's engineering team is aware of the deprecation. A proposal to begin retrofitting the affected product line to use the replacement methodology was reviewed by Kinlochewe's operations management eight months ago. The decision taken was to defer the retrofit to the next scheduled product revision cycle, which is planned to coincide with the certification renewal. The commercial logic is clear — a retrofit conducted before the renewal would require re-certification at cost; a retrofit conducted as part of the renewal process can be bundled. + +The gap is the eighteen months between now and the renewal, during which Kinlochewe's certified atmospheric sensors are in service at industrial and research sites, calibrated under a methodology the Commission has deprecated as producing systematic error. The certification documents accompanying those instruments state that they meet current Commission standards. The Commission's deprecation notice is a public document that the instruments' operators have not been notified of. + +--- + +## Gameplay Relevance + +Kinlochewe Instruments is relevant in north reach investigations touching environmental data, resource extraction permits, and calibration standards. The company's instruments are present at mining and survey operations throughout the corridor, and the data those instruments produce informs environmental compliance documentation. + +The deprecated methodology is the investigative thread. The deprecation notice is in the Commission's public records. The instruments in service at specific installations can be identified through delivery records. Whether any research or compliance documentation was produced using those instruments during the deprecation window — and whether the systematic error the methodology produces is material to any specific filing — requires work across client records and Commission environmental standards documentation. The company's deferral decision is in the operations management meeting records. + +--- + +**Cross-References:** +- [Braemar](../star-systems/GJ-475/index.md) — Headquarters system; academic client base; primary market +- [Calloway Distillery](calloway-distillery.md) — Braemar corridor neighbor; north reach cultural parallel +- [Ironbark Films](ironbark-films.md) — North reach institutional neighbor; Braemar cultural context +- [Erzgebirge Instruments](erzgebirge-instruments.md) — Precision instruments parallel; cross-corridor competitor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/koryo-standard.md b/wiki/corporations/koryo-standard.md index 6f6d9c018..7e3ea0251 100644 --- a/wiki/corporations/koryo-standard.md +++ b/wiki/corporations/koryo-standard.md @@ -1,24 +1,95 @@ --- title: "Koryo Standard" -description: "Koryo Standard — consumer goods manufacturer based in Jeonnam, east reach" +description: "Jeonnam-based east reach consumer goods manufacturer producing cleaning products, packaging materials, and basic household commodities — a flexible workforce model, an unresolved safety configuration, and an NDA written to cover more than one incident" slug: koryo-standard category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Jeonnam (GJ 3728B) tags: [commodity_branded, east_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [incheon-salt, kyoei-design, jeju-lattice] --- # Koryo Standard **Type:** Corporation — Consumer Goods Manufacturer +**Also Known As:** Koryo, KS Products **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Jeonnam (GJ 3728B) +**Scope:** East reach corridor primary; limited inward distribution secondary +**Headquarters:** Jeonnam (GJ 3728B) — 2-aperture system, 5 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; everyday commodity lines -Koryo Standard is a consumer goods manufacturer operating out of Jeonnam (GJ 3728B). Details to be expanded. +--- + +## Overview + +Koryo Standard is what sustains east reach households between the things they buy for taste or status. Cleaning concentrates, packaging materials, basic hygiene products, bulk food containers, workshop consumables — the category of goods that people repurchase automatically and notice only when they are absent. The company has eleven product lines under three brand names and distributes across six east reach systems. No individual product is remarkable. The aggregate market presence is significant. + +The company's public identity is low-profile by design. Koryo Standard does not sponsor cultural programming or make arguments about its heritage or the specificity of its ingredients. It competes on price, availability, and the trust that comes from consistent products across many purchase cycles. In the east reach consumer market, this positioning is sustainable: there are enough households buying enough ordinary things that a company good enough at logistics and production can generate comfortable margins without aspiring to premiumness. + +--- + +## Origin + +Koryo Standard was founded twenty-nine years ago as a consolidation of three smaller east reach manufacturing operations that had been competing inefficiently across overlapping product categories. The consolidation was backed by a Jeonnam-based investment group that saw an opportunity to rationalize production and distribution across the east reach corridor. The three founding operations became production facilities within a single corporate structure. + +The name "Koryo Standard" was selected for its neutrality — it refers to neither the founding operations nor to any specific product identity. The company was intended from the beginning to be an infrastructure company rather than a brand. Whether to build brand recognition on top of the supply infrastructure has been a recurring management debate, never fully resolved in either direction. + +--- + +## Operations + +**Product lines:** Cleaning concentrates under the Jeon Clean brand. Packaging and storage materials under the Standard Pack mark. Household and personal care basics under Koryo Home. Each line covers approximately 30 to 50 SKUs. Production is largely automated; the facilities are not technically complex but require consistent maintenance of equipment that operates at high throughput. + +**Workforce model:** Koryo Standard's production workforce is approximately 60% short-term contracted workers, with the remainder on standard employment agreements. The company describes this in public materials as a "flexible workforce model" that allows production capacity to scale with demand. The practical consequence is that a significant share of the workers in the facilities at any given time are in their first few months of employment, without the accumulated familiarity with specific equipment that longer tenure builds. + +**Facilities:** Three facilities across Jeonnam and two adjacent east reach systems. Facility managers have operational authority within parameters set by central management; safety protocols are standardized at the corporate level. + +**Distribution:** Direct east reach distribution through the company's own logistics network, supplemented by local distributor relationships at systems where the network is thinner. + +--- + +## Political Relationships + +**East reach labor relations:** Koryo Standard's contracted workforce model has drawn periodic attention from east reach labor advocacy bodies, which argue that high contractor ratios are used to avoid benefits obligations and reduce accountability for workplace conditions. The company's response in these forums has been that its contractor arrangements comply fully with Lattice Commission labor standards and that contracted workers are employed through compliant agencies with proper oversight. + +**Lattice Commission compliance desk:** Koryo Standard's regulatory compliance is managed through a dedicated team and has not produced adverse formal findings. The company's internal safety protocols are documented and certified. + +--- + +## What the Settlement Covers + +Two years ago, a production line worker at the Jeonnam facility was injured by a rotating component failure on one of the packaging assembly machines. The injury was serious and the incident was reported to the facility's safety authority as required. A settlement was reached with the injured worker, accompanied by a nondisclosure agreement. The settlement amount was material; the NDA terms covered the worker's description of the incident, the facility's internal investigation findings, and "any related operational matters." + +The internal investigation identified the specific machine configuration that caused the failure — a guarding arrangement on a rotating drive component that created a pinch hazard under a specific operational condition. The investigation report noted that the same machine configuration was present on two machines at the Jeonnam facility and on one machine at the Hwaseong facility. + +Koryo Standard's safety team scheduled a review of all three machines. The review was conducted at the Jeonnam facility, where the two affected machines had their guarding configuration modified. The Hwaseong facility was notified of the review requirement. A month later, facility records show the notification was logged. Whether the Hwaseong machine's guarding was modified is not confirmed in any record that safety team headquarters can access — the Hwaseong facility manager at the time has since moved on, and the successor was not briefed on the review. + +The NDA's scope is "incident specifics and related operational matters." The safety team's legal review determined that the ongoing machine configuration question is distinct from the incident itself — correcting it does not require disclosing the incident. This is technically correct and means that notifying workers at the Hwaseong facility that a guarding review had been recommended, without explaining why, was not an NDA violation. The notification that was sent described the review as "routine scheduled maintenance assessment." + +--- + +## Gameplay Relevance + +Koryo Standard is ambient east reach commercial texture — present in station commissaries, household inventory, supply chain records. Relevant to investigations involving labor practices, workplace safety, or consumer goods supply chains. + +The Hwaseong machine configuration is the investigative thread. The evidence requires connecting three pieces: the original incident report at Jeonnam, the internal investigation's identification of the three affected machines, and the Hwaseong facility's maintenance records — which will show either that the guarding was modified or that it was not. The NDA exists and can be found in the settlement records; its scope language is the key document for understanding what the company was and was not required to disclose. The outgoing Hwaseong facility manager is a potential source. The contracted workers at the Hwaseong facility — who cycle through rapidly and have limited tenure — are a secondary source whose accounts of the current machine configuration are credible precisely because they have no stake in the corporate outcome. + +--- + +**Cross-References:** +- [Jeonnam](../star-systems/GJ-3728B/index.md) — Headquarters system; primary production facilities +- [Incheon Salt](incheon-salt.md) — East reach corridor neighbor; bulk salt purchaser from Incheon +- [Kyoei Design](kyoei-design.md) — East reach institutional neighbor; overlapping client base +- [Jeju Lattice](jeju-lattice.md) — East reach industrial context; parallel certification concerns +- [Kumho Navigation](kumho-navigation.md) — Hwaseong corridor neighbor; east reach industrial context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kumho-navigation.md b/wiki/corporations/kumho-navigation.md index 876c40ba2..8ba9519ca 100644 --- a/wiki/corporations/kumho-navigation.md +++ b/wiki/corporations/kumho-navigation.md @@ -1,24 +1,96 @@ --- title: "Kumho Navigation" -description: "Kumho Navigation — precision technology manufacturer based in Hwaseong, east reach" +description: "Hwaseong-based specialist in gate transit navigation software and corridor routing tools — east reach freight routing depends on their dataset, which incorporates survey data whose accuracy certifications expired with the company that produced it" slug: kumho-navigation category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Hwaseong (GJ 1125) tags: [tech_premium, east_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [jeju-lattice, koryo-standard, the-gate-corporation] --- # Kumho Navigation **Type:** Corporation — Precision Technology Manufacturer +**Also Known As:** Kumho, Kumho Nav **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Hwaseong (GJ 1125) +**Scope:** East reach primary; corridor-wide data licensing secondary +**Headquarters:** Hwaseong (GJ 1125) — 2-aperture system, 4 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; navigation data and hardware provider -Kumho Navigation is a precision technology manufacturer operating out of Hwaseong (GJ 1125). Details to be expanded. +--- + +## Overview + +Every commercial freight operator in the east reach corridor uses routing tools. The question is whose. For the majority of east reach freight operations — from the large interstellar carriers to the smaller single-vessel operators running regular corridor routes — the routing tools are built on navigation data that Kumho Navigation produces, maintains, and licenses. The company's gate transit datasets cover aperture approach parameters, corridor routing efficiency models, and the seasonal variation data that experienced pilots know matters for transit timing. Kumho does not have a monopoly on this data; gate operators publish basic parameters, and the Gate Corporation maintains its own routing standards. What Kumho has is the most detailed, most current, and most practically useful east reach dataset available through commercial channels. + +The hardware side — navigation terminal equipment, aperture approach systems sold to vessel operators and station traffic management — is smaller as a revenue line but is the part of the business that most clients interact with as a physical product. The hardware is competent and certified. The data is where the operational value lies. + +--- + +## Origin + +Kumho Navigation was founded twenty years ago by a vessel operator who had spent fifteen years running a freight route across the east reach corridor before concluding that the available navigation data was inadequate for the optimization decisions that would matter at the margins of profitable operation. The founder's insight was not that better routing would save dramatic amounts on individual transits but that small improvements compounded across a large number of transits — and that selling this compound improvement to other operators was more valuable than keeping it proprietary. + +The company's first commercial product was a subscription routing service for corridor freight operators. The dataset was built from the founder's own survey logs combined with purchased survey data from other corridor operators. Thirteen years ago, when a smaller navigation data company at Jeonnam folded, Kumho acquired its assets — including a substantial survey dataset covering several east reach systems — under a distressed acquisition that resolved the failed company's creditor obligations. + +The acquisition was the moment that established Kumho's dataset as the most comprehensive available in the east reach corridor. The integration of the acquired data with Kumho's own was completed over eighteen months and has not been formally re-validated since. + +--- + +## Operations + +**Data products:** The east reach corridor navigation dataset, updated through ongoing survey contracts with vessel operators who submit telemetry in exchange for subscription discounts. Routing software that uses the dataset to produce optimized transit plans for commercial operators. The dataset covers aperture parameters, corridor routing, and point-to-point efficiency models for the east reach's primary commercial routes. + +**Hardware:** Navigation terminal equipment, aperture approach systems for vessel operators, and traffic management hardware for station operators. Hardware sales are certified under Lattice Commission navigation equipment standards. + +**Licensing:** The dataset is licensed to freight operators at subscription rates tiered by usage volume. Several east reach station operators have institutional licenses that integrate Kumho data into their traffic management systems. + +**Workforce:** Fifty-one people across data operations, software development, hardware engineering, and client services. + +--- + +## Political Relationships + +**Gate Corporation:** The Gate Corporation's aperture operation standards define the parameters within which commercial navigation data must be calibrated. Kumho's data products are not formally certified by the Gate Corporation, which certifies hardware rather than data, but Kumho's commercial relationships depend on clients trusting that the dataset is aligned with Gate Corporation operational parameters. + +**East reach freight operators:** Kumho's commercial relationships are with individual operators and freight companies across the east reach corridor. The dataset's value proposition is practical — operators who use it make better routing decisions than those who do not. The subscription renewal rate is high. + +--- + +## The Acquired Dataset + +The survey data acquired from the Jeonnam company was, at the time of acquisition, certified under the Lattice Commission's navigation survey standards that were then in effect. Those standards required periodic re-certification of survey data on a seven-year cycle — re-surveys of the covered areas to verify that the published parameters remained accurate within specified tolerances. + +The Jeonnam company's certification cycle was interrupted by its financial difficulties. By the time of the acquisition, two of the survey areas covered by the acquired dataset had certifications that were within six months of expiry. The distressed acquisition agreement did not require Kumho to assume the certification obligations of the acquired data — those obligations had expired with the original company's Lattice Commission registration. + +Kumho integrated the acquired data into its own dataset without conducting re-surveys. The company's internal rationale was that gate operator basic parameters and ongoing telemetry from subscriber vessels would identify any material changes to the acquired survey areas. This approach provides informal validation but does not constitute formal re-certification under Commission standards. + +The acquired data has not been formally re-certified. It has been continuously updated through telemetry integration and is operationally current in the sense that obvious errors would have been caught through client feedback. Whether the update methodology produces data that would pass a formal re-survey certification is a question Kumho's data team has not formally examined. The Commission's navigation data standards require that commercial datasets disclose the currency and certification status of their component sources. Kumho's dataset documentation describes the acquired component as "integrated and operationally maintained" without disclosing that its formal certification lapsed at acquisition. + +--- + +## Gameplay Relevance + +Kumho Navigation is relevant to east reach investigations touching transit logistics, routing efficiency, and the accuracy of navigation data that freight operators depend on. The company's data products are ambient in any east reach commercial shipping context. + +The certification lapse is the investigative thread. The evidence requires three components: the original Jeonnam company's certification records (in Commission archives), the acquisition agreement (in commercial registry records), and Kumho's own dataset documentation. The gap between "operationally maintained" and "formally certified" is significant in contexts where a routing error — even a marginal one — causes a transit incident. A player working a shipping incident investigation who traces the data source for the involved operator's routing tools will reach Kumho's dataset and the certification question. + +--- + +**Cross-References:** +- [Hwaseong](../star-systems/GJ-1125/index.md) — Headquarters system; primary operations base +- [Jeju Lattice](jeju-lattice.md) — East reach tech neighbor; parallel certification concerns +- [Koryo Standard](koryo-standard.md) — Hwaseong corridor neighbor; industrial context +- [The Gate Corporation](gate-corporation.md) — Aperture standards authority; navigation parameter framework + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kyoei-design.md b/wiki/corporations/kyoei-design.md index 5c6fac471..6cb02641b 100644 --- a/wiki/corporations/kyoei-design.md +++ b/wiki/corporations/kyoei-design.md @@ -1,24 +1,96 @@ --- title: "Kyoei Design" -description: "Kyoei Design — design and furniture manufacturer based in Kurashiki, east reach" +description: "Kurashiki-based furniture and interior design manufacturer rooted in east reach aesthetic tradition — premium workshop output, licensed mid-range manufacturing, and a workforce arrangement that only works because of where the factory is located" slug: kyoei-design category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kurashiki (GJ 205) tags: [design_heritage, east_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kyoto-valley-estates, mirai-entertainment, namsan-collective] --- # Kyoei Design -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Design and Furniture Manufacturer +**Also Known As:** Kyoei, Kyoei House **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kurashiki (GJ 205) +**Scope:** East reach primary; inward corridor premium distribution secondary +**Headquarters:** Kurashiki (GJ 205) — 3-aperture hub, 3 hops from Gateway +**Classification:** Sub-Syndic design enterprise; institutional and residential interior specification -Kyoei Design is a design and furniture manufacturer operating out of Kurashiki (GJ 205). Details to be expanded. +--- + +## Overview + +The east reach corridor has its own visual language, developed across three centuries of settlement by communities who brought specific aesthetic traditions from different parts of Earth's heritage cultures and built something new from their combination. Kyoei Design makes furniture and interior fittings that speak this language — the proportions, materials, joinery techniques, and spatial philosophy that characterizes the east reach's most considered interiors. In institutional settings from Kurashiki to Hwaseong, Kyoei pieces appear in spaces where the environment is meant to communicate care. + +The company's clients range from major east reach institutions commissioning large interior specifications to residential buyers purchasing individual pieces. The premium workshop output — hand-crafted pieces produced to close tolerances by trained woodworkers and joiners at the Kurashiki facility — is what the brand is built on. The broader catalog is where the volume lives. + +--- + +## Origin + +Kyoei Design was founded forty-one years ago by a furniture maker and an interior architect who had been working separately and whose complementary skills produced a collaboration that neither could sustain alone. The furniture maker had trained under an east reach craftsperson who had synthesized Kurashiki's dominant cultural influences into a coherent design methodology; the architect had institutional clients who wanted environments specified to a coherent aesthetic and lacked the furniture supplier to complete them. + +The early years were pure workshop production — small volumes, significant craft investment, institutional clients who specified pieces with long lead times and paid accordingly. The workshop's reputation built through those clients and spread to residential buyers as Kurashiki's wealthier residential market recognized that Kyoei's pieces were the local aesthetic expressed at its highest level. + +The licensed manufacturing arrangement was introduced twenty-three years ago as a response to demand that the workshop could not satisfy within its production constraints. The arrangement was controversial within the original founding partnership — the furniture maker's position was that expanding volume through licensing would compromise the craft identity the brand depended on. The architect's position was that the brand's reach would extend the workshop's cultural influence in ways that justified the quality compromise. The architect's view prevailed; the furniture maker retired five years later. + +--- + +## Operations + +**Premium workshop:** Fifteen craftspeople at the Kurashiki facility producing furniture, joinery, and interior fittings to Kyoei's full design specifications. Hand-crafted, close-tolerance, documented with provenance records that identify the supervising craftsperson. This is the work that appears in design publications and institutional commissions. + +**Licensed manufacturing:** A licensing agreement with a manufacturing operation at a system two hops outward where production costs are substantially lower. The licensee produces Kyoei-designed pieces to Kyoei-specified parameters, at volume, for the mid-range catalog. Products from this facility ship under Kyoei brand marks and carry documentation describing them as "Kyoei Design — manufactured to specification." + +**Catalog structure:** The premium workshop output is sold through direct institutional and residential channels with extended lead times. The licensed mid-range catalog is sold through interior specification firms and retail channels across the east reach corridor. + +**Workforce:** The Kurashiki workshop employs fifteen craftspeople and eight administrative and design staff. The licensing agreement means Kyoei does not employ the manufacturing workers who produce its mid-range catalog. + +--- + +## Political Relationships + +**East reach institutional clients:** Kyoei's institutional relationships — research universities, financial institutions, government administration buildings — are long-standing and design-specification driven. These clients care about aesthetic consistency across an installation and are willing to pay for guaranteed supply continuity. + +**Interior design profession:** Kyoei's catalog is a standard reference in east reach interior specification practice. Interior designers who work in the corridor know the catalog well enough to specify pieces without extensive lead-time negotiation, which makes the licensed manufacturing operation commercially necessary — the workshop alone could not supply the specification volume. + +--- + +## The Licensing Structure + +The manufacturing operation at the outward system employs workers under local employment law, which is the relevant legal framework because the manufacturer owns the employment relationship. Kyoei's licensing agreement specifies production parameters, quality standards, and delivery terms. It does not specify employment conditions — those are the manufacturer's operational responsibility. + +The employment conditions at the manufacturing facility would not meet the Lattice Commission's labor standards for manufacturing operations if those standards applied to the facility's jurisdiction. They do not — the Commission's labor standards apply to Commission-registered enterprises operating within systems covered by the Commission's jurisdiction framework. The outward system where the manufacturer operates is a system with a Commission trade relationship but without full Commission jurisdiction coverage for labor regulation. + +Kyoei's legal team examined the labor standards question when the licensing agreement was established and concluded that Kyoei bears no Lattice Commission labor standards liability because the design company is not the employer and the facility is not in a covered jurisdiction. The analysis is technically correct. The conclusion it reaches — that Kyoei can sell products produced under working conditions it could not legally impose on its Kurashiki workers without incurring liability — is the result of careful jurisdictional selection rather than coincidence. + +The product documentation that accompanies mid-range pieces describes their origin as "manufactured to Kyoei Design specification." It does not describe the manufacturing facility's location or workforce arrangements. + +--- + +## Gameplay Relevance + +Kyoei Design is visible in the institutional and residential spaces of the east reach corridor — the furniture in offices, the joinery in corridors, the pieces that give Kurashiki's interiors their particular character. Relevant to investigations involving design industry economics, labor conditions, or jurisdictional arbitrage in manufacturing. + +The licensing structure is the investigative thread. The evidence requires identifying the licensee (in Kyoei's commercial registry filings), locating the manufacturing facility, and examining the labor conditions at that facility relative to Commission standards for similar work in covered jurisdictions. The gap between the conditions in Kurashiki and the conditions at the manufacturing site is not hidden — it is simply on the other side of a jurisdictional line that was chosen with that gap in mind. + +--- + +**Cross-References:** +- [Kurashiki](../star-systems/GJ-205/index.md) — Headquarters system; workshop; institutional client base +- [Kyoto Valley Estates](kyoto-valley-estates.md) — Kurashiki system neighbor; comparable east reach terroir brand +- [Mirai Entertainment](mirai-entertainment.md) — Kurashiki system neighbor; cultural parallel +- [Namsan Collective](namsan-collective.md) — East reach craft and cultural context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/kyoto-valley-estates.md b/wiki/corporations/kyoto-valley-estates.md index ee6556d22..04ff9f7ac 100644 --- a/wiki/corporations/kyoto-valley-estates.md +++ b/wiki/corporations/kyoto-valley-estates.md @@ -1,24 +1,98 @@ --- title: "Kyoto Valley Estates" -description: "Kyoto Valley Estates — regional specialty producer based in Kurashiki, east reach" +description: "Kurashiki-based premium beverage producer with named-estate positioning — specific valley terroir, provenance documentation for inward buyers, and estate boundary maps the company drew for itself" slug: kyoto-valley-estates category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kurashiki (GJ 205) tags: [terroir, east_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kyoei-design, mirai-entertainment, calloway-distillery] --- # Kyoto Valley Estates **Type:** Corporation — Regional Specialty Producer +**Also Known As:** Kyoto Valley, the Estates **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kurashiki (GJ 205) +**Scope:** East reach primary; inward corridor premium market secondary +**Headquarters:** Kurashiki (GJ 205) — 3-aperture hub, 3 hops from Gateway +**Classification:** Sub-Syndic specialty producer; provenance-designated beverage estate -Kyoto Valley Estates is a regional specialty producer operating out of Kurashiki (GJ 205). Details to be expanded. +--- + +## Overview + +Kurashiki's valley terrain — the elevated inland valleys on the primary habited world's temperate continent — produces a set of microclimates that agricultural scientists at the local university have studied at length and that wine producers have worked with for two centuries. Kyoto Valley Estates holds land across four of these valleys under named estate designations: Nishi, Higashi, Minami, and the founding Kyoto Valley proper. The wines produced from these estates carry provenance documentation that describes altitude, soil type, water source, harvest date, and fermentation parameters. They are taken seriously by buyers who take wine seriously, and they command prices that reflect the documentation's implied specificity. + +At inward corridor distribution points, Kyoto Valley's named estate wines appear alongside bottles from systems with longer-established reputations. They compete on the provenance documentation — the argument being that the specific terroir of Kurashiki's valleys is as distinctive and as worth preserving as anything the corridor offers, and that the documentation proves it. The argument is largely correct. + +--- + +## Origin + +Kyoto Valley Estates was established by a viticulturist who had trained on Ran before the emigration corridor to the east reach opened and who identified Kurashiki's valley terrain as having characteristics compatible with serious wine production — the altitude, the temperature swing between day and night during the growing season, the mineral-rich glacial runoff that fed the valley floor soils. The first plantings were experimental; the first commercial harvest was thirty-eight years ago. + +The named estate structure was introduced twelve years into operations, after it became clear that different valleys produced detectably different character in the wines grown in them. The Nishi estate, with its heavier clay soils, produced fuller-bodied expressions. The Higashi estate, on the valley's eastern slope with direct morning exposure, produced more aromatic wines. These differences were real and were documented in the winery's own technical records. + +The decision to formalize named estates rather than simply releasing wines under a single Kyoto Valley mark was commercial — named estates produce the provenance story that commands premium pricing, and premium pricing was the path to viability at the volumes a small highland operation could produce. + +--- + +## Operations + +**Estate holdings:** Four named estates across Kurashiki's highland valleys, totaling approximately 800 hectares under cultivation. The vineyards are managed by an agricultural team of twenty-three, with seasonal contractor support during harvest. Production volumes are modest — scarcity is a feature of the positioning, not a failure of ambition. + +**Production:** The winery facility at the Kyoto Valley estate proper handles all fermentation, aging, and bottling. The senior winemaker has been in the role for fourteen years and is the primary figure responsible for the technical quality the estates are known for. + +**Provenance documentation:** Each release comes with a certificate of origin that identifies the specific estate, the harvest year, altitude and soil classification, and the winery's assay of the wine's mineral composition. These documents are used by inward distributors to support premium pricing and by collectors to authenticate bottles in the secondary market. + +**Distribution:** East reach direct through the winery's own channels. Inward distribution through a premium importer at Ran who handles the Kyoto Valley mark across several inward markets. + +--- + +## Political Relationships + +**Kurashiki agricultural commission:** The commission oversees land use and water rights across Kurashiki's agricultural zones. The estates operate under water use agreements that are periodically reviewed. The commission's technical staff have visited the estates for water monitoring but have not conducted formal land boundary surveys. + +**East reach specialty producers:** Kyoto Valley is occasionally compared to Calloway Distillery as an example of east reach terroir products that have built inward corridor premium reputations. The comparison is flattering and the company does not discourage it. + +--- + +## The Estate Boundaries + +Named estate designations in viticulture imply that the wine comes from grapes grown within a defined geographic area with the characteristics that the estate name represents. Buyers who purchase Kyoto Valley Nishi estate wine are purchasing, in their understanding, wine from the heavy clay soils on the valley floor that produce the fuller-bodied character the Nishi mark is associated with. + +The estate boundary maps used in Kyoto Valley's provenance documentation were produced by the winery's own agricultural team, not by a regulatory body or an independent surveyor. The Lattice Commission has no formal terroir designation framework for the east reach corridor's beverage producing regions — the Commission's provenance standards for wine are inward-corridor standards that have not been extended to systems at Kurashiki's distance. + +The winery's agricultural team drew the boundaries to capture the valley areas that produce the characteristics associated with each estate. In the case of the Nishi estate, the boundary map includes approximately 60% land with the heavy clay soil profile that produces the documented character, and approximately 40% adjacent land with lighter, more sandy soils that were included in the boundary because they were convenient to farm as a single unit. The lighter soils produce wine that is acceptable but lacks the body that the Nishi mark implies. + +Volume years — years when demand exceeds premium-soil production — the blend ratio of heavy-clay to lighter-soil fruit in Nishi estate wines shifts. The provenance documentation does not change; the estate certificate for a Nishi wine describes the estate's defining characteristics accurately, since those characteristics are present in the estate as bounded. What the document does not disclose is the proportion of fruit in the bottle that exhibits those characteristics. + +The boundary maps are in the winery's agricultural records. No external party has reviewed them against a soil survey. + +--- + +## Gameplay Relevance + +Kyoto Valley Estates is a secondary east reach institution relevant to investigations touching provenance documentation, wine trade, and the economics of scarcity products. The estates appear in premium retail contexts and are referenced in collector and importer correspondence across the corridor. + +The boundary map question is the investigative thread. It requires accessing two sources: the provenance documentation (publicly filed with distributors) and the winery's internal agricultural records that show the estate boundary maps and the underlying soil survey data. The gap between what the boundary map claims and what the soil profile actually shows is documented in the winery's own records. A player working a provenance fraud case or an investigation into east reach food and beverage commerce standards will find this thread connected to the broader absence of a formal terroir designation framework for the east reach. + +--- + +**Cross-References:** +- [Kurashiki](../star-systems/GJ-205/index.md) — Headquarters system; estate land; valley terrain +- [Kyoei Design](kyoei-design.md) — Kurashiki system neighbor; east reach premium parallel +- [Mirai Entertainment](mirai-entertainment.md) — Kurashiki system neighbor; cultural context +- [Calloway Distillery](calloway-distillery.md) — North reach terroir parallel; comparable provenance brand + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/leerfeld-records.md b/wiki/corporations/leerfeld-records.md index 96ae72c84..73fb8b56f 100644 --- a/wiki/corporations/leerfeld-records.md +++ b/wiki/corporations/leerfeld-records.md @@ -1,11 +1,11 @@ --- title: "Leerfeld Records" -description: "Leerfeld Records — cultural content producer based in Confluent, west reach" +description: "Prestige compositional label at Confluent (GJ 395) — slow output, uncompromising standards, the west reach's reference point for serious long-form music" slug: leerfeld-records category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Confluent (GJ 395) @@ -16,9 +16,80 @@ cross_refs: [] # Leerfeld Records -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Compositional Music Label **Status:** Canonical -**Scope:** Regional — west reach operations +**Scope:** West reach corridor; limited cross-corridor distribution via Meridian **Headquarters:** Confluent (GJ 395) +**Currency:** Mark (Compact zone) +**Classification:** Sub-Syndic cultural enterprise; Compact-registered independent -Leerfeld Records is a cultural content producer operating out of Confluent (GJ 395). Details to be expanded. +--- + +## Overview + +Leerfeld Records releases, on average, four albums per year. Other labels of comparable size release forty. This is not an accident. The founding principle — stated plainly on the label's charter, now seventy years old, and not revised since — is that music made quickly sounds like it. Leerfeld does not make music quickly. + +The label operates out of Confluent, a west reach system known for its wine cooperative and its chemical manufacturing complex. Neither neighbor has anything to do with Leerfeld's sound, except that both represent the same regional disposition: patience as a production value. Grand Vide wines require years before release. Société Chimique's synthesis processes run on geological timescales by design. Leerfeld Records waits because the corridor waits, because the people who buy mark-denominated music in the west reach have learned to wait, and because the alternative is product that sounds like the hurry that made it. + +What Leerfeld records is long-form composition. Their catalog skews instrumental, though not exclusively. They have released vocal works when the right artist brought the right material. What they do not release is anything that sounds finished before it is finished — which is a description the label has offered of other labels' output at various points in its history, publicly, with names attached, in ways that have not been forgotten. + +--- + +## Origin + +The label was founded seventy years ago by Gert Leerfeld, a composer who had spent fifteen years as a session musician at three different west reach labels and had concluded, after the third, that the production cycle in commercial music was structurally incompatible with compositional work. Session music is hired by the measure. Composition is made in months. The mismatch between how labels operate and how serious music is made had been obvious to Gert Leerfeld for fifteen years before he decided to address it by building a label around the music's timeline rather than the commercial one. + +The original Leerfeld roster was three artists. All three were composers who had been dismissed from or frustrated out of major corridor labels for missing deadlines. All three delivered their first Leerfeld releases late. Gert Leerfeld did not release those albums until the artists were satisfied. The first three releases came out eighteen months after the label was founded. Two of them were the best-reviewed west reach albums of that decade. + +Gert Leerfeld died forty years ago, a Perpetual-class citizen who had lived long enough to see the label outlive the commercial competitors who had been certain it would fail. His heirs hold the charter. The label's head of A&R, Maret Voss, has held the position for twenty-two years and intends to hold it until she does not. + +--- + +## Operations + +**A&R:** Leerfeld does not actively recruit. Artists approach the label or come through the network of longstanding relationships the label has maintained with music programs at Confluent's institutions and the broader west reach corridor. Maret Voss attends approximately six performances per year. She signs approximately one new artist per two years. The selectivity is not affectation — it is the operational constraint of a label that will spend three years on a single record and cannot afford to spend three years on a record that was not worth making. + +**Production:** Leerfeld owns one studio at Confluent and maintains a remote recording arrangement with a facility at Ostmark. Sessions are scheduled without end dates. Artists are not asked when they will be finished; they are asked what they need. The studio's technical director has worked with every artist on the current roster and most of the artists on the historical one. + +**Distribution:** Meridian-mediated, with standard west reach content classification through Compact protocols. Physical distribution (pressed media for collectors' market) is handled by a third-party distributor operating across the west reach corridor. Cross-corridor Meridian distribution exists for the label's back catalog; new releases are classified under Compact jurisdiction for the first year. + +**Revenue:** The label's revenue model is deliberate: high per-unit price, low volume, stable catalog income. Albums that are fifteen years old still sell. The Leerfeld back catalog is the label's financial foundation — backlist earnings allow the label to front production costs that would bankrupt a higher-volume operation. + +--- + +## Reach Position + +Leerfeld Records is not large. Its cultural authority in the west reach corridor is disproportionate to its size. When a west reach artist is described as "Leerfeld-tier," the meaning is understood: they make work that does not compromise, at a pace that does not rush. The description is used as frequently to dismiss commercial artists as to praise uncommercial ones. + +The label has a hostile relationship with the corridor's larger entertainment infrastructure on the principle that the infrastructure's incentives are wrong. Leerfeld does not license music for commercial placement. It does not participate in streaming-first release strategies. It does not sign artists to multi-album contracts that specify delivery timelines. These positions have been stated in public, repeatedly, and with the particular confidence of an institution that has survived long enough to watch the positions it criticized become the standard problems of the industry it declined to join. + +--- + +## Political Relationships + +**Compact cultural institutions:** Leerfeld is one of the small number of west reach cultural enterprises that the Compact's cultural policy apparatus cites when asked what Compact-zone music sounds like. The label does not seek this relationship and does not trade on it, but neither does it refuse the citations. The net effect is that Leerfeld's reputation underwrites the Compact's aesthetic self-description more than either party discusses in commercial terms. + +**Meridian:** Cross-corridor distribution is licensed to Meridian with the longest-duration contracts the label maintains with any partner. The contracts include unusual terms — Leerfeld retains unilateral delay authority for new releases — that Meridian has accepted because the back catalog cash flow is steady and the new-release volume is small enough to absorb the scheduling irregularity. + +**Confluent music program:** Leerfeld maintains consulting and guest-instructor relationships with the music program at Confluent's principal conservatory. Three current Leerfeld artists trained there. The A&R pipeline is not formalized — Maret Voss is simply visible at performances — but the relationship is the label's single most important source of new compositional talent. + +--- + +## Silence Topic + +What Leerfeld Records does not discuss: the artists who left. + +Three artists in the label's history have signed, produced work over extended periods, and then parted from the label without a final release. The circumstances differ in each case. The label has not discussed any of them. The departed artists have variously described the experience as liberating, complicated, and something they prefer not to talk about. Maret Voss's standard response to questions about former artists is that she wishes them well and that the label's business is its current roster. This is accurate. It is not complete. + +--- + +**Cross-References:** +- [Vins de Grand Vide](vins-de-grand-vide.md) — corridor neighbor; shared cultural register +- [Société Chimique du Vide](societe-chimique.md) — co-located at Confluent +- [Confluent (GJ 395)](../star-systems/GJ-395/index.md) — headquarters system; Compact-zone cultural corridor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/lowlands-consumer.md b/wiki/corporations/lowlands-consumer.md index 298dff8f1..f2c64c25f 100644 --- a/wiki/corporations/lowlands-consumer.md +++ b/wiki/corporations/lowlands-consumer.md @@ -1,24 +1,95 @@ --- title: "Lowlands Consumer" -description: "Lowlands Consumer — consumer goods manufacturer based in Dokkum, west reach" +description: "Dokkum-based west reach consumer goods manufacturer — household, personal care, and basic industrial supplies distributed across Mark-currency systems, and a cleaning concentrate under informal safety review for fourteen months" slug: lowlands-consumer category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Dokkum (GJ 506) tags: [commodity_branded, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [maas-rijn-entertainment, nordhavn-financial, norrland-woodcraft] --- # Lowlands Consumer **Type:** Corporation — Consumer Goods Manufacturer +**Also Known As:** Lowlands, LC Products **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Dokkum (GJ 506) +**Scope:** West reach corridor primary; Mark-currency systems secondary +**Headquarters:** Dokkum (GJ 506) — 3-aperture hub, 4 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; everyday commodity distribution -Lowlands Consumer is a consumer goods manufacturer operating out of Dokkum (GJ 506). Details to be expanded. +--- + +## Overview + +Lowlands Consumer is the west reach corridor's dominant household goods supplier — present in commissary kitchens, maintenance lockers, and domestic supply cabinets from Dokkum outward across the Mark-currency systems. The catalog covers three major categories: household cleaning products under the Schoon mark, personal care basics under the Zorg line, and industrial maintenance supplies under the Technics brand. None of these are prestige products. They are staples, priced to move and packaged for durability in the transport conditions the west reach corridor involves. + +The company's competitive advantage is logistical rather than product-driven. Lowlands has the most extensive west reach distribution network of any consumer goods manufacturer operating in the corridor, built over thirty years of route development, depot establishment, and supply agreement cultivation. Clients who switch away from Lowlands do not lose a better product; they lose predictable delivery windows and a restocking relationship they know works. + +--- + +## Origin + +Lowlands Consumer was founded at Dokkum thirty-one years ago by a logistics entrepreneur who had been operating a freight routing service and noticed that west reach systems were consistently under-supplied with basic consumer goods despite the freight capacity to support better supply. The founding insight was that the gap was in aggregation — no single goods producer had bothered to serve the full west reach corridor, so each system was sourcing from multiple suppliers with inconsistent availability. + +The founding operation was a distribution company before it was a manufacturing company. Lowlands began by aggregating goods from multiple producers under its own logistics umbrella, then progressively brought production in-house as it developed sufficient demand certainty to justify manufacturing investment. The Schoon cleaning line was the first in-house product, introduced twelve years into the company's existence. Zorg and Technics followed. + +--- + +## Operations + +**Product lines:** The Schoon cleaning catalog covers approximately forty SKUs — surface cleaners, degreasing agents, sanitation concentrates, and specialty cleaning products for industrial applications. The Zorg line covers personal care basics: soaps, hygiene products, first aid supplies. Technics covers industrial maintenance consumables: lubricants, surface treatments, and specialty compounds for mechanical and environmental applications. + +**Manufacturing:** Two production facilities at Dokkum and one at Nyrheim. The Nyrheim facility handles Technics production exclusively; the Dokkum facilities handle Schoon and Zorg. + +**Distribution network:** Seventeen depot locations across the west reach corridor, with delivery schedules calibrated to the gate transit patterns of the corridor's aperture network. The depot network is the company's most capital-intensive asset and its primary barrier against competition. + +**Workforce:** Approximately 280 people across production, logistics, depot operations, and administration. + +--- + +## Political Relationships + +**West reach retail and commissary networks:** Lowlands' primary commercial relationships are with the station commissaries, retail operations, and institutional buyers who stock its products. The supply agreement terms favor buyers who consolidate their sourcing through Lowlands — exclusivity incentives and volume pricing that make splitting supply across multiple providers economically inefficient. + +**Lattice Commission consumer safety desk:** Consumer goods that include chemical compounds — cleaning products, industrial supplies — are subject to Commission safety standards for labeling, dilution guidelines, and exposure limits in enclosed spaces. Lowlands maintains a compliance file with the Commission's west reach consumer safety desk and submits product documentation as required. + +--- + +## The Assessor Correspondence + +Fourteen months ago, a Lattice Commission safety assessor at the west reach desk initiated a review of one of Lowlands Consumer's products — the Schoon Industrial Concentrate, a high-strength cleaning agent sold primarily to station commissaries and maintenance operations for dilution into working-strength cleaners. The review was initiated after a station maintenance supervisor submitted a query to the Commission's technical assistance service about safe dilution ratios for enclosed-space use. + +The assessor's preliminary finding, documented in correspondence to Lowlands Consumer's compliance team, was that the dilution instructions printed on the Schoon Industrial Concentrate label produce a working solution that, in enclosed spaces with standard station air exchange rates, generates aerosol concentrations that exceed the Commission's exposure threshold for continuous occupational exposure. The instructions are not dangerously wrong — the margin is not large — but the assessor's assessment is that label revision and revised dilution guidance are indicated. + +Lowlands Consumer's compliance team has been engaged in a process of providing clarifying documentation. Three rounds of correspondence have occurred over fourteen months. The first response provided the testing methodology the company used to establish the dilution instructions. The second provided additional data from a different testing methodology showing results closer to threshold. The third requested clarification of the specific testing parameters the assessor had used. The correspondence process has not produced a formal Commission finding, a product recall, or a label revision order — it has produced a discussion. + +The product continues to be sold with the current label. The compliance team's internal position is that the assessor's preliminary finding is not a final determination and that the company's obligation to respond does not constitute an obligation to act on preliminary findings before they are finalized. This is a technically defensible reading of the process. + +--- + +## Gameplay Relevance + +Lowlands Consumer is ambient west reach commercial infrastructure — present wherever basic goods distribution is relevant, useful as background texture for west reach station environments. + +The assessor correspondence is the investigative thread. It is a formal regulatory record — the Commission assessor's preliminary finding and the three rounds of correspondence are in the Commission's safety desk files and in Lowlands Consumer's compliance records. The gap between the preliminary finding fourteen months ago and the absence of any label change is the story. A player working a workplace exposure incident at a station using Schoon Industrial Concentrate, or investigating consumer safety enforcement practices in the west reach, will find this thread through the Commission's correspondence archive. The station maintenance supervisor who submitted the original query to the Commission's technical assistance service is an accessible source; their query is in the public correspondence record, and they have no relationship with Lowlands Consumer that would inhibit them from discussing what they observed. + +--- + +**Cross-References:** +- [Dokkum](../star-systems/GJ-506/index.md) — Headquarters system; primary manufacturing and logistics base +- [Maas Rijn Entertainment](maas-rijn-entertainment.md) — Dokkum system neighbor; west reach institutional context +- [Nordhavn Financial](nordhavn-financial.md) — West reach financial context; Nyrheim corridor +- [Norrland Woodcraft](norrland-woodcraft.md) — West reach craft parallel; Nyrheim system +- [Kellervolk](kellervolk.md) — West reach institutional neighbor; Nyrheim corridor context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/luanda-fabrication.md b/wiki/corporations/luanda-fabrication.md index 1b2d3a304..5e86d3cc0 100644 --- a/wiki/corporations/luanda-fabrication.md +++ b/wiki/corporations/luanda-fabrication.md @@ -1,24 +1,98 @@ --- title: "Luanda Fabrication" -description: "Luanda Fabrication — precision technology manufacturer based in Matamba, south reach" +description: "Portuguese-Angolan precision substrate manufacturer at Matamba (GJ 884) — custom-spec electronic assemblies for south_reach technology firms, operating in the same system as the corridor's premier trade law firm" slug: luanda-fabrication category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 -scope: regional +updated: 2026-04-22 +scope: south_reach primary; specialist supply contracts to inner corridor secondary faction_type: economic headquarters: Matamba (GJ 884) tags: [tech_premium, south_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ferreira-monteiro, durban-engineering, cygni-combines] --- # Luanda Fabrication -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Substrate and Custom Electronics Assembly +**Also Known As:** Luanda Fab, LF **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Matamba (GJ 884) +**Scope:** South_reach electronics sector primary; inner corridor specialist contracts secondary +**Headquarters:** Matamba (GJ 884) — 3-aperture junction, 5 hops from Gateway +**Classification:** Sub-Syndic technology manufacturer; tier-one supply chain specialist -Luanda Fabrication is a precision technology manufacturer operating out of Matamba (GJ 884). Details to be expanded. +--- + +## Overview + +Before a sensor or a navigation instrument or a communications relay can perform its specified function, someone has to fabricate the physical substrate on which its electronic architecture lives. That is Luanda Fabrication's work: precision substrate manufacturing, custom electronic assemblies, and the tolerance-grade production capability that south_reach technology firms need but cannot cost-justify building in-house when one manufacturer can serve the entire corridor. + +Luanda Fab occupies a position in the south_reach electronics supply chain that is structurally load-bearing and commercially invisible. The monitoring systems that Durban Engineering installs at extraction sites contain Luanda-manufactured substrates. The companies whose names appear on the finished products are generally better known than the manufacturer of the layer beneath. Luanda prefers it this way. Client confidentiality is a commercial proposition in substrate manufacturing: clients design products around your capabilities, and they share proprietary specifications to do so. An indiscreet supplier loses clients and cannot recover the trust. + +--- + +## Origin + +The founding generation came from the same Portuguese-Angolan emigration cohort as the Ferreira and Monteiro families — Matamba's wave_2 settlement included a significant community with deep roots in Angola's manufacturing tradition, which had been rebuilding throughout the period preceding the expansion wave. The founders of Luanda Fabrication were electronics manufacturing specialists, not lawyers, and their founding proposition was complementary to Ferreira Monteiro's in a practical sense: the law firm was addressing the institutional gap in cross-framework trade; the fabrication operation was addressing the supply chain gap. + +The specific gap: south_reach technology firms were importing precision substrates from east_reach manufacturers at transit-cost premium. The substrates themselves were not technically beyond local production capability — the founding cohort had the skills and the equipment. The barrier was scale and specialization. Individual south_reach electronics firms were too small to justify in-house substrate production. Luanda Fabrication was founded as the shared substrate manufacturer for the corridor's technology sector: one facility with the production capability to serve multiple clients, distributing the capital cost across a client base that benefited collectively from not needing to build and maintain their own. + +The founding relationship with what would become Ferreira Monteiro was practical from the start. The law firm drafted the supply contracts and arbitrated the inevitable specification disputes. That relationship has remained continuous since the founding period — FM is still Luanda's legal counsel of record, which means the firm has handled four decades of Luanda's commercial documentation and knows the specifics of its supply relationships in more detail than most commercial law firms know their clients. + +--- + +## Operations + +**Substrate manufacturing:** Precision circuit board and electronic substrate fabrication at tolerances specified by client designs. Luanda does not design products; it manufactures to customer specifications with process consistency that justifies the tech_premium designation. The facility maintains a documentation trail that allows any substrate batch to be traced to its production parameters, calibration records, and material sourcing. This traceability is a significant selling point for clients whose own product certifications require supply chain documentation. + +**Custom assembly:** Beyond bare substrates, Luanda provides custom electronic module assembly — integrating components supplied by the client or sourced to Luanda's specification, assembled under quality-control processes the client defines. The assembly capability serves clients who need complete modules rather than raw substrates, and who want production close to their own facilities to reduce transit risk and schedule uncertainty. + +**Supply chain position:** Luanda sources component inputs from multiple suppliers. East_reach manufacturers — Cygni Combines being the largest — supply a significant fraction of the active components integrated into Luanda assemblies. This creates commercial dependency on east_reach supply chains that Luanda manages through diversification but cannot eliminate. The transit cost of east_reach components to Matamba is a constant competitive pressure on margins. + +**Matamba facility:** Located in the transit node infrastructure that makes Ferreira Monteiro's cross-corridor practice viable. The facility employs approximately 150 people, with a significant proportion of engineering specialists recruited from across the south_reach. The salary premium Luanda offers for calibration and process engineering talent is above what most regional manufacturers can match, and the stability of long-term supply contracts makes employment attractive enough to sustain it. + +--- + +## Political Relationships + +**Ferreira Monteiro:** Co-located at Matamba, and Luanda's legal counsel of record for the past forty years. The relationship is institutionally close in ways that go beyond standard client-firm dynamics. Ferreira Monteiro's managing partners are aware of the specifics of Luanda's supply contracts, quality certification framework, and key client relationships in sufficient detail to provide substantive commercial advice rather than generic legal services. The depth of the firm's institutional knowledge about Luanda's operations is greater than Luanda's own clients possess. + +**Durban Engineering:** The most significant direct client relationship. Durban's monitoring system substrates are manufactured at Luanda under a long-standing supply agreement, the specification document for which has been in place for over twenty years through three revisions. Durban's engineering team knows Luanda's facility and processes well. The relationship has the efficiency of a long partnership and the latent tensions that come with dependency — Durban cannot easily change substrate suppliers without recertifying its own products. + +**Cygni Combines:** Component supply relationship. Cygni's east_reach electronics manufacturing capacity provides a meaningful fraction of the active components Luanda integrates into assemblies. Luanda has periodically explored alternative suppliers for specific component categories; Cygni's combination of component quality and transit cost is consistently the outcome of those explorations. The commercial relationship is transactional rather than strategic, which suits both parties. + +--- + +## What They Don't Talk About + +Fifteen years ago, the primary extraction source for a proprietary alloy specified in Luanda's flagship substrate formulation depleted below commercial viability. The alloy was named by specific designation in supply contracts with Durban Engineering and two other south_reach technology clients. It had been specified precisely because its thermal stability characteristics — consistent performance across the operating temperature range typical of extraction-environment electronics — were part of those clients' own product certifications. + +Luanda sourced a functionally equivalent replacement alloy from a different provider. The replacement performs within the tolerance ranges specified in the supply contracts. The thermal stability characteristics are nearly identical. The engineering case for equivalence is strong. + +The certification documentation continues to specify the original alloy by name. This was a deliberate choice. Notifying clients of the material substitution would have required renegotiating supply contracts, potentially triggering re-certification of the clients' own products, and disclosing a supply chain vulnerability that competitors would use. The legal assessment at the time — delivered verbally and not retained in any file — was that equivalence could be argued if the question were ever raised. + +Ferreira Monteiro drew up the original supply contracts. The firm also handled the legal documentation for the extraction site closure fifteen years ago. The senior partner who managed both matters is still active at the firm. What she understands about the relationship between those two events has not been recorded in any document that either institution retains. + +--- + +## Gameplay Relevance + +Luanda Fabrication is a supply chain entry point. A player tracing the provenance of south_reach electronics — trying to understand what is inside a specific device and where its components came from — will eventually reach Luanda if the device was assembled in the corridor. The documentation trail Luanda maintains is comprehensive in the forward direction; the alloy substitution is a gap going back fifteen years, visible only to someone who compares current batch certifications against the original specification documents that Durban and the other clients hold in their own archives. + +The Ferreira Monteiro relationship is the second thread. The law firm knows things about Luanda that Luanda's clients do not, and those things exist as institutional knowledge in the firm's case records rather than in any document Luanda itself controls. A player who has access to both sets of records and understands what they are looking at is facing a documentation discrepancy that has been maintained for fifteen years without being caught. + +--- + +**Cross-References:** +- [Matamba](../star-systems/GJ-884/index.md) — Headquarters system; south_reach junction node +- [Ferreira Monteiro](ferreira-monteiro.md) — Legal counsel of record; co-located; holds institutional knowledge of supply chain +- [Durban Engineering](durban-engineering.md) — Primary client; long-term substrate supply agreement +- [Cygni Combines](cygni-combines.md) — Primary component supplier; east_reach supply relationship + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/lusaka-advisory.md b/wiki/corporations/lusaka-advisory.md index 25e90054c..47dbe9c24 100644 --- a/wiki/corporations/lusaka-advisory.md +++ b/wiki/corporations/lusaka-advisory.md @@ -1,24 +1,80 @@ --- title: "Lusaka Advisory" -description: "Lusaka Advisory — premium service provider based in Zenzele, south reach" +description: "South reach commercial strategy firm at Zenzele (GJ 1111) — extraction industry positioning, contract pre-negotiation, and the kind of advice that keeps disputes out of Ferreira Monteiro's dockets" slug: lusaka-advisory category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Zenzele (GJ 1111) tags: [service_premium, south_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ferreira-monteiro, baektu-mining-alliance] --- # Lusaka Advisory -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Commercial Strategy and Advisory Firm **Status:** Canonical -**Scope:** Regional — south reach operations +**Scope:** South reach corridor; extraction industry focus **Headquarters:** Zenzele (GJ 1111) +**Currency:** Tractus +**Classification:** Sub-Syndic service enterprise; partnership structure -Lusaka Advisory is a premium service provider operating out of Zenzele (GJ 1111). Details to be expanded. +--- + +## Overview + +Ferreira Monteiro handles commercial disputes in the south reach once they have become disputes. Lusaka Advisory works on the same problems before they reach that stage. The distinction sounds modest. The economics of it are not: Ferreira Monteiro's arbitration proceedings are expensive and slow, measured in months of partner time and the accumulated costs of two parties in conflict. A Lusaka engagement runs shorter and costs less, and the outcome — a contract structure that both parties can live with, a resource allocation that does not create the friction that produces arbitration — does not appear in any formal record. Commercial problems that do not become disputes are invisible. Lusaka Advisory's best work is invisible. + +The firm operates at Zenzele, where Baektu Mining Alliance and Umoja Freight between them employ a significant fraction of the south reach corridor's extraction and logistics workforce. These are the industries Lusaka knows best — not because the firm has an ideological position on extraction, but because extraction generates the most contract complexity in the south reach. Mining allocations, freight agreements, resource processing contracts, community impact arrangements, labor agreements with workforces that have increasingly sophisticated negotiating capacity: the Zenzele economic environment produces, at any given time, more advisory work than the firm's sixteen partners can comfortably handle. + +--- + +## Origin + +The firm was founded thirty-five years ago by three commercial attorneys who had spent between ten and twenty years in Ferreira Monteiro's dockets on opposite sides of south reach extraction disputes. The founding insight was practical: the disputes were not inevitable. They arose from contract structures that left critical terms ambiguous, from resource allocation agreements that did not account for contingencies, from community arrangements that satisfied parties at signing without addressing the conditions that would change in year three or year seven. The attorneys who became Lusaka's founders had spent their careers resolving these problems after the fact and had concluded that resolving them before the contract was signed was possible, less expensive, and apparently not the business any existing firm was in. + +Two of the three founders are still partners. The third retired fifteen years ago to Ran, citing the south reach's weather without further specificity. The firm has grown from three founding partners to sixteen, adding practice areas as the south reach's commercial environment has grown more complex. The extraction focus has remained constant. + +--- + +## Operations + +**Practice areas:** Resource contract structuring is the core practice — advising mining operations, processing facilities, and freight logistics providers on contract terms that distribute risk clearly, account for contingency conditions, and do not create the ambiguities that produce disputes. Community relations advisory is the second major practice: the south reach's extraction systems have established communities whose relationship with the extraction operations ranges from economically symbiotic to explicitly adversarial, and navigating that relationship before it reaches formal grievance stages is a discrete skill. Labor relations advisory is the third practice, addressing the increasing organizational sophistication of extraction workforce communities, particularly in systems where Guardians of Autonomy chapters have developed effective negotiating frameworks. + +**Clients:** Extraction operations, freight logistics companies, processing facilities, and the community governance structures that negotiate with them. The firm represents both corporate clients and, on separate engagements, community interests — maintaining internal walls between these practice streams that the firm considers professionally adequate. + +**Engagement model:** Retained advisory for ongoing relationships, project engagement for specific contract negotiations, and emergency advisory for clients who discover, mid-negotiation, that their position is weaker than they believed. The emergency advisory rate is higher and the firm does not apologize for this. + +--- + +## What They Don't Talk About + +The walls between Lusaka's corporate and community practice streams are real. The information from one engagement does not transfer to the other. What does transfer, over time, is pattern knowledge: the firm's partners, collectively, know which corporate clients negotiate in which ways, where the pressure points are, what a given community organization is likely to accept at what stage of a negotiation. This knowledge is not shared between engagement teams. It is also not compartmentalized in any meaningful way — it lives in the partners' heads, informing how they structure advice on each side without crossing the formal engagement boundary. + +Two senior partners have had this explained to them by a Ferreira Monteiro arbitrator reviewing a dispute where both sides had previously retained Lusaka. The explanation did not result in formal findings. The partners' response was to update their conflict-of-interest protocols. The protocols now require disclosure of prior engagements with opposing parties. They do not require disclosure of accumulated pattern knowledge about how those parties negotiate, because that knowledge is professional experience rather than privileged information and is not subject to the same disclosure requirements. + +The firm's cross-engagement reference ledger — an internal partner-only document maintained since the 2052 restructuring — is the documentary anchor. It records, for each active and historical engagement, the other engagements the firm has taken touching the same counterparties, sectors, or negotiating patterns. The ledger's stated purpose is conflict identification; its actual function is to let partners consult each other's histories when structuring new engagements. The Ferreira Monteiro arbitrator who raised the earlier explanation did not know the ledger existed. A subsequent partner-retreat memo (2058) explicitly declines to present the ledger in any dispute forum, on advice from the firm's outside counsel that the ledger's contents could be characterized as evidence of coordinated advantage across ostensibly walled engagements. The memo is held in the firm's partner-only archive at the Lusaka office. A copy went to outside counsel and is subject to standard legal privilege. + +--- + +## Gameplay Relevance + +Lusaka Advisory is a source and a threat in any investigation touching south reach commercial relationships. A player who needs to understand the contract structure of a resource agreement — what terms were negotiated, where the pressure points are, why a particular arrangement was structured the way it was — can find that understanding at Lusaka if they can access a partner with the relevant engagement history. Partners are professionally discreet; they are not personally hostile. The right relationship, or the right leverage, opens the right conversation. + +The dual-client pattern knowledge is the concealed thread. An investigator who can demonstrate that Lusaka's partners have pattern knowledge of both parties in a specific dispute — not through formal disclosure but through the accumulated expertise of decades of south reach practice — is in a position to challenge the integrity of advice given on one or both sides. The challenge does not require proving a formal breach. It requires establishing that the advice could not have been independent, which is a different and potentially more demonstrable claim. + +--- + +**Cross-References:** +- [Ferreira Monteiro](ferreira-monteiro.md) — south reach commercial arbitration; the formal process Lusaka's work is designed to precede +- [Baektu Mining Alliance](baektu-mining-alliance.md) — primary corridor client; extraction industry anchor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/lusitanian-glass.md b/wiki/corporations/lusitanian-glass.md index e95a2b478..67d6c33fd 100644 --- a/wiki/corporations/lusitanian-glass.md +++ b/wiki/corporations/lusitanian-glass.md @@ -1,24 +1,96 @@ --- title: "Lusitanian Glass" -description: "Lusitanian Glass — heritage craft manufacturer based in Caparica, south reach" +description: "Caparica-based heritage glass workshop producing hand-blown architectural and luxury tableware — a marginal but revered operation, and three flagship pieces in institutional collections whose design credit was quietly reassigned" slug: lusitanian-glass category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Caparica (GJ 1002) tags: [heritage_craft, south_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [iberian-standard-foods, alentejo-partners, destilaria-confluencia] --- # Lusitanian Glass **Type:** Corporation — Heritage Craft Manufacturer +**Also Known As:** Lusitanian, the Glass House **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Caparica (GJ 1002) +**Scope:** South reach corridor primary; limited inward institutional commissions secondary +**Headquarters:** Caparica (GJ 1002) — 3-aperture hub, 4 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; heritage craft glass production -Lusitanian Glass is a heritage craft manufacturer operating out of Caparica (GJ 1002). Details to be expanded. +--- + +## Overview + +Glass-blowing is a craft that survived corridor travel because it requires little physical equipment beyond a furnace and the technique of the person at the pipe. The founding generations at Caparica brought both, and Lusitanian Glass is what three centuries of their descendants have built from the inherited tradition. The studio produces hand-blown architectural glass for institutional commissions — window panels, partition screens, decorative load-bearing elements for interior specifications — and a tableware line for the premium domestic and hospitality market. + +In the south reach corridor, Lusitanian Glass occupies a position similar to Calloway Distillery's in the north reach: a heritage product produced by skilled people in a specific place, with a provenance story that sustains premium pricing inward. The pieces in institutional settings at Caparica are known. Collectors in the inward corridor systems who buy Lusitanian tableware know the studio's history. The brand carries weight beyond what a strictly commercial analysis would predict. + +--- + +## Origin + +The glass-blowing tradition at Caparica descends directly from the founding generation's craft knowledge, transmitted through a sequence of master-apprentice relationships that has never fully broken. The Lusitanian Glass workshop was formally incorporated three generations ago, when what had been a family craft operation became large enough to require a legal entity for institutional commission management and export documentation. + +The incorporating generation made the architectural glass line the studio's primary commercial focus — the commission work that institutions paid reliably for and that could sustain the furnace and the people around it. The tableware line was a secondary offering, initially sold locally and eventually distributed inward through a premium goods importer who understood the market for authenticated craft objects. + +The studio's physical location, in a low stone building near Caparica's original settlement center, is treated as part of the heritage. The furnace has been rebuilt three times but occupies the same footprint as the original. The workshop's output is always described in relation to this continuity. + +--- + +## Operations + +**Architectural glass:** The primary revenue line. Institutional commissions for window panels, decorative screens, and specialty glass fittings. Projects of this scale require extended lead times — months of design consultation, prototype production, and phased fabrication. The studio maintains a commission queue of eighteen to twenty-four months. + +**Tableware:** A secondary line produced in smaller volumes, sold through the studio's own retail point and through inward distribution. The tableware pieces carry the studio's mark and are documented in production records. Collectors and hospitality buyers purchase these at prices that reflect the craft investment. + +**Economic reality:** The furnace, the skilled artisans, and the building cost more to sustain than the production volumes can straightforwardly support. Lusitanian Glass is viable because institutional commission fees are substantial and because the studio's revenue is supplemented by a south reach arts foundation grant that the studio has held for eleven years. Without the grant, the furnace economics would require either significant volume expansion — incompatible with the craft positioning — or a significant price increase that the market might not support. The studio's current management team thinks about this regularly and discusses it with no one outside the studio. + +**Workforce:** Seven active artisans at various levels of the apprenticeship structure, three administrative and logistics staff, and the studio manager who serves as the primary point of contact for institutional clients. + +--- + +## Political Relationships + +**Caparica institutional community:** Lusitanian Glass has a long relationship with Caparica's civic institutions — a panel installed in the regional administrative building twenty years ago, work in the primary medical facility's public spaces, and pieces in the collections of several private foundations. These institutional relationships provide both commission revenue and the social network that sustains the studio's access to future commission opportunities. + +**South reach arts foundation:** The grant relationship is managed through annual applications and portfolio reviews. The studio's current application describes it as "sustaining an irreplaceable craft tradition in the south reach corridor," which is accurate. The foundation's assessment team has visited the studio twice in the past decade. + +--- + +## The Three Pieces + +Among the most frequently cited works in Lusitanian Glass's portfolio are three large-format architectural pieces produced eleven years ago for institutional commissions: a window panel installed at Caparica's primary legal institution, a partition screen in a financial house's client meeting suite, and a decorative element in a civic assembly space. All three are photographed in the studio's portfolio materials. All three are described in those materials as "Lusitanian Glass workshop" pieces. + +The three pieces were designed by an artisan who was employed at the studio at the time, under an employment agreement that assigned intellectual property rights in work produced during employment to the studio. The artisan contributed the original design concepts, the prototype development, and the majority of the technical decisions that give the pieces their distinctive character. The design credit in the studio's documentation was assigned to "the Lusitanian Glass workshop" rather than to the individual artisan — a practice the studio describes as standard for workshop production, where multiple people contribute to a finished piece. + +The artisan left the studio four years after the pieces were completed, following a period of conflict with the studio manager about compensation and recognition. The artisan's view is that the three pieces represent a significant individual creative contribution that should carry their name in any responsible account of the work. The studio's legal position, reviewed when the artisan raised the issue informally after leaving, is that the employment agreement is clear and that the "workshop" credit practice is legally defensible. + +The artisan has not pursued the dispute formally. The studio has not changed its documentation. The three pieces continue to appear in portfolio materials, grant applications, and award submissions without individual attribution. + +--- + +## Gameplay Relevance + +Lusitanian Glass is a south reach heritage institution — relevant in investigations touching craft authenticity, intellectual property, and the economics of arts foundation grant dependency. The studio's pieces are ambient in Caparica's institutional spaces. + +The attribution dispute is the investigative thread. The evidence is in two places: the studio's documentation of the three pieces (in portfolio materials and the original commission contracts) and the artisan's own records of the design process (sketches, correspondence, prototype records from the employment period). The employment agreement is the legal document; the gap between what the agreement permitted and what the artisan's contribution consisted of is the story. The artisan is findable and is not bound by any nondisclosure agreement. + +--- + +**Cross-References:** +- [Caparica](../star-systems/GJ-1002/index.md) — Headquarters system; workshop; institutional clients +- [Iberian Standard Foods](iberian-standard-foods.md) — Caparica corridor neighbor; south reach commercial context +- [Alentejo Partners](alentejo-partners.md) — South reach agricultural parallel; Caparica system +- [Destilaria Confluência](destilaria-confluencia.md) — Caparica corridor neighbor; comparable heritage craft positioning + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/maas-rijn-entertainment.md b/wiki/corporations/maas-rijn-entertainment.md index aaa15aca0..ad74df0a4 100644 --- a/wiki/corporations/maas-rijn-entertainment.md +++ b/wiki/corporations/maas-rijn-entertainment.md @@ -1,24 +1,96 @@ --- title: "Maas Rijn Entertainment" -description: "Maas Rijn Entertainment — cultural content producer based in Dokkum, west reach" +description: "Dokkum-based west reach media production company — serialized entertainment, music recording, and an IP licensing portfolio built on rights whose original chain of title cannot survive close examination" slug: maas-rijn-entertainment category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Dokkum (GJ 506) tags: [cultural, west_reach, mark, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kellervolk, lowlands-consumer, ashwick-broadcasting] --- # Maas Rijn Entertainment **Type:** Corporation — Cultural Content Producer +**Also Known As:** Maas Rijn, MRE **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Dokkum (GJ 506) +**Scope:** West reach corridor primary; Mark-currency systems secondary +**Headquarters:** Dokkum (GJ 506) — 3-aperture hub, 4 hops from Gateway +**Classification:** Sub-Syndic entertainment enterprise; production and IP licensing -Maas Rijn Entertainment is a cultural content producer operating out of Dokkum (GJ 506). Details to be expanded. +--- + +## Overview + +Maas Rijn Entertainment is the west reach corridor's commercially successful production company rather than its culturally prestigious one — the studio that produces the serialized dramas people actually watch, the music releases that top regional charts, the entertainment programming that fills the broadcast hours after the commissioned cultural works have run. Kellervolk gets the awards; Maas Rijn gets the renewal orders. + +The company has operated at Dokkum for twenty-six years and has built its catalog through a combination of original production and acquisition. The acquisition side of the business — buying distribution rights, catalog holdings, and in several cases entire smaller companies — has been as significant to Maas Rijn's growth as original production. The company's internal description of its business emphasizes the catalog: it holds significant IP across the west reach's entertainment history, and licensing that IP to broadcasters, streaming services, and secondary distributors provides a revenue base that makes the production business's variable returns manageable. + +--- + +## Origin + +Maas Rijn Entertainment was founded by a pair of producers who had worked at different west reach broadcast operations and combined their contacts and production experience to establish an independent studio. The early years were spent developing a first-look relationship with a Dokkum broadcaster and producing serialized drama at modest budgets with reliable audience numbers. The original productions are still the most critically regarded work the company has done; the transition to scale changed the economics and the ambitions. + +The acquisition phase began fifteen years ago when a smaller west reach distributor — Maas Music Holdings — encountered financial difficulties after a licensing dispute. Maas Rijn acquired the company's assets, including a catalog of recorded music and distribution rights accumulated over the distributor's twenty-year existence. The acquisition resolved the distributor's creditor obligations and gave Maas Rijn its first significant catalog holding. Four subsequent acquisitions followed over the next decade. + +--- + +## Operations + +**Original production:** Eight to twelve productions in various stages of development at any time. Serialized drama is the primary format; music production and documentary programming are secondary. The production operation employs a core staff of thirty-two and contracts substantially for specific projects. + +**IP licensing:** The catalog licensing operation is managed by a dedicated team of six who handle rights clearances, licensing agreements, and secondary distribution negotiations. The catalog currently generates approximately 40% of total revenue, a proportion that has increased steadily over the past decade as catalog holdings have grown. + +**Acquisitions:** Maas Rijn's strategy has been to acquire distressed catalog holders — companies whose IP holdings are valuable but whose operations are not — and integrate the catalog into the licensing operation. The company does not typically retain the operating businesses. + +**Workforce:** Forty-five core employees, heavily weighted toward production and licensing functions. + +--- + +## Political Relationships + +**West reach broadcasting:** Maas Rijn's primary commercial relationships are with the west reach corridor's broadcast operations, which are the primary distribution channel for original productions and the largest single category of catalog licensees. The first-look relationship with the Dokkum broadcaster has been maintained, though renegotiated twice as the company's leverage has grown. + +**Kellervolk:** Maas Rijn and Kellervolk overlap in the west reach cultural production space and are occasionally in competition for the same distribution windows. The relationship is professionally managed and commercially competitive. Kellervolk does not regard Maas Rijn as a cultural peer; Maas Rijn does not regard Kellervolk as a commercial one. + +--- + +## What the Catalog Audit Would Find + +When Maas Rijn acquired Maas Music Holdings fifteen years ago, the acquisition agreement included a rights inventory — a list of the catalog assets being transferred, with representations from the seller about the validity of the rights. The acquisition team conducted what is described in the board minutes as a "business-level review" of the inventory: checking that the listed assets were what the seller described them as, without examining the underlying chain of title for each item. + +Maas Music Holdings had been in operation for twenty years at the time of the acquisition. It had accumulated its catalog through its own acquisitions and distribution agreements, some of which dated to the early west reach corridor period when rights documentation practices were informal. The Holdings company's records were not comprehensive; some agreements existed only in paper form in filing systems that had not been fully digitized. + +The Lattice Commission's IP standards require that commercial licensing of entertainment works be supported by a clear chain of title — documented evidence of an unbroken sequence of ownership from the original rights holder to the current licensor. Maas Rijn's licensing team has processed thousands of licenses from the acquired catalog without conducting chain-of-title reviews on each item. + +A systematic chain-of-title audit of the catalog would find at least six active licensing income streams — identified by Maas Rijn's most experienced rights manager, who has flagged these informally to management — where the underlying documentation cannot demonstrate a complete ownership chain. In three of these cases, the issue is that the original creator's assignment agreement has been lost. In two cases, the assignment agreement exists but was signed by someone who may not have had authority to assign the rights. In one case, the west reach broadcaster who held the original distribution rights before the Holdings acquisition appears in the chain of title without a documented assignment to Holdings. + +The licensing income from these six streams flows without interruption. The risk that a rights claimant would surface is assessed by Maas Rijn's legal team as low, because the original rights holders are organizations that no longer exist or individuals who are not commercially positioned to pursue a claim. The assessment treats the claim risk as low. It does not address the question of whether the current licensing is valid. + +--- + +## Gameplay Relevance + +Maas Rijn Entertainment is relevant to west reach investigations touching IP rights, entertainment economics, and the relationship between catalog value and documentation quality. The company's products are ambient in west reach cultural contexts. + +The catalog chain-of-title question is the investigative thread. The evidence requires access to two sets of records: Maas Rijn's licensing database (which identifies the active income streams) and the underlying rights documentation for the flagged items (in the Holdings acquisition files). The rights manager who flagged the issue informally is an internal source with direct knowledge of which items are at risk. The original creator or rights holder records for the three lost assignment cases may exist in separate archives — broadcast registries, personal estates, or Commission copyright records from the Holdings company's operational period. + +--- + +**Cross-References:** +- [Dokkum](../star-systems/GJ-506/index.md) — Headquarters system; production base; broadcast relationships +- [Kellervolk](kellervolk.md) — West reach cultural competitor; overlapping distribution market +- [Lowlands Consumer](lowlands-consumer.md) — Dokkum system neighbor; west reach commercial context +- [Ashwick Broadcasting](ashwick-broadcasting.md) — Broadcast distribution relationship; first-look corridor + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/maison-cinq.md b/wiki/corporations/maison-cinq.md index f23ec395e..d19634ad7 100644 --- a/wiki/corporations/maison-cinq.md +++ b/wiki/corporations/maison-cinq.md @@ -1,24 +1,96 @@ --- title: "Maison Cinq" -description: "Maison Cinq — design and furniture manufacturer based in Sirius, core" +description: "Sirius luxury design house — institutional interiors for the Assembly and Syndic class, founded by five designers who understood that a capital city needs to look like one, and has spent 180 years making sure it does" slug: maison-cinq category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [design_heritage, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [the-registry] --- # Maison Cinq -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Luxury Design and Institutional Interiors +**Also Known As:** the Maison, Cinq **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; reach-wide institutional commissions secondary +**Headquarters:** Sirius (GJ 244A) — 5-aperture hub, 1 hop from Gateway +**Classification:** Sub-Syndic design enterprise; Assembly-adjacent institutional supplier -Maison Cinq is a design and furniture manufacturer operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +When the Concord Assembly consolidated its institutional presence at Sirius and began building the physical infrastructure of a permanent capital, someone had to decide what that infrastructure should look like. The Assembly's founding generation were administrators and diplomats, not designers. What they understood was that a governing body requires spaces that project continuity, authority, and cultural weight — and that these qualities do not emerge from a brief to "make it look official." They require considered aesthetics applied by people who understand what they are being asked to communicate. + +Maison Cinq was the answer to that understanding. Founded 180 years ago by five designers from Sirius's French-heritage community, the Maison built its practice on a simple proposition: the physical environment of governance is a form of governance. A chamber in which delegates feel transient produces different decisions than a chamber in which they feel permanent. A residence that projects its inhabitant's cultural significance produces different negotiations than a residence that is merely expensive. The Maison does not make things look impressive. It makes things feel true. + +The founding five's client list grew from Assembly chambers to Syndic delegation suites to private residences to commercial headquarters — anywhere that the intersection of significant wealth and significant institutional aspiration required a designed environment. The Maison has been the default answer to that brief at Sirius for four generations and has expanded, through referral, to commissions across the core and mid-reach corridor. + +--- + +## Origin + +The five founding designers — Aubert, Renard, Moreau, Pelletier, and Voss — met at the Sirius Institute of Applied Design in the Academy's second decade of operation. They were not particularly close. What they shared was a conviction, developed through different routes, that the dominant aesthetic of Assembly-era institutional design was performing the wrong kind of authority: heavy materials, deliberate grandeur, the visual language of permanence through mass. They argued, in a joint submission that the Institute published and the Assembly's design procurement office called "interesting but premature," that institutional authority communicated through restraint was more durable than authority communicated through accumulation. + +The submission's timing was fortunate. The Assembly's expansion program had just produced its first major design failure: a chamber complex that was universally described as imposing and almost immediately described as oppressive. The procurement office's response to the Maison's founding proposal, issued six months later, was less qualified than the first response had been. + +The Maison's first commission was a single delegation wing of the second Assembly expansion. The wing was completed three years late and substantially over initial budget estimates, both of which the founding five attributed to the procurement office's tendency to add requirements during construction and neither of which was attributed publicly to the designers. The finished space was regarded, immediately and unanimously, as the best thing in the building. + +--- + +## Operations + +**Institutional commissions:** The Maison's core practice is the design and fit-out of formal institutional spaces — Assembly chambers, delegation suites, government residences, ceremonial venues. Each commission is approached as a singular project; the Maison does not produce repeatable designs. The lead designer assigned to a commission works with the client through a briefing process that the Maison describes as "establishing what the space is for before deciding what it looks like," which some clients find clarifying and others find obstructive. + +**Private and commercial commissions:** A secondary practice serving the senior commercial class and high-ranking Assembly personnel. Private commissions are taken selectively; the Maison's criteria for accepting private work are not published, but an accepted commission signals something about the client's institutional standing that is understood in the relevant circles. Waiting lists for private commissions are measured in years. + +**Materials sourcing:** The Maison maintains supply relationships for specific materials — stone, textile, timber, fabricated metal components — across the Reach. Some of these relationships are proprietary in the sense that the Maison has exclusive arrangements with specific producers. Calloway Workshop at GJ 3325 has supplied bespoke joinery work for north-reach referral commissions; the relationship is occasional and unpublicized. + +**Studio:** Forty-eight design and production staff at Sirius, with a smaller project management office at Ran for mid-reach commissions. The studio is not open to visitors. The Maison conducts client briefings at client sites. + +--- + +## Political Relationships + +**The Concord Assembly:** The Maison's primary institutional client is also its most complicated political relationship. The Assembly's procurement committee controls the institutional commission awards that constitute the Maison's most significant revenue. Sitting members of the committee are not permitted to participate in procurement decisions that directly benefit entities with which they have financial relationships. The Maison does not have financial relationships with any sitting committee members that it is aware of. + +**The Sirius design and fabrication community:** The Maison works with a network of specialist fabricators and craftspeople across Sirius's manufacturing sector. These relationships are commercial and long-term; the Maison's reputation depends on the quality of execution as much as the quality of design, and it cannot separate the two. Several of these fabricator relationships have survived three generations of management changes on both sides. + +**The Registry at Groombridge:** The Registry's commercial intelligence files include a Maison Cinq profile maintained since the institution's second century. What the Registry knows about the Maison's client list, commission values, and procurement relationships is not a question the Maison has asked and is not something the Registry volunteers. The Registry's Standard Report does not cover design houses; the Deep Trace service, which any client could commission, would. + +--- + +## What They Don't Talk About + +The current chair of the Assembly's Capital Infrastructure Committee — the body that oversees institutional design commission awards — is Édouard Pelletier-Renard, a fourth-generation descendant of two of the Maison's five founders. He holds a minority equity stake in the Maison through a family trust structure established by his great-grandmother, which he has never divested and which he has never declared to the Committee's conflict-of-interest registry. + +Pelletier-Renard recuses from votes specifically about Maison Cinq's direct commission bids. What he participates in is the design brief formulation process — where the Committee establishes what qualities an institutional commission requires, which firms are considered technically capable, and which evaluation criteria matter. These decisions, made before any bid is submitted, shape which firms can compete and on what terms. The Maison's bid success rate on Assembly institutional commissions over the past twenty years is 71%. The next-highest rate among regular bidders is 34%. + +The Registry's commercial intelligence files contain the summary of this pattern. The Registry has not been asked to publish it. + +--- + +## Gameplay Relevance + +Maison Cinq is ambient prestige infrastructure — a player moving through Assembly chambers, Syndic delegation facilities, or the private residences of Sirius's institutional class will encounter the Maison's work as the physical environment they're operating in. The design is distinctive to a knowledgeable observer: the restraint, the specific material choices, the way sightlines are managed in rooms that are meant to be navigated rather than admired. + +The procurement conflict is the investigative thread. A player who discovers Pelletier-Renard's equity stake and connects it to the Capital Infrastructure Committee's brief-setting process has found something that the Assembly's ethics framework was not designed to catch — because the framework addresses direct votes, not the upstream influence that shapes which votes are necessary. The Registry's commercial intelligence files are the fastest route to the statistical summary of the Maison's commission success rate, which is the evidence that suggests the question before the player can confirm the answer. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; Assembly capital +- [The Registry](the-registry.md) — commercial intelligence file; procurement pattern analysis + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/makuti-consumer.md b/wiki/corporations/makuti-consumer.md index ba4bf8657..5344c8cf4 100644 --- a/wiki/corporations/makuti-consumer.md +++ b/wiki/corporations/makuti-consumer.md @@ -1,24 +1,96 @@ --- title: "Makuti Consumer" -description: "Makuti Consumer — consumer goods manufacturer based in Mwangaza, south reach" +description: "Mwangaza-based south reach consumer goods manufacturer — broad packaged goods range, white-label contract production, and a 'locally produced' marketing claim maintained by one qualifying production line representing 15% of actual volume" slug: makuti-consumer category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Mwangaza (GJ 693) tags: [commodity_branded, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [mwanga-media, iberian-standard-foods, kalahari-leatherworks] --- # Makuti Consumer **Type:** Corporation — Consumer Goods Manufacturer +**Also Known As:** Makuti, MC Products **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Mwangaza (GJ 693) +**Scope:** South reach corridor primary; limited broader distribution secondary +**Headquarters:** Mwangaza (GJ 693) — 2-aperture system, 5 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; packaged goods and white-label production -Makuti Consumer is a consumer goods manufacturer operating out of Mwangaza (GJ 693). Details to be expanded. +--- + +## Overview + +In the south reach corridor's outer systems, Makuti Consumer is the name on the packaging for a wide range of ordinary things — packaged food products, household supplies, basic personal care goods, commissary staples. The brand does not have a distinctive voice or a specific heritage claim. Its competitive argument is coverage: a broad product range, consistent availability across the south reach, and pricing calibrated to the corridor's economic realities. In the absence of a premium product story, presence is the strategy. + +The company's marketing materials emphasize its Mwangaza roots — the phrase "locally produced for south reach needs" appears on packaging and in distribution agreements. This regional identity argument matters to south reach institutional buyers who face constituency expectations about supporting local production, and it matters to distributors who can justify margin structures on goods positioned as regionally authentic rather than purely commodity-sourced. + +--- + +## Origin + +Makuti Consumer was established at Mwangaza eighteen years ago as an offshoot of an agricultural processing cooperative that had been operating informally for a generation. The cooperative's original activity was buying surplus harvest output from Mwangaza's farming zones and converting it into packaged goods for local consumption and limited corridor distribution. + +The transition to a corporate entity was driven by investment from a south reach commercial holding company that saw an opportunity to scale the cooperative's production and distribution capacity. The investment brought manufacturing equipment, expanded facilities, and a professional management team. The cooperative's founding members retained minority ownership; the holding company held majority control from the beginning. + +The "locally produced" identity claim was established during the early corporate period, when Mwangaza-origin goods genuinely constituted the majority of production. The operational reality has shifted since. + +--- + +## Operations + +**Product lines:** Packaged food products under the Makuti Home brand — preserved goods, grain-based staples, condiment lines. Household and personal care supplies under the Mwangaza Clean brand. Basic industrial consumables under a third mark primarily used for institutional supply contracts. Approximately 220 SKUs across these lines. + +**Own production:** The Mwangaza facility handles production for approximately fifteen percent of volume by units, including the product lines that are most visible in local retail and most commonly cited in marketing materials. These lines use Mwangaza agricultural inputs and can legitimately support origin claims. + +**Contract manufacturing:** The majority of Makuti's volume — approximately 85% by units — is produced by contract manufacturers at two south reach systems where production costs are lower. These manufacturers produce to Makuti's specifications, under Makuti's brand marks, and ship finished goods to Mwangaza for repackaging and redistribution in some cases, or directly to distributors in others. + +**White-label operations:** A secondary revenue line involves producing goods for other companies' brands at the Mwangaza facility. This is the facility utilization strategy that keeps the own-production operation economically viable despite its small share of total volume. + +--- + +## Political Relationships + +**South reach institutional buyers:** Makuti's institutional clients — station commissaries, government supply contracts, educational institution food service — are the buyers most sensitive to the "locally produced" positioning. Several of these contracts specify regional content requirements; Makuti has satisfied these requirements by pointing to the Mwangaza facility's existence and output. + +**Mwangaza government:** The south reach regional administration at Mwangaza has provided infrastructure support to Makuti on the basis of its status as a local employer. The company's economic contribution to the system is genuine — the Mwangaza facility employs people, purchases local agricultural inputs, and provides the commercial base that several support businesses depend on. The size of that contribution relative to the brand's revenue is the part that is not examined closely. + +--- + +## The Production Line That Makes the Claim Work + +The Lattice Commission's standards for regional content claims in consumer goods labeling require that goods making such claims be produced within the designated region — a simple geographic rule that does not specify a minimum share of the producer's total production. A company that produces one unit locally and a million units elsewhere can label the local unit "locally produced" without violating the standard. + +Makuti Consumer's "locally produced for south reach needs" labeling is applied to all products across all Makuti brands, including the lines produced by contract manufacturers at other systems. The legal basis for this practice is that the labeling claim refers to the company, not to a specific production batch — it is an identity claim about Makuti as a locally founded, locally headquartered enterprise with a facility at Mwangaza. + +The regulatory filing that supports this reading uses the Mwangaza facility's existence and certification as the evidence for regional status. The filing is accurate: the facility exists, is certified, and is locally operated. The filing does not disclose that this facility represents 15% of actual production volume. + +Makuti's legal team reviewed the labeling practice when the contract manufacturing share of production exceeded 50% — the threshold the team had internally flagged as the point at which the claim required review. The review concluded that the claim was defensible under the Commission's geographic rather than volumetric reading of regional content standards. The team has not revisited the review as the contract manufacturing share has continued to grow. + +--- + +## Gameplay Relevance + +Makuti Consumer is south reach commercial texture — present in commissary inventories, visible on supply manifests, relevant to investigations involving consumer goods supply chains, procurement fraud, or regional content requirements. + +The production gap is the investigative thread. The evidence requires two sources: the company's production records (showing the split between Mwangaza facility output and contract manufacturer volume) and the regulatory filing that supports the "locally produced" claim (in Commission consumer standards records). The gap between the filing's representation and the actual production distribution is not hidden — it is in the company's own records. Whether the institutional buyers who specified regional content requirements received goods meeting those requirements depends on how the contract language defines "locally produced" and whether it tracks Commission standards or imposes stricter criteria. + +--- + +**Cross-References:** +- [Mwangaza](../star-systems/GJ-693/index.md) — Headquarters system; primary facility; institutional client base +- [Mwanga Media](mwanga-media.md) — Mwangaza system neighbor; cultural context +- [Iberian Standard Foods](iberian-standard-foods.md) — South reach consumer goods parallel; comparable regulatory positioning +- [Kalahari Leatherworks](kalahari-leatherworks.md) — South reach origin certification parallel + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/mastroianni-vehicle-group.md b/wiki/corporations/mastroianni-vehicle-group.md index 85c7b5aa8..9694589b9 100644 --- a/wiki/corporations/mastroianni-vehicle-group.md +++ b/wiki/corporations/mastroianni-vehicle-group.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Nova Roma (GJ 764) tags: [] decision_refs: [] -cross_refs: [] +cross_refs: [trans-reach-rail] --- # Mastroianni Vehicle Group @@ -90,7 +90,7 @@ The second silence is around the family's internal succession dynamics. The foun ## Gameplay Relevance -MVG is background infrastructure in the v0.1 slice. The vehicles that serve Station Sova and Van Maanen's Star may carry MVG branding — freight haulers, the shuttle that brought the player in, the transit platforms in the district. This is texture, not plot. +MVG is background infrastructure across any freight or transit setting. The vehicles that serve a given station or transit hub — freight haulers, the shuttle that brought the player in, the transit platforms — may carry MVG branding. This is texture, not plot. For the wider game, MVG represents a specific kind of power: industrial, generational, socially embedded. A player who needs access to fleet logistics or military supply chains has a path through MVG's contract relationships. A player investigating something that touches span gate vehicle specifications — what enters the gate, how cargo is configured, what dimensions a container needs to be to transit without triggering automated inspection flags — is looking at MVG standards documentation. diff --git a/wiki/corporations/matosinhos-fishing.md b/wiki/corporations/matosinhos-fishing.md index 5e80f7ab3..9731f6a67 100644 --- a/wiki/corporations/matosinhos-fishing.md +++ b/wiki/corporations/matosinhos-fishing.md @@ -1,24 +1,98 @@ --- title: "Matosinhos Fishing" -description: "Matosinhos Fishing — consumer goods manufacturer based in Velha Guarda, south reach" +description: "Velha Guarda-based traditional fishing and seafood processing operation — wild-caught heritage brand, declining wild-catch volumes, and a quota compliance methodology that produces the right number through a denominator it chose for itself" slug: matosinhos-fishing category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Velha Guarda (GJ 4A) tags: [commodity_branded, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [iberian-standard-foods, algarve-botanics, alentejo-partners] --- # Matosinhos Fishing -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Seafood Producer and Processor +**Also Known As:** Matosinhos, the Fishing House **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Velha Guarda (GJ 4A) +**Scope:** South reach corridor primary; limited inward specialty distribution secondary +**Headquarters:** Velha Guarda (GJ 4A) — 2-aperture system, 6 hops from Gateway +**Classification:** Sub-Syndic food production enterprise; traditional fishing heritage designation -Matosinhos Fishing is a consumer goods manufacturer operating out of Velha Guarda (GJ 4A). Details to be expanded. +--- + +## Overview + +At Velha Guarda's coastal settlements, fishing is the context in which everything else is understood. The system's primary habited world has extensive shallow coastal water with productive oceanic ecosystems — a combination that made it a viable settlement destination and that has sustained communities whose identity is built around working the water. Matosinhos Fishing is the largest commercial operation in those communities: a fleet of thirty-one vessels, three processing facilities, and a distribution network that carries preserved fish products from Velha Guarda to markets across the south reach corridor and, for specialty lines, to inward distribution points. + +The brand Matosinhos carries in corridor markets is one of provenance and tradition — the marketing language references "Velha Guarda wild-catch," "open-water heritage," and the three-century fishing tradition that the company's founders built their enterprise within. For the premium preserved fish lines sold inward, this positioning is what justifies premium pricing in markets where buyers could source equivalent product from industrial aquaculture suppliers at lower cost. The story sells the fish. + +--- + +## Origin + +Matosinhos Fishing was established by the third generation of a fishing family that had been working Velha Guarda's coastal waters since the system's founding period. The corporate structure replaced a family partnership when the fleet grew large enough that a legal entity was required for the financing of new vessels and the management of multi-system distribution agreements. + +The founding generation of the corporate entity built the fleet systematically, acquired the first processing facility, and established the distribution relationships that connected Matosinhos to south reach markets. Wild-catch was the entire business — there was no aquaculture component, and the idea of buying in catch from other sources would have seemed contradictory to the enterprise's identity. + +The transition began two generations ago, when a combination of increased fishing effort and ecosystem-level shifts in the productive zones began reducing the catch-per-vessel metrics that the fleet had depended on. The response was pragmatic: buy in catch from other south reach fishing operations to supplement the fleet's declining yields. Processing capacity remained. The Matosinhos brand name remained. The product's actual origin became more complex. + +--- + +## Operations + +**Fleet:** Thirty-one vessels working Velha Guarda's primary fishing zones. The fleet is smaller than it was at peak operation two decades ago; several vessels have been retired without replacement. Current wild-catch volumes are approximately 45% of the peak catch recorded in the company's historical records. + +**Processing:** Three facilities at Velha Guarda's coastal settlements. The facilities process both own-fleet catch and bought-in stock. The processing methods — traditional salt-cure techniques for the preserved product lines, chilled packaging for fresh-market sales — are the same regardless of catch origin. + +**Bought-in stock:** Matosinhos purchases fish from smaller independent fishing operations at Velha Guarda and from two other south reach systems. This purchased catch enters the same processing stream as the fleet's own catch and is sold under Matosinhos brand marks without origin differentiation. + +**Quota system:** Velha Guarda's coastal management authority administers wild-catch quotas to regulate fishing effort on the productive zones. Matosinhos holds a "traditional fishing enterprise" quota allocation, a preferential access category that provides larger quota allocations than standard commercial licenses. The traditional designation requires that the majority of Matosinhos's output be derived from wild-catch. + +--- + +## Political Relationships + +**Velha Guarda coastal management authority:** The authority administers catch quotas, traditional enterprise designations, and the environmental monitoring of the productive zones. Matosinhos's relationship with the authority is long-standing and maintained through regular compliance reporting. + +**Independent fishing community:** The smaller independent vessels that sell catch to Matosinhos are both suppliers and a constituency that Matosinhos has informal social obligations toward — the fishing community's identity is bound up with the larger enterprise, and Matosinhos's management is aware that their position as the community's anchor institution carries expectations that pure commercial logic would not require. + +--- + +## The Catch Ratio + +The traditional fishing enterprise designation requires that the majority of a holder's output be "wild-caught by the enterprise's own vessels." Velha Guarda's coastal management authority's compliance process requires annual reporting of catch volumes and source composition. + +Matosinhos's annual compliance report uses a specific methodology. It reports total fish processed through its three facilities as the denominator — all fish passing through Matosinhos handling. Against this denominator, it reports own-fleet catch as the numerator. The own-fleet catch has declined to a level where it constitutes approximately 35% of total throughput in recent years. + +A strict reading of the traditional designation requirement — wild-caught by own vessels as a majority of output — would find Matosinhos non-compliant at 35%. + +The methodology Matosinhos uses adjusts the denominator. The compliance report excludes bought-in stock that is purchased from other Velha Guarda vessels on the grounds that this stock is "Velha Guarda wild-catch" — locally originated, from the same waters, and supporting the same fishing community. Under this adjusted denominator, Matosinhos's own-fleet catch represents 58% of what the report characterizes as the relevant output category. + +The coastal management authority has accepted this methodology in three consecutive annual reviews. The authority's reviewing officer is a former Matosinhos processing facility manager. Whether the authority has examined the methodology against the designation's actual language is not documented in any public record. + +--- + +## Gameplay Relevance + +Matosinhos Fishing is ambient in Velha Guarda's economic and social environment — the largest employer in a fishing community whose identity depends on it, present in south reach food supply chains as a heritage brand. + +The quota methodology is the investigative thread. The evidence requires two sources: the traditional designation's actual language (in the coastal management authority's regulatory records) and Matosinhos's annual compliance reports (publicly filed with the authority). The gap between the designation's own-vessel requirement and the reporting methodology's redefinition of the denominator is documented in the compliance reports themselves. The reviewing officer's prior employment relationship with the company is in personnel records. A player investigating fishing rights, environmental compliance, or south reach food supply chains will find this thread through the authority's compliance archive. + +--- + +**Cross-References:** +- [Velha Guarda](../star-systems/GJ-4A/index.md) — Headquarters system; fishing zones; processing facilities +- [Iberian Standard Foods](iberian-standard-foods.md) — South reach food production parallel; Tractus-currency corridor +- [Algarve Botanics](algarve-botanics.md) — South reach specialty producer; coastal system neighbor +- [Alentejo Partners](alentejo-partners.md) — South reach agricultural supply context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/meridional-banking.md b/wiki/corporations/meridional-banking.md index 7af2af727..2306d89bd 100644 --- a/wiki/corporations/meridional-banking.md +++ b/wiki/corporations/meridional-banking.md @@ -1,24 +1,101 @@ --- title: "Meridional Banking" -description: "Meridional Banking — premium service provider based in Meridian, core" +description: "Meridian-based full-service financial institution operating in the core corridor — private banking, commercial lending, and an arbitrage strategy the company is quietly winding down before the Lattice Commission prohibits it" slug: meridional-banking category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Meridian (GJ 674) tags: [service_premium, core, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, meridional-technical, meridian-risk, alcyone-tech] --- # Meridional Banking -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Financial Institution +**Also Known As:** Meridional, MB **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Meridian (GJ 674) +**Scope:** Core primary; corridor-wide institutional relationships secondary +**Headquarters:** Meridian (GJ 674) — 4-aperture hub, 2 hops from Gateway +**Classification:** Sub-Syndic financial enterprise; full-service banking and clearing -Meridional Banking is a premium service provider operating out of Meridian (GJ 674). Details to be expanded. +--- + +## Overview + +Meridional Banking is one of the core corridor's established financial institutions — present at Meridian for forty-seven years, with the client relationships and institutional reputation that half a century of careful operation builds. The bank offers private banking services to high-net-worth individuals and families, commercial lending to businesses operating across the core and adjacent corridor systems, and institutional services to the smaller organizations that need financial infrastructure without the scale to maintain internal treasury operations. + +The bank's public identity emphasizes stability, discretion, and the depth of its understanding of core corridor commercial patterns. Private banking clients are told they are dealing with an institution that understands the specific financial landscape of the settled Reach as it actually operates — not as a distant correspondent institution, but as a participant. Commercial lending clients are told they are accessing capital that understands corridor-scale business risks. These arguments are accurate and are the basis on which Meridional has maintained its client relationships across decades of management changes. + +--- + +## Origin + +Meridional Banking was founded by a group of Meridian-based merchants and financial practitioners who identified a gap in the core corridor's banking infrastructure — specifically, that the large Gateway-linked financial houses served their own major institutional clients well but were poorly oriented toward the smaller and mid-sized commercial and private banking needs of the Meridian system and its corridor neighbors. + +The founding proposition was local attention: an institution that would make decisions at Meridian rather than routing them through Gateway committees, that would understand the specific credit patterns of core corridor businesses, and that would provide private clients with relationship banking of the kind that large institutions reserve for their largest accounts. This proposition built the client base over the first generation of operation. + +The clearing arbitrage strategy that defines the bank's most profitable revenue line was identified in the second generation of operation, when a Meridional treasury specialist recognized a timing characteristic in the settlement window between Meridian and Gateway that created exploitable margin in correctly-timed Tractus-denominated transactions. + +--- + +## Operations + +**Private banking:** Relationship accounts for high-net-worth individuals and families, primarily at Meridian but with some corridor-wide relationships. Services include wealth management, estate planning, and the kind of discretionary account management that private clients value. This division has approximately 200 accounts and eleven relationship managers. + +**Commercial lending:** Working capital facilities, trade finance, and project lending for businesses across the core corridor. The loan book is diversified across sectors, with the largest concentrations in logistics, services, and real estate. Credit decisions are made at Meridian by a team that knows the borrowers personally. + +**Institutional services:** Treasury management and correspondent banking for smaller organizations. This is the service line that generates the most institutional relationships and the most intelligence about corridor-wide commercial flows. + +**Treasury and clearing:** The bank's internal treasury operation manages its own balance sheet and executes the clearing arbitrage strategy that has been the most profitable element of the bank's operations for the past twenty-two years. + +--- + +## Political Relationships + +**Groombridge Settlement House:** Meridional's primary correspondent relationship. GSH's clearing function and Meridional's treasury operation are linked through the settlement network that coordinates Tractus-denominated transactions across the core corridor. The GSH relationship is the structural context that makes the arbitrage strategy possible. + +**Lattice Commission:** The Commission's financial oversight function monitors settlement practices across the Reach. Meridional has a standard compliance relationship with the Commission's financial desk — periodic reporting, audit access, and the standard certification requirements for institutions that participate in Tractus-denominated clearing. + +**Meridional Technical:** The bank and the engineering firm share a name and a system but are independent entities. The coincidence of name generates occasional client confusion that Meridional Banking's client services team manages by explicit clarification in new account onboarding. + +--- + +## The Arbitrage Window + +The settlement window between Meridian and Gateway — the timing gap between when a Tractus-denominated commitment is confirmed at one end and when it clears at the other — creates a small but consistent pricing differential in correctly-timed transactions. An institution positioned at Meridian with the right correspondent relationships can systematically exploit this differential to generate margin on clearing volume that is technically permitted under current Commission rules. + +Meridional Banking's treasury team has been executing this strategy for twenty-two years. It is not a secret in the narrow sense — sophisticated observers of the core corridor's clearing flows have inferred its existence. It is not publicized, because describing it to the general public or to clients would attract the regulatory attention that careful execution has so far avoided. + +The Commission's current regulatory review cycle is specifically examining settlement timing practices across the Reach's major clearing systems. The review was announced publicly. Meridional's compliance team and its legal advisors have reviewed the bank's arbitrage strategy against the review's stated focus and have concluded that the strategy will likely be prohibited, or its mechanics substantially constrained, within the next twelve to eighteen months. + +The bank's response to this assessment is a quietly executed expansion of its commercial lending and private banking operations. New relationship managers have been hired. The commercial lending team's targets have been revised upward. The private banking division has been told that growth is a priority. None of the clients being onboarded in this expansion have been told that the institution is preparing to replace a significant revenue stream because the strategy that generated it is about to be prohibited. + +The expansion is commercially rational and independently justified. The timing is not coincidental. + +--- + +## Gameplay Relevance + +Meridional Banking is a secondary core corridor institution — relevant to investigations touching core financial infrastructure, clearing practices, or the relationship between regulatory changes and institutional behavior. The bank's client relationships provide a thread into the private financial affairs of core corridor commercial and personal wealth. + +The arbitrage sunset is the investigative thread. The evidence is in two places: the Commission's publicly announced review (in Commission regulatory publications) and Meridional's internal compliance assessment and strategic planning documents. The gap between the bank's expansion narrative to new clients and the internal assessment of why expansion is now urgent is the story. A player who accesses both sets of records has found an institution that is not technically deceiving its clients — the expansion is real and the bank will provide good service — but is not disclosing the risk context that motivated it. + +--- + +**Cross-References:** +- [Meridian](../star-systems/GJ-674/index.md) — Headquarters system; client base; clearing infrastructure +- [Groombridge Settlement House](groombridge-settlement-house.md) — Primary correspondent; settlement window counterparty +- [Meridional Technical](meridional-technical.md) — Meridian system neighbor; name-sharing institution +- [Meridian Risk Partners](meridian-risk.md) — Core corridor financial neighbor; overlapping client relationships +- [Alcyone Tech](alcyone-tech.md) — Core corridor institutional context + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/meridional-technical.md b/wiki/corporations/meridional-technical.md index 137396c46..732906040 100644 --- a/wiki/corporations/meridional-technical.md +++ b/wiki/corporations/meridional-technical.md @@ -1,24 +1,100 @@ --- title: "Meridional Technical" -description: "Meridional Technical — precision technology manufacturer based in Meridian, core" +description: "Meridian-based precision engineering company supplying core corridor infrastructure clients — a Lattice Commission supply certification with a workforce threshold, and nine months of quiet non-compliance before the renewal audit" slug: meridional-technical category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Meridian (GJ 674) tags: [tech_premium, core, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [meridional-banking, alcyone-tech, groombridge-settlement-house] --- # Meridional Technical **Type:** Corporation — Precision Technology Manufacturer +**Also Known As:** Meridional Tech, MT Engineering **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Meridian (GJ 674) +**Scope:** Core primary; corridor-wide infrastructure supply secondary +**Headquarters:** Meridian (GJ 674) — 4-aperture hub, 2 hops from Gateway +**Classification:** Sub-Syndic technology enterprise; certified infrastructure component supplier -Meridional Technical is a precision technology manufacturer operating out of Meridian (GJ 674). Details to be expanded. +--- + +## Overview + +Core corridor infrastructure operates to exacting tolerances. The measurement systems in a gate maintenance facility, the control hardware in a financial house's environmental management system, the component-level engineering in an orbital platform's power distribution array — all of these require suppliers who understand that their products are in systems where the cost of failure exceeds the cost of the product by orders of magnitude. Meridional Technical has built its market position by being that supplier for core corridor clients who cannot afford to use anyone else. + +The company does not manufacture consumer electronics or volume-market components. It manufactures precision industrial hardware for clients who specify it by name in maintenance contracts and who have historically renewed those contracts because changing suppliers in critical infrastructure requires re-certification of the systems the hardware is embedded in. This switching cost is not incidental to Meridional Technical's business model. It is the foundation of the model. + +--- + +## Origin + +Meridional Technical was founded thirty-three years ago by an engineer who had spent twelve years in infrastructure maintenance for Meridian's core orbital network before concluding that the off-system component suppliers the network depended on were structurally misaligned with the specific needs of core corridor infrastructure. Off-system suppliers had long lead times, were not available for on-site technical support, and were optimized for product categories whose specifications were not driven by the exacting requirements of the core corridor's established infrastructure operators. + +The founder's proposition was local supply with technical depth — a manufacturing operation at Meridian, close to the clients, with engineers who understood the specific application environments their products were going into. The first clients were the Meridian orbital network maintenance operations the founder knew from personal experience. The relationships built during that period have defined the company's client base for three decades. + +--- + +## Operations + +**Product lines:** Industrial control system modules, precision measurement hardware, environmental monitoring components, and the specialized connectors and interface hardware that allow modern control systems to communicate with legacy infrastructure. The product catalog is narrow — approximately 80 catalog items — but deep: each item is produced to specifications that reflect specific application requirements. + +**Manufacturing:** The Meridian facility employs seventy-two people across engineering, manufacturing, quality control, and client services. The facility is organized around precision manufacturing processes that require sustained technical expertise — the workforce is not interchangeable, and the knowledge embedded in the senior engineers and production specialists is a significant portion of the company's operational value. + +**Certification:** Meridional Technical holds a Lattice Commission infrastructure supply certification that authorizes the company to supply components for certified infrastructure systems across the Reach. The certification requires maintaining documented production standards, regular audits, and — critically — a minimum workforce threshold at the company's registered facility. + +**Clients:** The core corridor's major infrastructure operators, including gate maintenance organizations, financial district environmental systems, and the orbital platforms that serve Meridian's institutional complex. + +--- + +## Political Relationships + +**Core corridor infrastructure operators:** Meridional Technical's clients are not just buyers; they are the embedded base that defines the company's market position. The maintenance contracts that specify Meridional components by name are the company's most stable revenue line and the basis on which Meridional Technical can plan production capacity. + +**Lattice Commission:** The Commission's certification framework governs the company's most important market access. A suspended certification would not merely cost Meridional Technical its Commission-certified supply contracts — it would trigger a re-certification requirement for every infrastructure system currently running Meridional components, at cost to the client operators. + +--- + +## The Workforce Count + +The Lattice Commission's infrastructure supply certification for manufacturing operations includes a workforce threshold provision: a certified facility must maintain a minimum number of directly employed technical personnel at the certified location. The threshold exists because the Commission's standards framework assumes that certified supply quality is maintained through a stable, trained workforce — and that supply certification cannot be supported by a facility that has downsized below the level required to maintain the production standards the certification is based on. + +Meridional Technical's threshold under its current certification is sixty-five directly employed technical personnel at the Meridian facility. + +Nine months ago, the company completed a restructuring that moved fourteen previously employed specialists into contracted consultant arrangements. The restructuring was driven by a management decision to reduce fixed overhead costs following a period of lower-than-projected revenue. The specialists who moved to contracted arrangements continue to perform the same functions; the company's technical operations have not changed materially. + +The direct employment count at the facility is now fifty-eight — eleven percent below the sixty-five threshold. The contracted specialists are not, under the Commission's certification standards, counted as directly employed personnel. + +The certification renewal audit is six months away. Meridional Technical's compliance documentation for the audit will use a workforce counting methodology that includes contracted specialists in the facility total, on the basis that they work at the facility full-time, are integrated into the production workflow, and are functionally indistinguishable from employees for the purposes the threshold is meant to serve. The company's certification lawyer has described this reading as "arguable." + +The arguable reading is not tested. The methodology has been prepared but has not been reviewed by the Commission's audit team, which will see it for the first time at the renewal. If the Commission's auditors reject the contracted-specialist counting methodology, the company will be found non-compliant with a threshold it has been below for the past nine months. + +--- + +## Gameplay Relevance + +Meridional Technical is relevant to core corridor investigations touching infrastructure supply, certification standards, and workforce classification. The company's products are present in the physical infrastructure of Meridian's core systems. + +The workforce threshold is the investigative thread. The evidence exists in two places: the Commission's certification records (which document the threshold requirement) and Meridional Technical's internal restructuring documentation (which records the transition of fourteen specialists to contracted status and the resulting headcount). The compliance methodology prepared for the renewal audit is in the company's compliance files. A player who accesses these records before the audit will find an institution that has been out of compliance for nine months and has prepared a legal argument rather than corrected the condition. + +The clients whose infrastructure systems run Meridional components have an interest in the certification question — if the renewal is challenged, the re-certification burden falls on them. + +--- + +**Cross-References:** +- [Meridian](../star-systems/GJ-674/index.md) — Headquarters system; manufacturing facility; client base +- [Meridional Banking](meridional-banking.md) — Meridian system neighbor; name-sharing institution +- [Alcyone Tech](alcyone-tech.md) — Core corridor certified supplier parallel; Groombridge +- [Groombridge Settlement House](groombridge-settlement-house.md) — Core corridor infrastructure client; certification dependency + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/mirai-entertainment.md b/wiki/corporations/mirai-entertainment.md index 3d21a82a0..a8c094972 100644 --- a/wiki/corporations/mirai-entertainment.md +++ b/wiki/corporations/mirai-entertainment.md @@ -1,24 +1,98 @@ --- title: "Mirai Entertainment" -description: "Mirai Entertainment — cultural content producer based in Kurashiki, east reach" +description: "Kurashiki-based east reach cultural studio best known for a sixty-year serialized narrative property — the flagship work is still in production, and for the past eight years none of the writing has been done in-house" slug: mirai-entertainment category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kurashiki (GJ 205) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kyoei-design, kyoto-valley-estates, namsan-collective] --- # Mirai Entertainment **Type:** Corporation — Cultural Content Producer +**Also Known As:** Mirai, Mirai Studios **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kurashiki (GJ 205) +**Scope:** East reach primary; inward corridor licensing secondary +**Headquarters:** Kurashiki (GJ 205) — 3-aperture hub, 3 hops from Gateway +**Classification:** Sub-Syndic entertainment enterprise; narrative IP licensing and production -Mirai Entertainment is a cultural content producer operating out of Kurashiki (GJ 205). Details to be expanded. +--- + +## Overview + +In the east reach corridor, Mirai Entertainment is associated in most minds with a single property: *Corridor Light*, the serialized dramatic narrative that has been in continuous production for sixty years and constitutes the longest-running entertainment work in the east reach's cultural output. The series follows a rotating ensemble of characters across the east reach corridor's systems, told through the perspective of people navigating the corridor's economic and social conditions. It is not artistically fashionable; it has been in production too long to be fashionable. What it is, is known. Three generations of east reach viewers have watched it. It is the kind of cultural institution that exists beyond the question of quality. + +Mirai Entertainment's commercial position is built substantially around this property. Licensing *Corridor Light* to broadcasters, streaming archives, and educational distributors provides the studio's most stable revenue line. The original production pipeline — the work of actually making new episodes — is what the studio describes when asked about its creative operation. + +--- + +## Origin + +Mirai Entertainment was founded fifty years ago by an east reach media collective that wanted to produce long-form dramatic content in the corridor's own voice. The founding generation had a specific argument: that east reach cultural identity was being shaped by inward-corridor entertainment products that were not made by or for people who actually lived in the east reach, and that a studio committed to corridor-originating content could build a different kind of audience relationship. + +*Corridor Light* was commissioned in the studio's tenth year. The founding creative director wrote the initial series framework and supervised the first decade of production personally. The series was an immediate success in the east reach market and has never been cancelled — a fact that Mirai's marketing materials note with a consistency that reflects genuine institutional pride. + +The founding creative director retired twenty years ago. Mirai has since had two creative directors; the current one has held the role for twelve years. + +--- + +## Operations + +**Primary property:** *Corridor Light*, now in its sixty-second year of production. The series releases two story arcs per year, each consisting of eight to twelve episodes. It is distributed on a first-run basis to east reach broadcasters and archived for licensing to educational and streaming distribution inward. + +**Secondary production:** Two to four shorter-form productions per year, including limited series and one-off documentary works. These productions generate smaller revenue and are where Mirai's newer creative voices do their most active work. + +**Licensing:** A dedicated licensing team manages *Corridor Light*'s extensive archive rights, which represent sixty years of content across multiple format generations. Inward distribution of the archive is managed through an east reach distributor with inward corridor relationships. + +**Workforce:** Thirty-eight core employees, including the creative director, executive production staff, archive management, and the licensing team. + +--- + +## Political Relationships + +**East reach broadcasting:** Mirai's broadcaster relationships are the primary commercial channel for new production. The *Corridor Light* first-run contract is renewed every five years; the current contract runs for another two years. + +**East reach cultural institutions:** *Corridor Light*'s status as a cultural institution creates informal relationships with educational bodies, libraries, and arts organizations that reference or use the series. Mirai navigates these relationships carefully — they are important to the property's institutional prestige without generating significant direct revenue. + +--- + +## The Writing Team + +Eight years ago, Mirai's then-creative director concluded that the in-house writing capacity for *Corridor Light* was insufficient to maintain production quality and schedule simultaneously. The decision taken was to engage an external writing team under a work-for-hire arrangement: a group of four experienced writers would produce the series' scripts under Mirai's editorial direction, with all creative rights assigned to Mirai as the commissioning party. The arrangement was structured to be invisible externally — the writing team does not receive screen credit; the creative director is listed as the series' creative lead; and all public communications about the series describe it as Mirai's in-house production. + +The writing team has been producing *Corridor Light* under this arrangement for eight years. Their work-for-hire contracts are structured as rolling annual agreements. The scripts they produce are not distinguishable from in-house work in any publicly accessible documentation. The creative director reviews and approves their output and occasionally revises specific elements; the substantive narrative decisions — character arcs, plot development, thematic direction — are made by the writing team in consultation with the creative director. + +The arrangement has been stable. The writing team produces good work. The series has maintained its audience. + +The arrangement has become unstable in one respect: the writing team's contracts expire in sixteen months. The team's representative has opened negotiation discussions requesting screen credit on the episodes they have written, residual payments from the licensing income those episodes generate, and acknowledgment of their contribution to the series' continued production. The work-for-hire agreements grant none of these things and do not legally require Mirai to provide them. + +Mirai's management team has not responded substantively to the negotiation request. The creative director is aware of the situation and has told management that losing the writing team would require rebuilding the series' production capacity at significant cost and risk to production continuity. + +--- + +## Gameplay Relevance + +Mirai Entertainment is relevant to east reach investigations touching creative industry labor, IP ownership, and the gap between institutional presentation and internal production reality. The studio's flagship property is ambient in east reach cultural contexts — referenced, viewed, licensed. + +The writing team situation is the investigative thread. The evidence exists in several places: the work-for-hire contracts (in Mirai's legal files), the credits documentation for the past eight years of episodes (showing no individual writer credits), and the negotiation correspondence (in management communications). A player who accesses these records will find a studio that has publicly presented a creative identity it does not internally support, and a group of workers whose creative contribution to a sixty-year cultural institution is legally invisible. The negotiation's progress — and what happens if it breaks down — is the live element. + +--- + +**Cross-References:** +- [Kurashiki](../star-systems/GJ-205/index.md) — Headquarters system; production base; broadcaster relationships +- [Kyoei Design](kyoei-design.md) — Kurashiki system neighbor; east reach institutional parallel +- [Kyoto Valley Estates](kyoto-valley-estates.md) — Kurashiki system neighbor; comparable heritage brand complexity +- [Namsan Collective](namsan-collective.md) — East reach cultural neighbor; governance contrast + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/moorfield-records.md b/wiki/corporations/moorfield-records.md index 4da2914f0..c8103eb3f 100644 --- a/wiki/corporations/moorfield-records.md +++ b/wiki/corporations/moorfield-records.md @@ -1,11 +1,11 @@ --- title: "Moorfield Records" -description: "Moorfield Records — cultural content producer based in Braemar, north reach" +description: "North reach folk and working tradition label at Braemar (GJ 475) — records the music of people who live at the cold edge of things" slug: moorfield-records category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Braemar (GJ 475) @@ -16,9 +16,60 @@ cross_refs: [] # Moorfield Records -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Folk and Working Tradition Label **Status:** Canonical -**Scope:** Regional — north reach operations +**Scope:** North reach corridor primary; cross-corridor distribution via Meridian **Headquarters:** Braemar (GJ 475) +**Currency:** Tractus +**Classification:** Sub-Syndic cultural enterprise; independent -Moorfield Records is a cultural content producer operating out of Braemar (GJ 475). Details to be expanded. +--- + +## Overview + +Braemar is a cold-weather system. The people who live there know how to maintain equipment in conditions that would strand unprepared travelers; they make clothing designed for sustained outdoor work in low temperatures; their cultural character is formed by the knowledge that comfort is not guaranteed and competence is non-negotiable. Moorfield Records makes music that sounds like that. + +The label's catalog runs across what it calls — without particular genre-consciousness — "working tradition": songs rooted in the practical experience of north reach life, of labor in cold environments, of communities that had to decide what to keep when space was scarce and sentiment was a luxury. Some of what Moorfield records is explicitly traditional — songs with histories that predate the label, regional variations of material that arrived with the founding migration waves. Some is contemporary composition that knows its tradition and works within it. The label does not distinguish sharply between these categories. Music that sounds like it came from somewhere real is the qualifying criterion. + +Moorfield has been operating for fifty years. It has not made the north reach famous. It has made the north reach, for the people who live there, more legible to themselves. + +--- + +## Origin + +The label was founded by a woman named Edda Calloch who had grown up in one of Braemar's outer settlements and moved to the system's main population center for work. In the city she found, to her surprise, that the music she had grown up hearing — specifically, the material that came from small-community traditions in the outer settlements — was not available through any distribution channel. It was not famous. It was not performed at venues. It existed in the places it had always existed, sung by people who had learned it from people who had learned it, and it was going to continue existing only as long as that transmission chain held. + +Edda Calloch spent five years traveling Braemar's outer settlements with recording equipment before she founded the label. She founded it to release what she had recorded. The label's first releases were archival: documentation of material that was not being documented by anyone else. The contemporary commissioning work came later, when artists who had grown up on those archival releases started bringing new material that fit within the tradition without being derived from any specific existing song. + +Edda Calloch is Perpetual-class and still runs the label. She considers the archival project ongoing. There are outer settlements in the north reach that she has not visited yet. + +--- + +## Operations + +**Archival work:** The label maintains the largest archive of north reach working tradition material in any corpus accessible through Meridian. The archive is not fully catalogued. New material arrives regularly from communities that have learned the label will treat the material with care and will not license it for purposes they have not been asked about. Moorfield has a formal policy, stated in every recording agreement with community contributors: the label does not license archival material without explicit community consent. This policy has been honored without exception. + +**Contemporary commissioning:** The label works with approximately twenty active artists on commission relationships. Commissioned artists receive a development stipend, recording support, and a release schedule without fixed delivery dates. The label's experience is that north reach artists deliver when the work is ready, and that attempting to impose external timelines produces work that satisfies the timeline but not the artist. + +**Distribution:** Tractus-denominated, Meridian-primary. Physical distribution operates within the north reach corridor; cross-corridor distribution is limited to Meridian. The label does not aggressively market outside the north reach. Its cross-corridor following has developed organically among listeners who specifically seek music with geographic specificity and cultural rootedness, categories that Moorfield satisfies without trying to. + +**Staff:** The label employs six people, including Edda Calloch and two archivists who work exclusively on the historical collection. Lean by any standard. The operational philosophy is that money going to staff is money not going to artists, and the label's function is to serve the music, not to maintain an institution. + +--- + +## Reach Position + +Moorfield Records is not a commercial success story in any conventional sense. Its catalog generates steady, modest revenue from a loyal listener base across the north reach and a smaller cross-corridor audience. It does not chart. It does not generate the kind of commercial returns that attract external investment. It has been offered acquisition twice by larger corridor entertainment groups and declined both times. + +The label's significance is cultural rather than commercial. Music historians working on north reach settlement culture cite Moorfield's archival releases as primary sources. The commission output has influenced a generation of north reach artists who have gone on to work with other labels, carrying the aesthetic forward into contexts where Moorfield's name is not attached. Edda Calloch considers this the best outcome: the tradition continues, the source is documented, and the label's job is done even when the label is not credited for it. + +--- + +**Cross-References:** +- [Thrds](thrds.md) — co-located at Braemar; shared north reach working-culture identity + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/mwanga-media.md b/wiki/corporations/mwanga-media.md index 309f1ff74..5eb626b85 100644 --- a/wiki/corporations/mwanga-media.md +++ b/wiki/corporations/mwanga-media.md @@ -1,24 +1,99 @@ --- title: "Mwanga Media" -description: "Mwanga Media — cultural content producer based in Mwangaza, south reach" +description: "Mwangaza-based south reach cultural production house built around oral history preservation — community materials held in a 'protected collection' that the donating communities can no longer freely access" slug: mwanga-media category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Mwangaza (GJ 693) tags: [cultural, south_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [makuti-consumer, ironbark-films, mwangaza] --- # Mwanga Media **Type:** Corporation — Cultural Content Producer +**Also Known As:** Mwanga, the Media House **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Mwangaza (GJ 693) +**Scope:** South reach corridor primary; limited inward documentary distribution secondary +**Headquarters:** Mwangaza (GJ 693) — 2-aperture system, 5 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; documentary production and cultural archive -Mwanga Media is a cultural content producer operating out of Mwangaza (GJ 693). Details to be expanded. +--- + +## Overview + +Mwanga Media occupies a specific position in the south reach's cultural infrastructure: it is the organization most visibly associated with preserving and disseminating the south reach corridor's diverse oral and documentary heritage. The company's founding mission was to ensure that the histories, traditions, and cultural practices of Mwangaza's communities — and by extension the broader south reach communities that the studio has worked with over three decades — were documented and made accessible before the generational carriers of that knowledge were gone. + +This mission is real and is genuinely held by people at the organization. The documentary work Mwanga has produced, the oral history recordings it has made, and the preservation infrastructure it has maintained represent a genuine contribution to the cultural record of the south reach. The studio's grant funders, government relationships, and public reputation rest on this contribution. + +The commercial operation that sustains the preservation mission is smaller, lower-profile, and primarily engaged in producing content for distribution platforms rather than in the documentary work the studio is known for. + +--- + +## Origin + +Mwanga Media was founded twenty-nine years ago by a documentary producer who had been making films about Mwangaza's communities for a decade before concluding that a standalone production company with a preservation mandate would be better positioned to sustain the work than she could as an independent. The founding was supported by a south reach arts grant and by in-kind contributions from several Mwangaza community organizations who understood the preservation intent. + +The early work was community-centered in a practical sense: productions made in consultation with the communities they documented, distributed locally, and contributing to community archives alongside Mwanga's own. The studio's reputation for respectful community engagement was built during this period. + +As the studio grew and its distribution reach extended inward, the economics of preservation work became more complex. Grants require application processes and reporting obligations. Distribution generates licensing income that carries its own logic. The relationship between the preservation mission and the commercial operation has gradually shifted in ways that the founding generation recognized and the current management has normalized. + +--- + +## Operations + +**Documentary production:** Ongoing production of documentary and long-form cultural content, averaging two to three major works per year. This is the public face of the studio and the work that generates its reputation and grant eligibility. + +**Commercial content:** The majority of Mwanga's production volume is lower-cost content produced for south reach distribution platforms — short-form narrative works, cultural programming, and educational content that funds the studio's operating costs. This work is competent but is not the work the studio's public profile describes. + +**The preservation archive:** Mwanga maintains a physical and digital archive of oral history recordings, cultural performance recordings, and documentary materials accumulated over twenty-nine years of operation. The archive is the studio's most distinctive asset and the basis for its public-benefit status. + +**Funding:** A combination of grant income, distribution revenue, and archive licensing fees. The grants — south reach arts foundation, Mwangaza government support, a Lattice Commission cultural preservation fund — require that Mwanga demonstrate ongoing preservation activity, which it does. + +--- + +## Political Relationships + +**Source communities:** The communities whose materials appear in Mwanga's archive have varying current relationships with the studio. Some maintain active consultation relationships. Others have not been in formal contact with the studio for years. The studio maintains a community relations function that manages these relationships. + +**South reach arts infrastructure:** Mwanga participates in south reach arts and culture policy discussions and is represented on the regional arts foundation board. This positioning supports grant access and regulatory relationships. + +--- + +## The Protected Collection + +When Mwanga Media was founded, community organizations that contributed materials to its archive did so under agreements that described the archive as a public preservation resource — materials would be preserved professionally and would remain accessible to the communities and the public for educational and cultural purposes. These agreements were not detailed legal instruments; they were letters of intent and donation acknowledgments written in good faith by people who trusted that the terms were clear. + +Twelve years ago, as the archive grew in value and as inward-corridor institutions began expressing interest in accessing it for research and licensing purposes, Mwanga's management created a "protected collection" access tier within the archive. The protected collection covers the materials that are most culturally significant, most frequently sought by outside researchers, and most commercially valuable. Access to the protected collection requires institutional application, review, and a license fee. + +The license fee structure generates income. This income is described in Mwanga's financial reporting as "archive access fees" and contributes to the studio's sustainability metrics that grant funders assess. + +The donating communities were not consulted when the protected collection tier was created. The original donation agreements did not specify a license fee structure because no such structure existed at the time. The communities understood their materials would be "accessible" and have since discovered that access requires an institutional application process and fees that individual community members and small organizations typically cannot navigate. + +Several community representatives have raised the access issue with Mwanga's community relations function over the past decade. The responses have described the protected collection as a professional preservation measure that ensures the materials are handled appropriately and that funds their ongoing maintenance. The responses have not acknowledged the tension with the original donation terms. + +--- + +## Gameplay Relevance + +Mwanga Media is a secondary institution relevant to south reach investigations touching cultural rights, archive access, and the relationship between preservation missions and commercial operations. The studio's materials appear in any south reach cultural research context. + +The protected collection is the investigative thread. The evidence requires three pieces: the original donation agreements (in Mwanga's archive administrative records), the protected collection fee structure (in the studio's licensing documentation), and the community representatives' correspondence with the studio (in community relations files and community organizational records). A player who assembles these pieces has found an institution that changed the terms of a trust relationship without consulting the people who extended the trust — and that is collecting income from the changed terms. + +--- + +**Cross-References:** +- [Mwangaza](../star-systems/GJ-693/index.md) — Headquarters system; community relationships; archive location +- [Makuti Consumer](makuti-consumer.md) — Mwangaza system neighbor; commercial parallel +- [Ironbark Films](ironbark-films.md) — North reach cultural parallel; comparable community archive question + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/namsan-collective.md b/wiki/corporations/namsan-collective.md index 9cd7f2caa..820c44090 100644 --- a/wiki/corporations/namsan-collective.md +++ b/wiki/corporations/namsan-collective.md @@ -1,24 +1,100 @@ --- title: "Namsan Collective" -description: "Namsan Collective — cultural content producer based in Yeongwol, east reach" +description: "Yeongwol-based east reach arts collective governed by member vote — a cooperative charter, a governance revision passed without full membership vote, and three founding members who understand exactly what happened" slug: namsan-collective category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Yeongwol (GJ 268) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [jeju-lattice, mirai-entertainment, kyoei-design] --- # Namsan Collective **Type:** Corporation — Cultural Content Producer +**Also Known As:** Namsan, the Collective **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Yeongwol (GJ 268) +**Scope:** East reach corridor primary; limited inward arts distribution secondary +**Headquarters:** Yeongwol (GJ 268) — 2-aperture system, 4 hops from Gateway +**Classification:** Sub-Syndic cooperative enterprise; member-governed arts production -Namsan Collective is a cultural content producer operating out of Yeongwol (GJ 268). Details to be expanded. +--- + +## Overview + +In the east reach cultural landscape, Namsan Collective is the studio that produces the work that people with strong opinions about east reach culture take seriously. Not the most commercially successful — Mirai Entertainment produces the property that most households watch — and not the most institutionally funded. What Namsan produces is culturally specific east reach work made by practitioners who live in the corridor and are making arguments about what they see. Its output is smaller in volume than the larger studios. Its reputation per unit of output is higher. + +The collective model is central to how Namsan presents itself. Member governance is the argument the studio makes about why its output is what it is — decisions made collectively by working practitioners produce different work than decisions made by executives managing commercial risk. This argument is the studio's competitive identity claim. It appears in grant applications, press materials, and in how Namsan's members describe their work when asked. + +--- + +## Origin + +Namsan Collective was founded twenty-two years ago by a group of eight east reach artists, filmmakers, and cultural workers who had been working independently or at larger studios and wanted a shared structure that would give them production infrastructure without the editorial compromises that came with institutional employment. + +The cooperative charter they wrote was explicit about the governance model: equal voting rights for all contributing members, major decisions by simple majority, new members admitted by majority vote of existing members. The charter included a "procedural matters" clause that allowed the board to pass administrative decisions by simple majority without full membership vote — a provision intended to handle scheduling, expense approvals, and similar operational questions without requiring convening the full membership for every administrative item. + +The founding eight members built the studio's reputation over the first decade through a body of work that won east reach arts awards and a small number of inward distribution deals. New members were admitted over time as the production community around the studio grew. By the collective's twelfth year, it had thirty-one members. + +--- + +## Operations + +**Production:** Three to five productions per year, across short-form and long-form documentary, narrative, and experimental work. The productions are developed through a proposal process in which any member can submit work for collective consideration; the membership votes on which projects to develop with studio resources. + +**Community programming:** Regular screenings, talks, and cultural programming at Yeongwol's primary settlement, which Namsan runs as part of its community presence. The programming is grant-supported and generates significant community goodwill without being commercially significant. + +**Revenue:** Grant income, distribution fees from completed work, and the community programming support. The studio is not profitable by commercial standards; it is sustainable because the grant income covers the structural costs and the distribution fees cover the production costs of the work that gets made. + +**Governance:** The board of seven members manages the studio's operations between general membership votes. Board members serve three-year terms. + +--- + +## Political Relationships + +**Yeongwol arts infrastructure:** Namsan is embedded in Yeongwol's arts community — board members appear in arts council discussions, the studio's screenings are part of the system's cultural calendar. This position supports grant access and the informal influence that helps a small studio maintain its independence. + +**East reach arts institutions:** Namsan's work circulates among east reach cultural bodies and is referenced in the corridor's arts funding discourse as an example of sustainable member-governed production. This reputation is the studio's primary lever in grant competitions. + +--- + +## The Governance Revision + +Four years ago, Namsan's board proposed a governance revision — the introduction of a "senior contributor" membership tier with weighted voting rights. The revision was framed as a mechanism to ensure that members with long-term investment in the collective had proportional influence in major decisions. Senior contributor status would be granted to members who had been active for more than eight years and had contributed to a minimum number of productions. + +The revision was passed by a simple majority of the existing board, using the charter's "procedural matters" clause as the legal basis. It was not put to a full membership vote. + +Three founding members objected formally at the time, arguing that the governance revision was a constitutional change — a modification of the rights granted to all members in the original charter — and therefore required a full membership vote under the charter's terms. The board's position was that the "procedural matters" clause was broad enough to cover governance structure, and that the revision was an operational mechanism rather than a rights modification. + +The three objecting members brought the dispute to an east reach arbitration body. The arbitration was inconclusive on the specific legal question of the clause's scope — the arbitrator found that the charter language was ambiguous and that the board's interpretation was not unreasonable. The arbitration result did not require the revision to be re-voted under a full membership process. + +At the following annual meeting, two of the three objecting members were not re-elected to the board. The third resigned from board service but remained a collective member. Under the governance revision, all three objecting founders fall below the senior contributor weighted voting threshold in several categories, reducing their effective influence in subsequent major votes. + +The governance revision is documented in the board meeting minutes and the arbitration record. The current board describes the governance structure as "continuously developed" and does not raise the objection process in public materials. + +--- + +## Gameplay Relevance + +Namsan Collective is relevant to investigations touching cooperative governance, internal institutional conflict, and the relationship between stated organizational values and actual power structures. The studio appears in east reach cultural contexts and is encountered wherever arts funding, community cultural programming, or east reach creative industry politics are relevant. + +The governance revision is the investigative thread. The evidence is documented: the original charter (in Namsan's founding records), the board meeting minutes approving the revision, the three founders' formal objection (in the same minutes and in the arbitration record), and the arbitration outcome. A player who reads these records in sequence has a complete account of how a member organization changed its own power structure by using a procedural clause in a way that was arguably not intended for that purpose, and what happened to the members who objected. + +--- + +**Cross-References:** +- [Yeongwol](../star-systems/GJ-268/index.md) — Headquarters system; community base; cultural programming +- [Jeju Lattice](jeju-lattice.md) — Yeongwol system neighbor; industrial context +- [Mirai Entertainment](mirai-entertainment.md) — East reach cultural parallel; governance contrast +- [Kyoei Design](kyoei-design.md) — East reach institutional neighbor; cooperative culture contrast + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/nexus-way-express.md b/wiki/corporations/nexus-way-express.md index b70a265d1..e381fd3b9 100644 --- a/wiki/corporations/nexus-way-express.md +++ b/wiki/corporations/nexus-way-express.md @@ -1,24 +1,100 @@ --- title: "Nexus Way Express" -description: "Nexus Way Express — premium service provider based in Sirius, core" +description: "Sirius-based premium logistics provider serving core corridor time-sensitive freight — transit speed guarantees built on a block-booking arrangement at the Sirius aperture that the Lattice Commission's ongoing review may not leave standing" slug: nexus-way-express category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [service_premium, core, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [the-gate-corporation, meridional-banking, groombridge-settlement-house] --- # Nexus Way Express -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Premium Logistics and Transit Services +**Also Known As:** Nexus Way, NWE **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; corridor-wide time-sensitive freight secondary +**Headquarters:** Sirius (GJ 244A) — 4-aperture hub, 1 hop from Gateway +**Classification:** Sub-Syndic service enterprise; certified priority transit logistics -Nexus Way Express is a premium service provider operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Speed in gate transit is not equally accessible. The aperture network has finite throughput, and peak transit windows — the periods when simultaneous gate use is highest and freight transit is most efficient — are allocated through a scheduling system managed by the Gate Corporation under Lattice Commission fair-access rules. Most freight operators book transit windows as available. Nexus Way Express sells the assurance that their clients' shipments will transit during the windows that matter, not the windows that are left. + +The company has operated at Sirius for thirty-four years and has built a client base among the core corridor's most time-sensitive freight operators — financial institutions moving physical settlement instruments, pharmaceutical distributors whose products have narrow temperature and timing windows, institutional clients whose operational schedules cannot accommodate unpredictable transit delays. For these clients, the premium over standard freight services is the price of reliability, and Nexus Way has maintained a transit commitment record that the premium justifies. + +--- + +## Origin + +Nexus Way Express was founded by a logistics specialist who had spent fifteen years at one of Gateway's largest freight brokers before concluding that the core corridor's premium freight segment was structurally under-served by existing operators. The major freight houses competed on volume and price; nobody was competing specifically on committed transit timing. The founding proposition was that a smaller specialist operator, optimized for timing commitments rather than volume throughput, could capture the segment of the market that valued reliability over cost. + +The founding required access to priority transit windows. At Sirius — a 4-aperture hub one hop from Gateway and one of the Reach's most commercially significant transit points — transit window allocation was at the time governed by a first-come scheduling system that favored established operators with existing booking relationships. Nexus Way's founder negotiated a block-booking arrangement with the Sirius aperture authority that guaranteed access to a defined number of priority windows per scheduling period. + +The block-booking was established under a grandfather provision in the aperture authority's scheduling rules — a provision that allowed established commercial operators to maintain block-booking arrangements that predated the Commission's subsequent fair-access scheduling framework. Nexus Way established itself under the provision just before the fair-access framework was finalized. + +--- + +## Operations + +**Core service:** Time-committed freight transit for core corridor clients. Nexus Way guarantees that freight accepted under its priority service will transit via the most efficient available gate pathway within a committed time window, measured from acceptance to destination confirmation. + +**Client relationships:** Long-term service agreements with financial institutions, pharmaceutical and medical goods distributors, institutional procurement operations, and high-value commercial freight shippers. The client base is relatively small — approximately 85 active accounts — and relationship-intensive. Client retention is near-total; clients who leave typically do so for systemic reasons rather than performance failures. + +**Fleet and infrastructure:** Nexus Way operates a small fleet of owned transit vessels optimized for the core corridor routes and contracts with specialized carriers for extended reach. The key infrastructure is not vessels but relationships — the booking and scheduling relationships that produce the transit windows the service depends on. + +**Workforce:** Forty-two people in operations, logistics management, client services, and transit scheduling. + +--- + +## Political Relationships + +**Gate Corporation:** The Gate Corporation manages aperture operations and administers transit scheduling at Sirius and throughout the Reach's gate network. Nexus Way's block-booking arrangement is administered through the Gate Corporation's Sirius facility under the grandfather provision. The relationship is formally correct — the arrangement was established legally and has been maintained in compliance with its terms. + +**Lattice Commission:** The Commission's infrastructure review function is examining transit scheduling practices across the Reach's major hubs. This review was publicly announced and is part of the Commission's current regulatory cycle. Its stated focus includes "grandfathered aperture scheduling arrangements and their consistency with current fair-access principles." + +**Competing freight operators:** Standard freight operators who book transit windows through the fair-access system have periodically raised the question of whether grandfather-provision block-booking arrangements are consistent with the fair-access framework. These complaints have been directed to the Commission's infrastructure review, which is the formal mechanism for addressing them. + +--- + +## The Grandfather Provision + +The Sirius aperture block-booking arrangement gives Nexus Way Express access to a defined number of priority transit windows per scheduling period that are not available through the Commission's standard fair-access booking process. These windows include the most commercially valuable transit times — specifically, the morning and midday windows when gateway synchronization produces optimal multi-hop transit times for core corridor routes. + +The arrangement is technically lawful under the grandfather provision. The provision exists because the Commission's fair-access framework, when introduced twenty-two years ago, included a transition period for arrangements that predated it. Nexus Way qualified for the transition period. The transition period did not have a sunset date; it was written as a permanent accommodation for arrangements in good standing at the time. + +The Commission's current infrastructure review was initiated partly in response to the sustained complaints from standard freight operators and partly because the Commission's own analysis found that grandfathered block-booking arrangements at major hubs were producing effective reservation of a significant fraction of peak transit capacity by a small number of legacy operators. The review's stated scope explicitly includes the mechanism under which Nexus Way's arrangement was established. + +Nexus Way's clients are contracted on the basis of the transit time commitments the current arrangement makes possible. These commitments are the reason clients pay premium rates. If the Commission's review produces a ruling that discontinues or substantially modifies grandfather-provision block-booking arrangements, Nexus Way's transit commitments become contingent on booking windows that are allocated through the fair-access process — a process in which the company has no special standing. + +Nexus Way's legal team has reviewed the Commission's announced review scope and has assessed the risk to the grandfather provision as "material." The client account managers have not been briefed on this assessment. The current service level agreements will renew as scheduled. + +--- + +## Gameplay Relevance + +Nexus Way Express is relevant to core corridor investigations touching transit logistics, aperture scheduling politics, and the relationship between regulatory change and established commercial interests. The company's clients are institutions whose own operations depend on the transit commitments they have contracted for. + +The grandfather provision risk is the investigative thread. The evidence is in public regulatory records (the Commission's review announcement and scope statement), in the aperture scheduling records at Sirius (which document Nexus Way's block-booking arrangement), and in Nexus Way's internal legal assessment (in the legal team's risk files). The client contracts and the service level agreements are a fourth set of records. A player who assembles these finds an institution whose commercial value proposition is contingent on a regulatory outcome that the company has assessed privately as uncertain but is not communicating to clients. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; primary aperture access; transit hub +- [The Gate Corporation](gate-corporation.md) — Aperture scheduling authority; block-booking administrator +- [Meridional Banking](meridional-banking.md) — Core corridor client; financial instrument transit +- [Groombridge Settlement House](groombridge-settlement-house.md) — Core corridor institutional client + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/nordhavn-financial.md b/wiki/corporations/nordhavn-financial.md index e0380c5cd..b99ec34e2 100644 --- a/wiki/corporations/nordhavn-financial.md +++ b/wiki/corporations/nordhavn-financial.md @@ -1,24 +1,100 @@ --- title: "Nordhavn Financial" -description: "Nordhavn Financial — premium service provider based in Nyrheim, west reach" +description: "Nyrheim-based west reach commercial bank — Mark-denominated lending, regional business finance, and a loan portfolio concentration in heavy mineral extraction that doesn't appear as concentration because several large loans are classified as infrastructure finance" slug: nordhavn-financial category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) tags: [service_premium, west_reach, mark] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kellervolk, norrland-woodcraft, lowlands-consumer] --- # Nordhavn Financial -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Commercial Financial Institution +**Also Known As:** Nordhavn, NF **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Nyrheim (GJ 3737) +**Scope:** West reach corridor primary; Mark-currency systems secondary +**Headquarters:** Nyrheim (GJ 3737) — 3-aperture hub, 6 hops from Gateway +**Classification:** Sub-Syndic financial enterprise; commercial lending and treasury services -Nordhavn Financial is a premium service provider operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +In the west reach corridor's Mark-currency ecosystem, Nordhavn Financial occupies the role that a regional commercial bank occupies in any system where the economy has distinct character: it knows the businesses, it understands the risk patterns that outsiders would misread, and it provides capital to operations that Tractus-denominated institutions don't bother to analyze. The bank has operated at Nyrheim for thirty-eight years and has grown alongside the system's resource extraction economy. + +Nordhavn's public profile emphasizes breadth. Its promotional materials describe a diversified financial services operation — commercial lending across sectors, treasury management for businesses operating in Mark-currency systems, private banking for west reach individuals and families, and institutional services for organizations that need more than a basic account relationship. The diversification story is the bank's positioning against being seen as what its balance sheet actually reflects. + +--- + +## Origin + +Nordhavn Financial was founded by a group of Nyrheim commercial interests who needed a local bank that would lend against the collateral structures specific to west reach resource extraction operations — mineral rights, extraction equipment, and the long-duration revenue profiles of mining operations that required capital patient enough to wait for extraction cycles. Off-system and Gateway-linked banks were poor at underwriting these structures; they applied inward corridor risk frameworks to loans whose fundamentals were different. + +The founding generation built the bank's book primarily through relationships with Nyrheim's established extraction operations. These relationships remain the bank's deepest and most stable commercial connections. The diversification into commercial lending across other sectors, treasury services, and private banking happened as the bank grew large enough to afford the people and systems required to serve those segments. + +The diversification is genuine in the sense that the bank does serve multiple segments. It has not displaced the extraction sector as the dominant driver of the book's risk profile. + +--- + +## Operations + +**Commercial lending:** The primary business line. Working capital facilities, equipment financing, and project lending for businesses across the west reach corridor. The loan book includes clients in logistics, retail, services, and manufacturing, in addition to the resource extraction clients that represent the largest individual exposures. + +**Treasury services:** Cash management, payment processing, and foreign exchange services for businesses operating in Mark-currency systems and transacting with Tractus-currency counterparts. The foreign exchange function — converting between Mark and Tractus at competitive rates for business clients — generates consistent fee income. + +**Private banking:** Wealth management and private account services for west reach individuals and families. A smaller division relative to commercial lending but important for relationship continuity with the families behind the bank's largest commercial clients. + +**Institutional services:** Banking services for smaller organizations — cooperatives, community institutions, smaller regional businesses — that need more support than a basic account provides. + +--- + +## Political Relationships + +**West reach resource extraction sector:** Nordhavn's deepest relationships are with the families and enterprises that own and operate Nyrheim's mineral extraction operations. These relationships are multi-generational; the bank has financed equipment cycles, succession transitions, and operational expansions for clients whose parents and grandparents had accounts at Nordhavn. The relationship is genuinely close in the way that a bank and its primary constituency are when they have grown up together. + +**Lattice Commission:** The Commission's financial oversight function applies to Nordhavn's Mark-currency operations through the framework that governs institutions providing banking services to enterprises in Tractus-denominated commerce. Periodic reporting and audit processes apply. The Commission's sector concentration monitoring is the regulatory framework most directly relevant to Nordhavn's current situation. + +--- + +## The Infrastructure Finance Classification + +Lattice Commission financial standards for commercial lending institutions include a sector concentration metric — a threshold beyond which a single-sector lending concentration is flagged for review, on the grounds that concentrated sector exposure increases the institution's risk profile in ways that affect its stability as a lending counterpart. + +Nordhavn's loan book has a significant exposure to Nyrheim's heavy mineral extraction sector. The bank's risk team tracks this exposure. In the bank's internal analysis, the extraction sector represents approximately 55% of total commercial lending exposure. + +The Commission's sector concentration threshold that triggers a review notification is 40% for natural resources sectors — a threshold set at a level the Commission determined was consistent with balanced institutional risk profiles for regional commercial banks. + +Nordhavn's public reporting does not show a 55% extraction sector concentration because several of its largest extraction-related loans are classified in the public accounts as "infrastructure finance" rather than commercial lending. The classification distinction is legitimate in the sense that the loans finance physical infrastructure — processing facilities, transport networks, extraction platform construction — rather than operational working capital. Infrastructure finance is reported in a separate account category with a separate sector concentration calculation. + +If the infrastructure finance loans were reclassified as commercial lending — the category their end use would typically fall under — the commercial lending book's extraction sector concentration would be 55%, well above the 40% threshold. + +The classification methodology is not unique to Nordhavn; infrastructure finance as a distinct account category is standard practice. The issue is that Nordhavn has consistently classified at the infrastructure end of an ambiguous line in ways that favor the commercial lending concentration number. The bank's external auditors are general commercial practice auditors who are not specialists in the intersection of infrastructure finance classification and natural resources sector concentration analysis. No audit has examined the classification methodology against the Commission's sector concentration intent. + +--- + +## Gameplay Relevance + +Nordhavn Financial is a secondary west reach institution — relevant to investigations touching west reach commercial finance, extraction sector economics, or the relationship between financial reporting and regulatory compliance. The bank's loan relationships connect to the ownership structures of Nyrheim's extraction operations. + +The classification question is the investigative thread. The evidence requires two sets of documents: the bank's public sector concentration reporting (in Commission-filed accounts) and the internal loan book analysis (in the bank's risk management records). The gap between the public concentration number and the internal analysis is documented in the risk team's own files. A Commission auditor who specialized in the relevant classification standards would find the question worth examining; a player who accesses both sets of records can make the same connection. + +--- + +**Cross-References:** +- [Nyrheim](../star-systems/GJ-3737/index.md) — Headquarters system; client base; extraction sector relationships +- [Kellervolk](kellervolk.md) — Nyrheim system neighbor; cultural context +- [Norrland Woodcraft](norrland-woodcraft.md) — Nyrheim system neighbor; commercial client parallel +- [Lowlands Consumer](lowlands-consumer.md) — West reach commercial context; Mark-currency operations + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/nordschatten-records.md b/wiki/corporations/nordschatten-records.md index 7b132e782..c58fcec22 100644 --- a/wiki/corporations/nordschatten-records.md +++ b/wiki/corporations/nordschatten-records.md @@ -1,11 +1,11 @@ --- title: "Nordschatten Records" -description: "Nordschatten Records — cultural content producer based in Nyrheim, west reach" +description: "Experimental music label at Nyrheim (GJ 3737) — atmospheric, unhurried, built from the aesthetic of a marble-quarrying system at the edge of the west reach" slug: nordschatten-records category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) @@ -16,9 +16,60 @@ cross_refs: [] # Nordschatten Records -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Experimental Music Label **Status:** Canonical -**Scope:** Regional — west reach operations +**Scope:** West reach corridor; cult following in adjacent corridors via Meridian **Headquarters:** Nyrheim (GJ 3737) +**Currency:** Mark (Compact zone) +**Classification:** Sub-Syndic cultural enterprise; Compact-registered independent -Nordschatten Records is a cultural content producer operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +Nyrheim is a quarrying system. Bífröst Marmor extracts marble here — slow work, geological timescales, the extraction of material that took millions of years to form. Nordschatten Records is not a quarrying operation, but it sounds like one. The label makes music from the aesthetic conditions of its home system: cold, patient, deep, indifferent to whether the listener is comfortable. + +The name translates from the corridor's Germanic heritage as "north shadow" — the shadow cast by the system's primary across the marble fields in the extraction zones' permanent winter. It was chosen by the label's founders thirty-five years ago because it described the sound they intended to make: not darkness as aesthetic pose, but the specific quality of light at the edge of the reach, where the star is distant and the shadows run long. That sound — ambient, slow-moving, structurally complex, not obviously melodic — remains the label's primary output. + +Nordschatten is not well known outside the west reach. Inside the west reach, it has a reputation disproportionate to its catalog size: the label that makes music for people who have been in transit too long and found the silence between systems acquiring a texture. + +--- + +## Origin + +The label was founded thirty-five years ago by two Bífröst Marmor technicians who had been working deep extraction shifts and spending their off-hours making recordings in the quarry's subterranean chambers. The acoustic properties of marble caves are unusual. The recordings they made were not music in any commercial sense. They were not certain they were music in any sense. They released them anyway, on a self-funded basis, through Meridian distribution, under the Nordschatten name. + +The response was small and immediate — a few hundred listeners who had encountered the same problem: they wanted music that did not demand attention, that occupied sonic space without filling it, that sounded like the Interstitium might sound if sound traveled through it. The founders formalized the label two years after the first release, having concluded that the audience, though small, was not going away. + +Neither founder works in the quarry anymore. One manages the label full-time. The other records and releases under a solo project name as part of the Nordschatten roster. + +--- + +## Operations + +**Roster:** Eleven active artists, none of them famous in any conventional sense. The roster skews heavily toward instrumental work, with a subset of artists whose vocal pieces treat the voice as texture rather than melody carrier. The label does not organize its roster by genre because its working definition of genre — "the commercial category a distributor assigns to music" — is considered inadequate to describe what the artists actually do. + +**Production:** No owned studio. Nordschatten artists record in whatever space produces the acoustic result they need: quarry chambers, decommissioned industrial facilities, the specific resonant properties of certain station corridors in Nyrheim. The label's technical staff travel to the recording location rather than bringing the artist to a studio. This is more expensive and considerably slower than conventional production. The results justify the cost to the artists and the label, if not to anyone outside them. + +**Distribution:** Meridian-primary, with minimal physical distribution. Nordschatten releases are not available in major commercial catalogues. They appear in specialist distribution networks and, occasionally, in the back of stores that know what they are. The label does not participate in algorithmic recommendation systems, not as a policy position, but because it has not found a recommendation algorithm that accurately identifies the Nordschatten listener. "People who listened to this also listened to" produces, in the label's experience, categories that miss the point. + +**Revenue:** The label's finances are tight and have always been tight. The founders do not discuss specifics. The Bífröst Marmor connection has provided occasional facility access and logistical support that has not been formally documented. This is understood by everyone who knows the label and not mentioned by any of them. + +--- + +## Reach Position + +Nordschatten Records occupies a specific cultural niche in the west reach: the label that makes music for transitions, for transit, for the periods between engagement with the world. There is a persistent Meridian community of Interstitium-experience enthusiasts who travel specifically for the gate transit sensation and who have, over the past two decades, adopted Nordschatten's catalog as their preferred accompaniment for the experience. The label has no relationship with this community. The community's existence is known to the label's founders, who find it simultaneously flattering and slightly beside the point. + +The label has declined, on three separate occasions, licensing offers from transit hospitality services that wanted to use Nordschatten catalog as ambient sound in transit lounges. The reasons given were not detailed. The general understanding is that the founders consider being ambient sound in a transit lounge a category error: the music is not background. The transit lounge is not an appropriate context. The listeners who want it will find it. + +--- + +**Cross-References:** +- [Bífröst Marmor](bifrost-marmor.md) — co-located at Nyrheim; acoustic source material + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/norrland-woodcraft.md b/wiki/corporations/norrland-woodcraft.md index 672190211..b54849ecb 100644 --- a/wiki/corporations/norrland-woodcraft.md +++ b/wiki/corporations/norrland-woodcraft.md @@ -1,24 +1,96 @@ --- title: "Norrland Woodcraft" -description: "Norrland Woodcraft — heritage craft manufacturer based in Nyrheim, west reach" +description: "Nyrheim-based premium woodcraft manufacturer operating in west reach tradition — genuine sustainable forestry certification, mid-range imported timber products sold under it, and a certification body whose independence has never been tested by an external audit" slug: norrland-woodcraft category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) tags: [timber, heritage_craft, west_reach, mark, artisan] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [kellervolk, nordhavn-financial, lowlands-consumer] --- # Norrland Woodcraft **Type:** Corporation — Heritage Craft Manufacturer +**Also Known As:** Norrland, Norrland House **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Nyrheim (GJ 3737) +**Scope:** West reach corridor primary; inward premium distribution secondary +**Headquarters:** Nyrheim (GJ 3737) — 3-aperture hub, 6 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; certified sustainable woodcraft production -Norrland Woodcraft is a heritage craft manufacturer operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +Nyrheim's primary habited world has extensive managed forest zones — a careful response by the founding generations to a climate that could support significant tree growth and a settlement community that needed structural timber while wanting to avoid the cycles of extraction and depletion that had characterized poorly managed forest economies in earlier settlement histories. The managed forestry model has been a point of civic pride for generations and is referenced in Nyrheim's cultural identity materials as an example of what careful planning looks like. + +Norrland Woodcraft is the west reach's most recognized manufacturer of furniture and architectural woodwork using timber from these managed zones. The company produces work across a range from high-precision bespoke cabinetry to production-line furniture that appears in institutional and residential settings throughout the west reach corridor. The Nyrheim Sustainable Forestry certification mark on all Norrland products is the argument that the brand's environmental claims are backed by something more than marketing language. + +--- + +## Origin + +Norrland Woodcraft was founded by an extended family of woodworkers who had been part of Nyrheim's forest management community since the system's second generation of settlement. The family's craft tradition was built around the specific character of Nyrheim's managed timber — the dense grain structure of the boreal hardwoods, the specific color variation that the cool growing season produces, the way the timber responds to the finishing processes that the family had developed over two generations. + +The company was formally incorporated in the second generation of the family's craft operation to allow investment in production equipment and a broader distribution network. The founding incorporated generation also established the Nyrheim Sustainable Forestry certification body — a formal structure to document and certify the sustainable forestry practices that the family, and the broader Nyrheim forestry community, had been following for decades. Certification gave the practices an official form and created a credential that export documentation could reference. + +--- + +## Operations + +**Premium workshop:** Hand-crafted furniture and architectural joinery produced at the Nyrheim facility from certified local timber. The premium line is genuine: local timber, traditional craft methods, the joinery techniques that define the Norrland aesthetic. It is produced by a workshop of eighteen skilled craftspeople and constitutes approximately 35% of Norrland's revenue by value. + +**Production line:** Mid-range furniture produced in higher volumes at the same Nyrheim facility, using a combination of local timber and imported timber stock. The production line uses automated manufacturing processes with hand finishing, and represents approximately 50% of revenue by volume. + +**Imported timber:** Norrland purchases timber from managed forest operations at a west reach system two hops distant when local supply is insufficient for production line demands. The imported timber is certified as sustainably sourced by the source system's own forestry authority. It is not, however, Nyrheim timber. + +**Distribution:** West reach direct through the company's own logistics relationships. Inward distribution through a premium goods importer who handles the brand's inward corridor presence. + +--- + +## Political Relationships + +**Nyrheim forestry community:** Norrland's relationship with Nyrheim's forestry operations is deep and multi-generational — the company is a major commercial buyer of managed timber, and its success has historically contributed to the economic case for maintaining the managed forest zones against competing land use pressures. The relationship is genuine and mutually sustaining. + +**Nyrheim local government:** The managed forestry model is a point of civic pride and is supported through land use policies that reserve forestry zones against other development. Norrland's position as the most visible commercial user of the managed timber supports the political case for those policies. + +--- + +## The Certification Body + +The Nyrheim Sustainable Forestry certification body was established at Norrland's founding, with a governance structure that includes representatives from the forestry community, the local government, and commercial timber users. Norrland Woodcraft has held one of the commercial user seats since the body's founding. No seat has ever been held by an entity without a commercial or governmental relationship to Nyrheim's forestry industry. + +The certification standard the body administers was written by the founding generation of the body's membership — primarily Norrland's founders and the forestry community they worked with. The standard defines "Nyrheim sustainable forestry" practices and provides the basis for the certification mark. Its key provision, for the purpose of what can bear the mark, defines certified products as those produced from "timber managed under Nyrheim Sustainable Forestry standards, or from timber produced under equivalent standards and subjected to Nyrheim-standard value-addition processing." + +The "equivalent standards and value-addition" clause was written to allow Norrland to use imported timber in its production line while maintaining the certification mark. The clause was not the subject of public consultation when it was introduced; it was a board decision that reflected Norrland's operational needs at the time it was added, seven years ago, when imported timber first became a significant fraction of Norrland's production volume. + +The certification body has never been audited by an external body. The Lattice Commission's standards for certification bodies that issue marks used in interstate commerce require periodic external review. Norrland's legal team reviewed this requirement when the certification mark was introduced and found that the Commission's review requirement applies to certification bodies with commercial scope exceeding a defined revenue threshold. The Nyrheim Sustainable Forestry certification body's fee structure was designed to stay below this threshold, at which point the external review requirement does not apply. + +Products from the production line — made partly from imported timber under the value-addition clause — carry the same Nyrheim Sustainable Forestry mark as the premium workshop pieces made from local timber. The documentation accompanying products does not distinguish between local and imported timber sources. + +--- + +## Gameplay Relevance + +Norrland Woodcraft is relevant to west reach investigations touching certification body governance, sustainable sourcing claims, and the relationship between craft heritage and commercial scaling. The company's products appear throughout west reach institutional and residential spaces. + +The certification body is the investigative thread. The evidence requires three pieces: the certification standard's value-addition clause (in the body's published standards documents), the governance structure that gives Norrland a permanent seat with no external oversight (in the body's founding charter), and Norrland's procurement records showing the imported timber volumes (in the company's supply records). A player who assembles these finds a certification mark that is technically self-certified under standards the certified company helped write, applied to products that do not fully meet the mark's implied meaning. The fee structure designed to stay below the external review threshold is the fourth piece — it is in the body's financial records and is the element that shows the design was deliberate. + +--- + +**Cross-References:** +- [Nyrheim](../star-systems/GJ-3737/index.md) — Headquarters system; managed forest zones; certification body +- [Kellervolk](kellervolk.md) — Nyrheim system neighbor; cultural context +- [Nordhavn Financial](nordhavn-financial.md) — Nyrheim system neighbor; commercial lending relationship +- [Lowlands Consumer](lowlands-consumer.md) — West reach industrial context; comparable certification question + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/ondori-interactive.md b/wiki/corporations/ondori-interactive.md index a7f158869..e85611e67 100644 --- a/wiki/corporations/ondori-interactive.md +++ b/wiki/corporations/ondori-interactive.md @@ -1,24 +1,95 @@ --- title: "Ondori Interactive" -description: "Ondori Interactive — cultural content producer based in Jeonnam, east reach" +description: "East reach cultural content studio — interactive narrative experiences from Jeonnam, open creation platform with undisclosed discovery algorithm favoritism toward paid partners" slug: ondori-interactive category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Jeonnam (GJ 3728B) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [sungshin-music, open-corridor-stream, resonance-premium] --- # Ondori Interactive **Type:** Corporation — Cultural Content Producer **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Jeonnam (GJ 3728B) +**Scope:** East reach primary; core distribution secondary +**Headquarters:** Jeonnam (GJ 3728B) — east reach corridor, 4 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; platform operator and original content studio -Ondori Interactive is a cultural content producer operating out of Jeonnam (GJ 3728B). Details to be expanded. +--- + +## Overview + +Ondori Interactive produces interactive narrative experiences — a form of entertainment that sits between authored story and participatory simulation. Their catalogue spans the full range: civic dramas where the audience shapes political outcomes, historical reconstructions of east reach settlement that let players inhabit founding-generation perspectives, and lighter social entertainments with no pretense toward documentary weight. Ondori makes all of these and distributes them through its own platform, which also accepts independent creator submissions. + +The company's public identity is built around the phrase "east reach stories, told from inside." This refers to both the interactive form and to Ondori's consistent commitment to sourcing creative talent from Jeonnam and the adjacent east reach systems. The platform hosts over four thousand independent titles from creators who are not Ondori employees. This is genuine. The commitment to regional talent is not a marketing fabrication. + +--- + +## Origin + +Ondori was founded forty years ago as a boutique studio producing political simulation experiences for corporate training clients — a functional tool before it was an entertainment product. The transition to general entertainment came when the studio's internal simulation engine, built to model social dynamics for corporate use, turned out to produce narratives that people wanted to engage with for their own sake. + +The open creation platform launched twenty-two years ago, initially as a technical showcase: if Ondori's engine could produce compelling work, so could independent creators using the same tools. The platform grew faster than the studio expected. Within a decade, the independent creator catalogue was ten times the size of Ondori's own output. The studio reorganized around the platform, treating its own production work as a prestige anchor and the creator ecosystem as the actual business. + +--- + +## Operations + +**Original production:** Ondori's in-house studio produces six to eight major interactive works per year. These anchor the platform's reputation. The studio employs fifty-four people in Jeonnam, with writing, design, and engineering functions integrated in a single production pipeline. Most titles require two to three years of development. The studio does not rush releases. + +**Platform operations:** The open creation platform hosts independent creator submissions under a tiered licensing model. Standard creators publish at no cost and receive 70% of revenue generated. The platform takes 30%. Preferred Partner creators — a designation requiring a separate application and approval process — receive enhanced discovery placement, promotional support, and early access to platform engine updates. They pay a 12% platform fee in addition to the standard 30% split. + +**Distribution:** Ondori's titles and the independent creator catalogue are licensed to major core distribution platforms including Open Corridor Stream and Resonance Premium. Ondori retains separate distribution rights on these licenses and collects platform fees regardless of where a title is accessed. + +**Workforce:** The studio's in-house employees are well-compensated relative to the regional market. Independent creators have no employment relationship with Ondori; they are platform users under the creator licensing agreement. + +--- + +## Political Relationships + +**Sungshin Music:** The primary partner for original soundtrack production on Ondori's in-house titles. The relationship is long-standing — over twenty years of production collaboration — and several Sungshin artists have become associated with specific Ondori title aesthetics. The partnership is commercial but has developed the informality of long practice. + +**Open Corridor Stream / Resonance Premium:** Core distribution partners. Both platforms license Ondori's catalogue for reach-wide access. Ondori's distribution agreements with both platforms include performance clauses that expire on a three-year cycle; the terms of the current agreements have not been publicly disclosed. + +**Lattice Commission:** Ondori's platform operates under the Commission's cultural content licensing framework, which requires registration of all commercial titles above a minimum revenue threshold. The compliance relationship is routine. Ondori files required documentation and has not had a certification issue. + +--- + +## What They Don't Talk About + +Eighteen months ago, Ondori's platform engineering team completed a revision to the discovery algorithm — the system that determines which titles a platform user sees when they browse without searching for a specific title. The revision was documented internally as a "relevance weighting optimization" intended to surface content that users were more likely to engage with rather than titles that simply had the most raw plays. + +The practical effect of the revision is that titles from Preferred Partner creators — who pay a 12% supplemental fee on top of the standard platform split — are weighted significantly more favorably in the discovery algorithm than titles from standard creators with equivalent or superior engagement metrics. A standard creator's title with strong user ratings and above-average completion rates is surfaced less than a Preferred Partner title with lower engagement, because the algorithm now weights the creator's fee tier as a relevance signal. + +The discovery weighting change was not disclosed to creators. Standard tier creators who have seen their play numbers fall since the revision and asked the platform support team about it have been told that "algorithm updates periodically recalibrate relevance weighting." The documentation for this change is in Ondori's internal engineering archive under the relevance optimization project. + +The analytics data that would make the weighting bias demonstrable is in the same engineering system: per-title play metrics broken down by creator tier, engagement rate, and discovery rank since the revision. A direct comparison against Preferred Partner enrollment records would show the correlation numerically rather than circumstantially. + +--- + +## Gameplay Relevance + +Ondori Interactive is a regional economic presence — its platform fees are visible in commercial records, its titles appear in entertainment inventories, and its Preferred Partner agreement terms are something a player working in the east reach creator community might encounter through an independent creator source. + +The discovery algorithm documentation is the investigative thread. A player who obtains internal engineering records — through access to Ondori's development systems or through a source inside the platform team — finds evidence that a revenue-generating fee tier is being used as a content ranking signal in a system marketed as neutral relevance optimization. The independent creator community on the platform would have specific interest in this information. Whether they would act on it is a question the world can answer. + +--- + +**Cross-References:** +- [Jeonnam](../star-systems/GJ-3728B/index.md) — Headquarters system; east reach corridor +- [Sungshin Music](sungshin-music.md) — Long-term soundtrack production partner; east reach +- [Open Corridor Stream](open-corridor-stream.md) — Core distribution partner; catalogue licensing +- [Resonance Premium](resonance-premium.md) — Core distribution partner; catalogue licensing + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/open-corridor-stream.md b/wiki/corporations/open-corridor-stream.md index bd9fe30b1..d8f6671a4 100644 --- a/wiki/corporations/open-corridor-stream.md +++ b/wiki/corporations/open-corridor-stream.md @@ -1,24 +1,97 @@ --- title: "Open Corridor Stream" -description: "Open Corridor Stream — media platform and catalogue service based in Groombridge, core" +description: "Core-based media catalogue platform — independent creator distribution across the Reach, with an undisclosed institutional licensing revenue stream that bypasses creator royalty terms" slug: open-corridor-stream category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [platform_catalogue, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ondori-interactive, reach-standard-media, sungshin-music, resonance-premium, reach-archive-standard, transit-library] --- # Open Corridor Stream -**Type:** Corporation — Media Platform And Catalogue Service +**Type:** Corporation — Media Platform and Catalogue Service **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; reach-wide content licensing secondary +**Headquarters:** Groombridge (GJ 380) — core corridor, 2 hops from Gateway +**Classification:** Sub-Syndic platform enterprise; independent content distributor -Open Corridor Stream is a media platform and catalogue service operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Open Corridor Stream is the largest independent content distribution platform in the Reach by catalogue volume. It operates a streaming and download service accessible from any system on the network, distributing audio, visual, interactive, and long-form narrative content produced by independent creators under a standard revenue-sharing model. As of the most recent published figure, the platform hosts over 280,000 active titles across all content categories, with an active creator base distributed across every corridor. + +The company's public identity is built around accessibility and creator independence. The platform charges no upfront listing fees. Any creator can publish. The revenue split — 65% to the creator, 35% to OCS — is posted publicly and applies uniformly to individual subscriber revenue. The platform's marketing consistently emphasizes that it was built as an alternative to corporate-owned distribution networks that extract higher fees and impose more restrictive licensing conditions. + +This positioning is accurate as far as it goes. Open Corridor Stream is meaningfully more favorable to independent creators than most alternatives available twenty years ago. What has changed since then is not the advertised terms. It is the revenue composition. + +--- + +## Origin + +Open Corridor Stream launched thirty-one years ago from Groombridge as a technical experiment by a small engineering team that had previously built private media archive systems for the financial district. The team's insight was that the same secure-transfer infrastructure used to move financial data across the gate network could move media files. They built a distribution layer on top of it, signed twenty-three independent creators in the first year, and discovered that the combination of low fees and reach-wide access was something the creator community had not previously had. + +Growth was slow for the first decade and then rapid. The platform's catalogue volume passed 10,000 titles in year twelve, then 50,000 in year nineteen. By then it was profitable. The founders sold their controlling interest to a Groombridge institutional investor fourteen years ago at a valuation that made them wealthy. The management team the investors installed is still in place. + +--- + +## Operations + +**Creator distribution:** Standard creator agreements give OCS 35% of per-subscriber revenue, 30% of per-download revenue, and 30% of any bundled package revenue in which the title is included. These rates are public and have not changed in eleven years. + +**Platform scale:** 280,000 active titles, ~12,000 creator accounts, approximately 1.4 million paying subscribers across all access tiers at last published figure. The subscriber base is spread across all corridors, with core and inward corridors representing the highest concentration. + +**Curation:** The platform maintains a recommended catalogue surfaced by algorithm and by human editorial selection. The editorial team is four people. Algorithmically surfaced recommendations account for approximately 90% of platform discovery. + +**Technical infrastructure:** OCS runs its distribution infrastructure from Groombridge, using a leased capacity arrangement with a core network operator. The infrastructure team is eleven people. The engineering team that built the original system no longer works there. + +--- + +## Political Relationships + +**Creator community:** OCS's relationship with its creator base is the basis of its competitive position. Creators with established catalogues typically stay on the platform despite competing offers because the subscriber base is difficult to replicate elsewhere. OCS invests selectively in creator-facing tools to maintain this lock-in, but the investment is not proportional to platform revenue. + +**Resonance Premium / Transit Library / Reach Archive Standard:** Competitors in the platform-catalogue category. Each operates a different positioning: Resonance is premium-curated, Transit Library is access-oriented, Reach Archive Standard emphasizes permanence. OCS occupies the independent-creator niche. There is overlap at the margins and periodic catalog-sharing agreements for specific titles. + +**Lattice Commission:** Standard media platform registration and content licensing compliance. Routine relationship. + +--- + +## What They Don't Talk About + +Eleven years ago, OCS introduced an institutional licensing tier — bulk-access packages sold to corporations, educational networks, and government-affiliated institutions at flat annual rates. An institutional subscriber pays a single flat fee for access to the full OCS catalogue on behalf of its employees or constituents. This tier is not mentioned in the creator agreement. + +Institutional licensing now represents 28% of OCS's total revenue. Creators receive no share of institutional licensing revenue. When an OCS title is accessed by an employee of a corporate institutional subscriber, the creator's royalty counter does not increment. The institutional fee is classified in OCS's internal accounts as a "platform access license" rather than content distribution revenue, and the creator agreement's revenue-sharing terms apply specifically to content distribution revenue. + +Creators who have asked the platform's support interface about institutional licensing revenue have been told that institutional agreements are "platform-level arrangements separate from individual content licensing." This is legally accurate. The distinction between a platform-level arrangement and content distribution is not one OCS explains to creators before they sign. + +--- + +## Gameplay Relevance + +OCS is background infrastructure for any investigation touching the east or core reach entertainment economy. Creator accounts and revenue data are visible in commercial records. The institutional licensing revenue line appears in OCS's quarterly financial filings as a separate category; a player with access to those filings and knowledge of the creator agreement terms could identify the gap. + +The more accessible thread is a creator source — someone who noticed the discrepancy between their play metrics and their revenue, investigated the institutional access tier, and concluded that they are not receiving compensation for a significant fraction of the plays their work is generating. Whether this creator has documented anything, and where that documentation is, is a question the world can answer. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; core corridor +- [Ondori Interactive](ondori-interactive.md) — East reach content studio; catalogue licensee +- [Reach Standard Media](reach-standard-media.md) — Core content producer; catalogue partner +- [Resonance Premium](resonance-premium.md) — Competitor; premium catalogue segment +- [Transit Library](transit-library.md) — Competitor; access-oriented catalogue segment +- [Reach Archive Standard](reach-archive-standard.md) — Competitor; permanence-oriented catalogue + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/orkney-ceramics.md b/wiki/corporations/orkney-ceramics.md index 51275ca6b..dd8b49f18 100644 --- a/wiki/corporations/orkney-ceramics.md +++ b/wiki/corporations/orkney-ceramics.md @@ -1,24 +1,95 @@ --- title: "Orkney Ceramics" -description: "Orkney Ceramics — heritage craft manufacturer based in Cairn, north reach" +description: "North reach heritage ceramics from Cairn — mineral-glazed stoneware with documented terroir provenance, and a volume line whose off-system forming stage is not disclosed in provenance documentation" slug: orkney-ceramics category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Cairn (GJ 845) tags: [heritage_craft, north_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [highland-cooperative, shetland-wool] --- # Orkney Ceramics **Type:** Corporation — Heritage Craft Manufacturer **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Cairn (GJ 845) +**Scope:** North reach primary; inward corridor specialty retail secondary +**Headquarters:** Cairn (GJ 845) — north reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; geographic indication holder -Orkney Ceramics is a heritage craft manufacturer operating out of Cairn (GJ 845). Details to be expanded. +--- + +## Overview + +Orkney Ceramics produces stoneware and decorative ceramics from Cairn, a system whose particular combination of iron-rich clay deposits, low-humidity atmosphere, and long-cycle kiln-firing tradition has produced a distinctive aesthetic over three hundred years of continuous production. The company is the largest of Cairn's three operating ceramics houses and the one with the strongest inward market distribution — its pieces appear on specialty shelves at Wolf 359 and in the premium housewares sections of a handful of core retail importers. + +The company's brand rests on two claims: that its work is produced from Cairn-sourced materials using traditional Cairn techniques, and that its mineral-rich glaze character is specific to the local water chemistry and cannot be replicated off-system. Both claims are substantially accurate. The glaze character is genuine. The mineral texture that distinguishes Orkney's premium pieces from comparable work produced elsewhere is real and documented. This documentation is the basis of the Lattice Commission-registered geographical indication that protects the "Cairn-fired ceramics" designation. + +--- + +## Origin + +The founding kiln was established two hundred and ninety years ago by a family of ceramic artists from a mixed-heritage settlement who had been drawn to Cairn by the quality of its clay deposits. The early work was functional — storage vessels, cooking ware, utility pieces for a small and isolated system — and did not become an export product for the first century. The aesthetic character the company is now known for developed slowly, as successive generations of kilnworkers refined their understanding of how Cairn's specific materials behaved under firing. + +Inward market distribution began approximately ninety years ago when a trade expedition from Wolf 359 stopped at Cairn and one of the expedition members, apparently a collector, returned with a crate of pieces. The subsequent word-of-mouth reach into Wolf 359's collector community produced the first outside order. Commercial export has been continuous since. + +--- + +## Operations + +**Prestige line:** Hand-thrown pieces, single-kiln-run glazing using locally harvested glaze materials, fired on long cycles in the original-design wood-and-inert-gas kilns that Cairn's ceramicists have used for two centuries. Each piece is individually marked. Production is approximately 600 pieces per year. This is what the inward market pays premium prices for, and it is genuinely what it claims to be. + +**Standard and volume line:** Machine-assisted forming, shorter firing cycles, a larger output run intended for mid-market distribution within the north reach corridor. This line is sold under the same Orkney Ceramics branding as the prestige line, at lower price points, and accounts for 70% of total production volume. + +**Geographic indication:** The Lattice Commission-registered designation "Cairn-fired ceramics" is affixed to all Orkney production, prestige and standard alike. The designation's technical definition requires that the final firing of the piece takes place in a Cairn-system kiln. Orkney's entire production, including the volume line, meets this requirement. + +**Distribution:** The prestige line goes through specialty importers. The standard line distributes through Highland Cooperative's north reach distribution network. + +--- + +## Political Relationships + +**Highland Cooperative:** Primary distribution partner for the standard and volume line within the north reach corridor. The cooperative relationship is commercial and multi-year; Orkney's volume line benefits from the Cooperative's established freight relationships. + +**Shetland Wool:** Another Cairn-adjacent north reach heritage craft producer with a similar geographic indication model — premium positioned for inward markets. The two companies do not compete directly but share some distribution channels and have occasionally coordinated on joint showcase events at inward specialty retail venues. + +**Lattice Commission:** The geographic indication registration is the critical regulatory relationship. The Commission certifies Orkney's "Cairn-fired" designation. Renewal audits have consistently found Orkney's production compliant. The standard of compliance — what "Cairn-fired" technically requires — is specific to final-stage kiln operation. + +--- + +## What They Don't Talk About + +Fourteen years ago, Orkney restructured the volume line's production to address increasing raw material costs. The volume line's clay, previously sourced from Cairn's own deposits, was moved to a contracted supplier in a south reach system with comparable mineral composition and significantly lower extraction costs. The initial forming and bisque firing of volume line pieces now takes place at the off-system facility. The pieces are then shipped to Cairn, where the final glaze firing occurs in an Orkney-operated kiln. + +The final firing on Cairn means the pieces technically carry the "Cairn-fired ceramics" geographical indication legitimately. The indication's registered definition requires only that the final firing occur in a Cairn-system kiln. Orkney's legal team confirmed this interpretation before the restructuring was completed. + +The provenance documentation shipped with Orkney volume line pieces describes the pieces as "Cairn-produced ceramics, Cairn-fired." The second clause is accurate. The first is not. Orkney's press materials, which have not been updated since the restructuring, describe all production as using Cairn's own mineral-rich clay deposits. + +--- + +## Gameplay Relevance + +Orkney Ceramics is a texture element for the north reach economy and for investigation threads involving geographic indication fraud or the gap between certification compliance and substantive accuracy. + +The production restructuring documentation is the investigative thread. A player who accesses Orkney's supplier contracts or production records will find two distinct supply chains — the Cairn-extraction supply chain for the prestige line, and the off-system contracted supply chain for the volume line. The geographic indication renewal audits, which focus on the final firing stage, contain no reference to the origin of the clay because the Commission's registered standard does not require this information. The gap between what the audits examine and what the provenance documentation implies is the discrepancy. + +A source at the off-system clay supplier would be the most direct route to documentation. The supplier's shipping manifests to Cairn exist. +Freight records filed with Cairn's inbound logistics registry corroborate the same relationship — fourteen years of consistent inbound shipments from a south reach origin, at volumes incompatible with occasional raw material sampling. + +--- + +**Cross-References:** +- [Cairn](../star-systems/GJ-845/index.md) — Headquarters system; north reach corridor +- [Highland Cooperative](highland-cooperative.md) — Regional distribution partner; north reach +- [Shetland Wool](shetland-wool.md) — Adjacent north reach heritage craft; shared distribution channels + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/pembrokeshire-smithy.md b/wiki/corporations/pembrokeshire-smithy.md index b590c4ced..397b217ab 100644 --- a/wiki/corporations/pembrokeshire-smithy.md +++ b/wiki/corporations/pembrokeshire-smithy.md @@ -1,24 +1,96 @@ --- title: "Pembrokeshire Smithy" -description: "Pembrokeshire Smithy — heritage craft manufacturer based in Pemberton, north reach" +description: "North reach metalwork and precision tools — heritage hand-finishing tradition from Pemberton, with a machine fabrication backbone and a 49% off-system ownership stake that neither party has disclosed" slug: pembrokeshire-smithy category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Pemberton (GJ 194B) tags: [heritage_craft, north_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [sunderland-precision, kinlochewe-instruments, sendai-forge] --- # Pembrokeshire Smithy **Type:** Corporation — Heritage Craft Manufacturer **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Pemberton (GJ 194B) +**Scope:** North reach primary; technical and trade tool supply secondary +**Headquarters:** Pemberton (GJ 194B) — north reach corridor, 6 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; family-operated heritage manufacturer -Pembrokeshire Smithy is a heritage craft manufacturer operating out of Pemberton (GJ 194B). Details to be expanded. +--- + +## Overview + +Pembrokeshire Smithy produces hand tools, precision cutting instruments, and custom metalwork for the north reach trade market. The company has operated from Pemberton for over two hundred years under continuous family management. Its products are known for durability and precision — the kind of tool that a professional will use for thirty years without replacing. The inward market knows the Pembrokeshire name through specialty trade suppliers who carry the premium line; within the north reach itself, a Pembrokeshire blade is the default reference for quality metalwork. + +The company's marketing emphasizes two things: generations of family ownership and hand-finishing tradition. Both claims are present in every catalogue, every trade advertisement, and every piece of provenance documentation that ships with a tool. The "seventh generation" ownership line is the most prominent. It appears first. + +--- + +## Origin + +The founding smithy was established two hundred and thirty years ago by a metalworker family that arrived at Pemberton in the early settlement wave. The original operation was repair work — agricultural equipment, structural fittings, general fabrication for a system that needed all of these things and had few people capable of providing them. The reputation for precision developed gradually, through the particular patience of the second-generation head, who applied watch-repair methodology to larger metalwork and found that agricultural tools built to the same tolerances lasted significantly longer than the regional norm. + +The transition to exported goods began a hundred and fifty years ago. By the fourth generation, Pembrokeshire tools were a north reach trade staple — the kind of thing a supplier stocked because customers asked for them by name. + +The current generation — the seventh — took over the operating entity eighteen years ago. + +--- + +## Operations + +**Premium line:** Precision cutting tools, measuring instruments, and custom fabrication pieces produced with hand-finishing at every significant tolerance stage. A senior craftsperson inspects and adjusts each piece before certification. Production is approximately 200–400 pieces per year depending on complexity. Lead times are long. Customers accept this. The premium line is the basis of the Pembrokeshire reputation. + +**Standard and trade line:** Working tools for the north reach trade market — knives, files, gauges, structural fittings in standard sizes. Higher volume, shorter production cycles, lower price points. This is the operating majority of production output by unit count. + +**Fabrication:** The standard line's forming and shaping stages are handled by semi-automated systems operating to specification. The hand-finishing stage — inspection, edge-work, and fit-to-spec adjustment — is performed by skilled workers and is genuine. The company's marketing describes its products as "hand-finished," which is technically accurate for all production. + +**Workforce:** Forty-two employees at the Pemberton facility, including nine craft specialists responsible for the premium line and hand-finishing work across the standard line. + +--- + +## Political Relationships + +**Sunderland Precision:** A north reach precision technology manufacturer that sources specialty tool stock from Pembrokeshire for its calibration workshop operations. The relationship is commercial, multi-year, and valued by both parties. Sunderland's calibration tools carry a Pembrokeshire sub-specification plate that has become a mark of quality in the wider calibration instrument market. + +**Kinlochewe Instruments:** A north reach scientific instrument producer that occasionally sources custom metalwork from Pembrokeshire for specialized components outside Kinlochewe's own fabrication scope. Intermittent commercial relationship. + +**Trade suppliers:** Pembrokeshire's distribution within the north reach is handled through a network of regional trade suppliers who stock the standard line on a wholesale basis. The premium line is sold direct from the Pemberton facility or through a small number of specialist retailers in the inward corridor. + +--- + +## What They Don't Talk About + +Seven years ago, the seventh-generation head entered into a partial acquisition arrangement with a west reach investment firm operating through a subsidiary registered in Confluent. The arrangement transferred 49% of the primary operating entity to the investment firm in exchange for capital that was used to upgrade the standard line's forming systems and retire a significant debt position. + +The family retains 51% ownership and full operational control. This is accurate. The "seventh-generation family ownership" claim in Pembrokeshire's marketing refers to the family's controlling stake and operational authority, which are real. The claim is silent on the ownership structure of the other 49%. + +The investment firm's subsidiary is registered in Confluent under a holding company name that does not reference either the firm or Pembrokeshire. The acquisition is recorded in the commercial registry that Pemberton's local records index, but the holding company structure means the off-system ownership is not visible to anyone reading only Pemberton's records. The family and the investment firm have maintained a mutual non-disclosure on the arrangement, which is contractually required and has not been breached. + +--- + +## Gameplay Relevance + +Pembrokeshire Smithy is local economic texture for the north reach — a trade-quality supplier present in workshop inventories and trade catalogues. The ownership structure is the investigative thread. + +A player tracing west reach investment patterns — either through commercial registry research or through a source connected to the Confluent investment firm — would find the holding company connection. The Pemberton commercial registry entry for the operating entity names the holding company as a 49% registered owner; the holding company's registered address in Confluent and its ownership chain through the investment firm are in Confluent's commercial records. + +Whether the seventh-generation head would prefer this not be surfaced, and what leverage that preference creates, is a question the world can answer. + +--- + +**Cross-References:** +- [Pemberton](../star-systems/GJ-194B/index.md) — Headquarters system; north reach corridor +- [Sunderland Precision](sunderland-precision.md) — Regional commercial client; calibration tool supply +- [Kinlochewe Instruments](kinlochewe-instruments.md) — Occasional commercial client; custom component fabrication + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/plainfield-agricultural.md b/wiki/corporations/plainfield-agricultural.md index 571a25d13..b5b2c9e31 100644 --- a/wiki/corporations/plainfield-agricultural.md +++ b/wiki/corporations/plainfield-agricultural.md @@ -1,24 +1,99 @@ --- title: "Plainfield Agricultural" -description: "Plainfield Agricultural — consumer goods manufacturer based in Fremantle, north reach" +description: "North reach staple food producer from Fremantle — branded cooperative goods, reliable corridor supply chain, and a cooperative certification figure maintained precisely at the threshold it would otherwise fail" slug: plainfield-agricultural category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Fremantle (GJ 273) tags: [commodity_branded, north_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [fieldborn-grain, highland-cooperative, commonstock-foods] --- # Plainfield Agricultural -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Consumer Goods Manufacturer (Agricultural) **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Fremantle (GJ 273) +**Scope:** North reach primary; corridor-wide commodity supply secondary +**Headquarters:** Fremantle (GJ 273) — north reach corridor, 4 hops from Gateway +**Classification:** Sub-Syndic commodity enterprise; cooperative trust-mark holder -Plainfield Agricultural is a consumer goods manufacturer operating out of Fremantle (GJ 273). Details to be expanded. +--- + +## Overview + +Plainfield Agricultural is the largest producer of branded staple foods in the north reach. Its product range spans processed grains, preserved proteins, packaged legumes, and a line of shelf-stable meal components that together constitute a significant fraction of the corridor's imported food supply. Plainfield's packaging is recognizable — the plain white-and-green label design has not changed meaningfully in sixty years — and in many north reach systems it represents the default assumption of what a reliable food product looks like. + +The company holds a cooperative trust-mark certification from the north reach agricultural licensing body. The certification allows Plainfield to carry the "farmer-owned cooperative supply" mark on its packaging, which distinguishes it from corporate commodity producers in the consumer market. Trust-mark-bearing products command a modest but consistent price premium and benefit from the preference purchasing programs that several north reach system governments apply to cooperative-certified goods. + +--- + +## Origin + +Plainfield was established one hundred and forty years ago as a genuine cooperative — a collective of fifty-three farming families at Fremantle who pooled distribution infrastructure to reduce the cost of getting their output to market. The original governance structure gave each member farm one vote in operational decisions regardless of supply volume, and profit distribution was proportional to supply. + +Over the following century, consolidation and succession changed the member composition significantly. Several founding families left the cooperative and sold their membership stakes to Plainfield's operating company, which had been incorporated as a management entity. By eighty years ago, the operating company controlled a majority of membership votes. The cooperative structure persists — there are still member farms — but governance authority has been concentrated in the operating company for several generations. + +The trust-mark certification was obtained forty years ago and has been renewed on schedule. + +--- + +## Operations + +**Product manufacturing:** Plainfield operates three processing facilities at Fremantle — grain milling and packaging, a protein preservation plant, and a general food manufacturing building. The processing facilities are modern and well-maintained. Output is consistent and high-volume. + +**Supply chain:** Raw agricultural supply comes from a combination of member farms and non-member commodity suppliers. Member farm supply is purchased under long-term contracts at above-market rates; non-member commodity supply is purchased at market spot rates as needed to fill production requirements. The balance between member and non-member supply varies by year depending on member farm output. + +**Distribution:** Plainfield distributes through Highland Cooperative's logistics network for north reach delivery, and through Commonstock Foods' corridor-wide distribution agreements for export beyond the north reach. + +**Workforce:** The three Fremantle facilities employ approximately three hundred people, including management, processing, and logistics staff. Employment conditions are regulated by Fremantle's labor standards, which are mid-range for the north reach corridor. + +--- + +## Political Relationships + +**Fieldborn Grain:** A north reach agricultural producer and Plainfield's largest single member-farm supplier. The relationship is long-standing and commercially significant. Fieldborn's supply volumes are large enough that Fieldborn's output decisions materially affect Plainfield's member-supply percentage in any given year. + +**Highland Cooperative:** Primary distribution partner for the north reach. The Cooperative's freight network covers the corridor efficiently and Plainfield's volume makes it one of the Cooperative's largest clients. + +**Commonstock Foods:** The corridor-wide distribution partner for export beyond north reach systems. The relationship is commercial; Commonstock handles export logistics and takes a distribution margin. + +--- + +## What They Don't Talk About + +The cooperative trust-mark certification requires that the majority of Plainfield's supply — specifically 50% or more by weight — comes from certified cooperative member farms. This has been the threshold since the certification was established. + +Seven years ago, a series of agricultural failures at two major member farms — one drought-related, one a crop disease outbreak — reduced member farm supply to approximately 45% of total production requirements. Plainfield brought in non-member commodity supply to maintain production volume. The trust-mark certification lapsed below threshold for approximately eleven months. + +Since then, Plainfield has managed its supply sourcing to maintain the 54% member-supply figure — the lowest figure it can sustain without falling below certification threshold. The management is active: Plainfield's procurement team monitors the ratio weekly and adjusts non-member spot purchases to keep the figure stable. The current 54% figure is not the natural result of cooperative supply capacity; it is the managed result of deliberate procurement decisions designed to maintain certification. + +The certification body audits member supply percentages annually on the basis of Plainfield's submitted figures. The auditing does not independently verify those figures against Plainfield's procurement records. The submitted figures are accurate. The story those figures tell about cooperative commitment is not. + +--- + +## Gameplay Relevance + +Plainfield is economic background for the north reach — a commodity producer present in supply chain records and retail inventory wherever food goods are documented. The cooperative certification is the investigative thread. + +A player with access to Plainfield's procurement records — purchasing orders, spot-buy invoices, member farm supply contracts — can reconstruct the managed ratio and compare it to the certification threshold. The eleven months of sub-threshold operation seven years ago would be visible in procurement records as a period of significantly elevated non-member commodity purchasing. Whether those records are accessible through routine commercial documentation requests, or require more direct access, depends on the regulatory context the player is operating in. + +A source at the certification body would have the submitted annual figures. A source at Fieldborn Grain would have the member farm supply numbers from the other side. + +--- + +**Cross-References:** +- [Fremantle](../star-systems/GJ-273/index.md) — Headquarters system; north reach corridor +- [Fieldborn Grain](fieldborn-grain.md) — Largest member-farm supplier; north reach agricultural +- [Highland Cooperative](highland-cooperative.md) — Regional distribution network; north reach logistics +- [Commonstock Foods](commonstock-foods.md) — Corridor-wide export distribution partner + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/porto-alegre-technical.md b/wiki/corporations/porto-alegre-technical.md index 7c738b1b4..36b8b4478 100644 --- a/wiki/corporations/porto-alegre-technical.md +++ b/wiki/corporations/porto-alegre-technical.md @@ -1,24 +1,95 @@ --- title: "Porto Alegre Technical" -description: "Porto Alegre Technical — precision technology manufacturer based in Nowa Huta, south reach" +description: "South reach precision instrument manufacturer from Nowa Huta — survey and navigation equipment with a navigation drift defect masked as a firmware performance update" slug: porto-alegre-technical category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nowa Huta (GJ 896A) tags: [tech_premium, south_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [endymion-instruments, somatic-futures] --- # Porto Alegre Technical **Type:** Corporation — Precision Technology Manufacturer **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Nowa Huta (GJ 896A) +**Scope:** South reach primary; corridor-wide survey and navigation instrument supply secondary +**Headquarters:** Nowa Huta (GJ 896A) — south reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic technical enterprise; navigation and survey instrument manufacturer -Porto Alegre Technical is a precision technology manufacturer operating out of Nowa Huta (GJ 896A). Details to be expanded. +--- + +## Overview + +Porto Alegre Technical manufactures precision instruments for navigation assist, environmental survey, and positional calibration applications. Its client base is commercial — small vessel operators, planetary survey firms, orbital construction crews, and the industrial operations that depend on reliable positional data to work safely in environments where margin for error is physically costly. Porto Alegre occupies the upper-mid tier of the instrument market: not the prestige-tier instruments that research institutions specify for scientific work, but well above the commodity navigation aids available from volume producers. + +The company's primary competitive advantage is calibration quality. Porto Alegre's instruments are shipped with more extensive factory calibration documentation than most competitors provide, and the documentation is accurate — the instruments perform as the spec sheets say they will under specified conditions. This accuracy has built the company a strong reputation in the south reach commercial market over sixty years of continuous operation. + +--- + +## Origin + +Porto Alegre Technical was founded sixty-three years ago by an engineering team that had previously worked in Nowa Huta's shipyard calibration division. The founders' background was practical: they had spent years working with navigation instruments in conditions that exposed every reliability gap in the market's existing offerings. Their founding thesis was that the commercial navigation instrument market's weakest point was post-installation calibration drift — instruments that were accurate when shipped but drifted outside specification over time, with inconsistent manufacturer documentation about how quickly and under what conditions this happened. + +The original product line was a calibration verification tool — not an instrument itself, but a device for assessing how much an existing instrument had drifted. This established the company's credibility before it had a navigation instrument to sell. The first standalone navigation assist unit launched twelve years later. + +--- + +## Operations + +**Product lines:** Navigation assist units for small and medium commercial vessels, positional survey packages for planetary and orbital surface work, and a calibration and verification services line that traces back to the founding product. The navigation assist line is the largest revenue contributor. + +**Manufacturing:** The Nowa Huta facility employs seventy-eight people across engineering, manufacturing, and calibration. The facility's calibration lab is the most expensive installation — comprehensive calibration before shipment is not a cost-cutting component. Porto Alegre has absorbed the cost because the calibration quality is the basis of its market position. + +**Certification:** Navigation assist instruments sold for commercial use require Lattice Commission certification of the specification claims — accuracy, drift rate, operating environment tolerances. Porto Alegre's certification record is clean. All certified products perform to their stated specifications. + +**Distribution:** The south reach distribution is direct from the Nowa Huta facility for larger orders and through regional technical suppliers for smaller operators. Endymion Instruments, based in the south reach, has historically been the preferred supplier for Porto Alegre's survey package line. + +--- + +## Political Relationships + +**Endymion Instruments:** A south reach scientific instrument manufacturer that has been Porto Alegre's primary distribution partner for the survey product line. The relationship includes co-certification on some integrated instrument packages — systems that combine Endymion's sensing hardware with Porto Alegre's positional processing units. + +**Somatic Futures:** A south reach technical services company that has used Porto Alegre calibration equipment in some of its environmental monitoring installations. Intermittent commercial relationship. + +**Lattice Commission:** The Commission certifies Porto Alegre's navigation assist products under the commercial vessel equipment standards. The Commission's certification process tests instruments against stated specifications. Porto Alegre files accurate documentation. The relationship is routine. + +--- + +## What They Don't Talk About + +Eighteen months ago, Porto Alegre's quality control team identified a calibration error in a batch of navigation assist units shipped across a fourteen-month production window. The error affected the positional processing algorithm in a way that produced drift — an accumulating offset between the instrument's reported position and the actual position — that increased at a predictable rate over time. A unit from the affected batch running for fourteen months would be providing positional data approximately 0.3% off from its certified accuracy, increasing. Under most commercial use conditions, this is invisible. Under conditions requiring precise positional data — docking approach, survey grid work, formation coordination — it is not. + +The discovery was documented internally. The legal and technical teams reviewed the documentation and concluded that issuing a formal recall with disclosure of the drift nature and progression would trigger contractual non-compliance claims from clients who had used the units for precision work during the window, expose Porto Alegre to accuracy certification challenges, and require re-testing of all units from the affected production batch against Commission certification standards. + +A firmware patch was developed and released as a "navigation performance enhancement update." The patch corrects the algorithmic drift. The release notes describe performance improvements in general terms. They do not disclose that the update addresses a known defect, what that defect is, or how long the affected units were in service before correction. Clients who applied the update have corrected units. Clients who did not receive or did not apply the update have not been notified. + +--- + +## Gameplay Relevance + +Porto Alegre Technical is economic background for the south reach instrument market. The navigation drift issue is the investigative thread. + +A player working on a case involving positional inaccuracy — a survey error, a docking incident, a formation deviation — in the south reach may encounter Porto Alegre instruments in the affected equipment's documentation. The affected batch's production window is in Nowa Huta's manufacturing records. The quality control internal documentation exists and names the defect precisely. + +The firmware update release notes, cross-referenced against the internal defect documentation, demonstrate that the public release description is inconsistent with the internal characterization. A player with access to both documents — and the ability to understand what they are looking at — has found evidence of a deliberate non-disclosure to affected commercial operators. +The manufacturing batch serial numbers in the internal defect documentation map directly to unit serial ranges, making it possible to identify exactly which operators are running hardware that has not been corrected. + +--- + +**Cross-References:** +- [Nowa Huta](../star-systems/GJ-896A/index.md) — Headquarters system; south reach corridor +- [Endymion Instruments](endymion-instruments.md) — South reach distribution partner; survey product line +- [Somatic Futures](somatic-futures.md) — South reach technical client; environmental monitoring + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/prometheus-labs.md b/wiki/corporations/prometheus-labs.md index e2c594fe5..0d84c9e01 100644 --- a/wiki/corporations/prometheus-labs.md +++ b/wiki/corporations/prometheus-labs.md @@ -97,9 +97,9 @@ The second silence concerns what Prometheus knows. Three hundred years of resear ## Gameplay Relevance -Prometheus Labs is not present in the v0.1 slice. Its relevance is structural. +Prometheus Labs is not visibly present in mid-Reach freight districts. Its relevance is structural. -The economic pressure that makes smuggling rational in Van Maanen's Star — the gap between what workers earn and what lattice components cost — is downstream of a class structure that Prometheus Labs created and sustains. Workers who cannot afford enhanced neural lattice access cannot afford it in part because the Commission's regulatory costs are set by institutions whose Perpetual-class leadership has never had to make the same economic calculations. Prometheus Labs is not responsible for that lattice pricing. But Prometheus Labs made the Perpetual class, and the Perpetual class made the regulatory framework, and the regulatory framework made the smuggling market. +The economic pressure that makes smuggling rational in working-class systems — the gap between what workers earn and what lattice components cost — is downstream of a class structure that Prometheus Labs created and sustains. Workers who cannot afford enhanced neural lattice access cannot afford it in part because the Commission's regulatory costs are set by institutions whose Perpetual-class leadership has never had to make the same economic calculations. Prometheus Labs is not responsible for that lattice pricing. But Prometheus Labs made the Perpetual class, and the Perpetual class made the regulatory framework, and the regulatory framework made the smuggling market. For investigation, Prometheus Labs is an access problem of the highest order. The corporation has the most defended system in the Reach's gate topology, the most legally insulated regulatory status, and client relationships with the most powerful individuals in every institution the player might approach for assistance. A player who finds leverage on Prometheus Labs has found leverage on everything else simultaneously. That is why no one has managed it in three hundred years. diff --git a/wiki/corporations/quebrada-cultural.md b/wiki/corporations/quebrada-cultural.md index d0ac14914..102904098 100644 --- a/wiki/corporations/quebrada-cultural.md +++ b/wiki/corporations/quebrada-cultural.md @@ -1,24 +1,98 @@ --- title: "Quebrada Cultural" -description: "Quebrada Cultural — cultural content producer based in Matamba, south reach" +description: "South reach cultural content producer from Matamba — artist development funding and regional identity work, with commercial rights assignment terms that early-career creators do not understand at signing" slug: quebrada-cultural category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Matamba (GJ 884) tags: [cultural, south_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [open-corridor-stream, baia-fundo-productions] --- # Quebrada Cultural **Type:** Corporation — Cultural Content Producer **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Matamba (GJ 884) +**Scope:** South reach primary; corridor-wide distribution secondary +**Headquarters:** Matamba (GJ 884) — south reach corridor, 6 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; regional arts development organization -Quebrada Cultural is a cultural content producer operating out of Matamba (GJ 884). Details to be expanded. +--- + +## Overview + +Quebrada Cultural produces and funds narrative and documentary content for the south reach cultural market. The company operates a production studio in Matamba that creates original works, and an artist development program that identifies and funds emerging creators from south reach systems who otherwise lack access to production resources. + +The artist development program is Quebrada's most visible public identity. It is genuinely responsible for the careers of a number of south reach creators who have gone on to produce work distributed across the Reach. Quebrada does not take credit it has not earned — the development program has funded real work from people who would not have had the resources to make it without that funding. The south reach cultural community generally regards Quebrada as a legitimate patron organization. + +The terms under which Quebrada funds that work are a different question. + +--- + +## Origin + +Quebrada was founded forty-five years ago by a production collective that had built its initial catalogue through commission work for south reach system governments — documentary and ceremonial content, historical records, civic communications. This work was consistent but not artistically ambitious. The founding collective's internal goal, which they were explicit about in their early organizational documents, was to use the commission revenue to fund original creative work that reflected south reach experience. + +The artist development program launched twenty-eight years ago, initially as an informal mentorship structure where Quebrada's experienced producers worked with newer creators. It formalized into a grant-based program twelve years later, when Quebrada's revenue base was large enough to fund external creators at meaningful levels. The program's reputation grew quickly. It is now considered the primary institutional path for emerging south reach creators seeking production support. + +--- + +## Operations + +**Original production:** Quebrada's in-house studio produces eight to twelve original works per year — a combination of narrative content, documentary features, and shorter form pieces. The studio employs thirty-one people in Matamba. Original production is the company's prestige layer; it establishes the artistic credibility that makes the development program attractive. + +**Artist development program:** Approximately forty grants per year, ranging from modest short-form production support to larger multi-year development funds for significant projects. Grant recipients sign development agreements before funding is released. The program has a formal application and selection process. + +**Distribution:** Quebrada's catalogue — original production and development-program works — distributes through Open Corridor Stream and several south reach regional distributors. The distribution agreements generate licensing revenue on top of the production revenue. + +**Workforce:** The thirty-one studio employees are supplemented by a rotating pool of production contractors and the funded artists themselves during development periods. + +--- + +## Political Relationships + +**Open Corridor Stream:** Primary distribution platform for Quebrada's catalogue. The distribution agreement covers both original production works and development-program works; Quebrada holds the distribution rights on all content in the catalogue. + +**Baia Fundo Productions:** A south reach documentary production house with overlapping geography and some overlapping subject matter. The relationship is collegial and occasionally competitive — both organizations pursue similar public funding and both bid for some of the same commission work. They have co-produced a small number of projects. + +**South reach system governments:** Several south reach systems fund documentary and cultural content through commission agreements with Quebrada. These are recurring relationships that provide stable baseline revenue. + +--- + +## What They Don't Talk About + +The artist development program's standard grant agreement contains a commercial rights assignment clause located in section 7 of the eight-page contract. The clause states that any work produced using Quebrada development program funding, in whole or in part, assigns full and perpetual commercial rights to Quebrada Cultural upon completion and acceptance of the funded work. + +This clause is not negotiable. Quebrada's grants team, when asked about rights, describes the clause as standard for development funding agreements and notes that Quebrada's royalty-share program returns a portion of commercial revenue to the creator. The royalty-share rate is 25%. + +Industry standard for independent content rights is creator-retained with platform distribution licensing. Most early-career creators applying to Quebrada's program are not familiar with this standard. The grants team has no obligation to explain it. The clause is present in the contract. Creators who read section 7 understand what they are signing. + +The works produced under this structure — artistically independent, culturally significant, built on Quebrada's genuine support — are catalogued as Quebrada property. Several former program recipients, once established enough to work with agents, have discovered that their early work cannot be licensed without Quebrada's permission and at Quebrada's terms. + +--- + +## Gameplay Relevance + +Quebrada Cultural is a south reach cultural economy presence — a legitimate institution that does genuine development work under terms that most of its beneficiaries did not fully understand. + +The investigative thread is the rights structure. A player with access to signed grant agreements — from either Quebrada's files or a former recipient's documentation — has a clear contractual record of the rights assignment. Cross-referencing against the distribution revenue Quebrada has earned from development-program works, which is in commercial filings, produces a concrete economic picture of the asymmetry. + +A former recipient who discovered the rights situation after establishing themselves is a natural source — someone with a specific grievance, specific documentation, and specific knowledge of how the grants team described the terms at application. + +--- + +**Cross-References:** +- [Matamba](../star-systems/GJ-884/index.md) — Headquarters system; south reach corridor +- [Open Corridor Stream](open-corridor-stream.md) — Primary distribution platform; catalogue licensing +- [Baia Fundo Productions](baia-fundo-productions.md) — South reach documentary producer; occasional co-production + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/reach-archive-standard.md b/wiki/corporations/reach-archive-standard.md index f7a0047cd..ac56b3b59 100644 --- a/wiki/corporations/reach-archive-standard.md +++ b/wiki/corporations/reach-archive-standard.md @@ -1,24 +1,100 @@ --- title: "Reach Archive Standard" -description: "Reach Archive Standard — media platform and catalogue service based in Sirius, core" +description: "Core-based permanent media archive from Sirius — Commission-compliant institutional deposit service for cultural and historical content, with an undisclosed restricted classification tier that removes content from public access without depositor notification" slug: reach-archive-standard category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [platform_catalogue, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [open-corridor-stream, transit-library, resonance-premium, reach-standard-media] --- # Reach Archive Standard -**Type:** Corporation — Media Platform And Catalogue Service +**Type:** Corporation — Media Platform and Catalogue Service (Archival) **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; reach-wide institutional deposit and access secondary +**Headquarters:** Sirius (GJ 244A) — core corridor, Commission hub system, 1 hop from Gateway +**Classification:** Sub-Syndic platform enterprise; Commission-affiliated institutional archive operator -Reach Archive Standard is a media platform and catalogue service operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Reach Archive Standard operates the Reach's largest permanent media archive — a deposit and access service for cultural, documentary, journalistic, and historical content that organizations and individuals want preserved beyond the operational lifespan of their own systems. Unlike catalogue platforms designed for active commercial distribution, RAS is built around permanence: the commitment that a deposited work will remain accessible indefinitely, under the original depositor's access terms, as long as RAS operates. + +This commitment is what makes RAS the preferred institutional archive for courts, academic networks, press organizations, and government bodies that need long-term record availability. RAS's Commission-recognized status as a qualified deposit repository means that records deposited here satisfy official preservation requirements under the Reach's information management standards. Over two hundred institutional depositors rely on RAS for compliance-grade archival. + +The company's public position is that it does not modify access to deposited content without depositor consent. This position is stated prominently in the depositor agreement. It is almost entirely accurate. + +--- + +## Origin + +Reach Archive Standard was established forty-nine years ago in Sirius, which was the natural location for an institutional archive given the system's role as Commission headquarters and the hub of core regulatory activity. The founders were a small group of information management professionals who had identified a gap in the institutional market: there was no reach-wide permanent deposit service operating to Commission data standards. Most organizations archived their own records locally, which created duplication, inconsistency, and vulnerability to system-level events. + +The founding proposition was consolidation under a single Commission-compliant standard. The first institutional depositor — a Sirius-based court archive — signed three months after launch. Growth was slow for the first decade and then accelerated as the Commission began recommending RAS's deposit service in its guidance documentation for information management compliance. + +The Commission affiliation — not ownership, but recognized status — is the company's primary competitive advantage. + +--- + +## Operations + +**Deposit services:** Institutional and individual depositors submit content under customized access tier agreements — fully public, subscriber-accessible, restricted-access (password or credential required), or private (depositor-only access). RAS stores the content, maintains the access infrastructure, and guarantees that the depositor's stated access terms will be honored. + +**Access services:** Public and subscriber-tier deposited content is searchable and accessible from any system on the network. RAS's search and discovery function is used by researchers, journalists, and legal professionals who need verified access to primary sources and archived records. + +**Commission affiliation:** The qualified deposit repository status requires periodic audit by the Commission's information standards body. RAS has maintained qualified status since its initial certification. + +**Scale:** Approximately 4.7 million deposited works across all categories, 280 active institutional depositors, and a subscriber access base across the Reach. + +--- + +## Political Relationships + +**Lattice Commission:** The most significant operational relationship. The Commission's qualified deposit repository recognition is the basis of RAS's institutional client base. The Commission audit relationship — periodic reviews of compliance with deposit and access standards — is functional and cooperative. The Commission does not have visibility into individual access classification decisions. + +**Open Corridor Stream / Resonance Premium / Transit Library:** Competitors in the broader catalogue-platform space, though they serve different needs. RAS's focus on permanence and institutional compliance does not overlap significantly with OCS's creator-distribution model or Transit Library's subscription access model. + +**Reach Standard Media:** An institutional depositor that has used RAS to archive its journalism archive. The deposit relationship is commercial and long-standing. + +--- + +## What They Don't Talk About + +RAS's depositor agreement includes, in its access management section, a provision for "classification review" — a process by which RAS can temporarily reclassify deposited content to a restricted access tier if RAS's legal team determines that the content presents a liability risk to RAS's operations or to its qualified deposit repository status. The reclassification requires internal legal sign-off and is documented. It does not require depositor notification. + +The restricted classification function was used seven times in RAS's first thirty years of operation, all in response to genuine legal liability concerns. It has been used forty-three times in the last twelve years. In eleven of those cases, the reclassification was initiated following direct communication from an institutional client about specific deposited content that the client found uncomfortable. The deposited content in those eleven cases was factually accurate. The depositors — in most cases journalists or independent researchers — were not notified. + +Content under restricted classification remains in the RAS system and in RAS's internal indices. It does not appear in public search results. It is not accessible to subscriber accounts. The depositor's account interface shows the work as "under access review." No timeline for resolution is provided. + +--- + +## Gameplay Relevance + +RAS is a reach-wide institutional infrastructure element — the place where official records go to be preserved. For any investigation involving historical documents, archived journalism, or primary-source access, RAS is likely to hold relevant material. + +The restricted classification system is the investigative thread. A player looking for a specific archived work that has been restricted — appearing in RAS's internal indices but absent from public search — has found direct evidence of the classification system's application. The classification records include dates, the legal sign-off documentation, and in the eleven client-influenced cases, the communications that preceded classification. The communications are in RAS's legal team files. + +Comparing the classification records against the institutional client list reveals a pattern: which clients have requested restriction, and for which deposited content. The content that has been restricted — and who deposited it — defines the scope of what clients have been suppressing. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; Commission hub; core corridor +- [Open Corridor Stream](open-corridor-stream.md) — Competitor; active distribution catalogue +- [Transit Library](transit-library.md) — Competitor; access-oriented catalogue +- [Resonance Premium](resonance-premium.md) — Competitor; premium catalogue segment +- [Reach Standard Media](reach-standard-media.md) — Institutional depositor; journalism archive + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/reach-standard-media.md b/wiki/corporations/reach-standard-media.md index bc35ad437..9c169ff44 100644 --- a/wiki/corporations/reach-standard-media.md +++ b/wiki/corporations/reach-standard-media.md @@ -1,24 +1,99 @@ --- title: "Reach Standard Media" -description: "Reach Standard Media — cultural content producer based in Sirius, core" +description: "Core-based mainstream news and cultural content producer from Sirius — reach-wide distribution, published editorial independence charter, and an undisclosed advertiser revenue threshold that triggers internal calibration procedures" slug: reach-standard-media category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [cultural, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [reach-archive-standard, ashwick-broadcasting, open-corridor-stream, thorngate-media] --- # Reach Standard Media -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Cultural Content Producer (News and Editorial) **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; reach-wide distribution secondary +**Headquarters:** Sirius (GJ 244A) — core corridor, Commission hub system, 1 hop from Gateway +**Classification:** Sub-Syndic cultural enterprise; reach-wide news and editorial organization -Reach Standard Media is a cultural content producer operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Reach Standard Media produces the news and current affairs content that constitutes the Reach's default information layer. Its journalism covers Commission activity, corridor economics, industrial incidents, political developments in the systems that generate them, and the slow institutional changes that define how the Reach's governance and commerce evolve. RSM's content is not the only source for any of this. It is the source that most people across most corridors encounter as background. + +The company's editorial independence charter is its most publicized institutional commitment. The charter, available in full on RSM's institutional communications page, establishes formal separation between editorial decisions and advertising relationships. The charter is genuine in origin and genuine in daily operation — RSM's journalists and editors make coverage decisions without routine interference from the advertising team. The separation is real. + +The charter also contains a revenue threshold clause. This clause is not in the publicly distributed version. + +--- + +## Origin + +Reach Standard Media was established sixty-seven years ago in Sirius as an expansion of a smaller corridor news service that had been operating from Gateway. The Sirius relocation was strategic — proximity to the Commission made RSM the primary news organization covering Commission activity, which gave it a reliable source of high-significance stories and an institutional relationship with the Commission's public affairs office. + +The company grew by acquisition over the following three decades, absorbing regional news operations in the inward and core corridors and converting them into RSM bureaus. The reach-wide distribution network is the result of this consolidation. The editorial independence charter was adopted forty-two years ago, after a period of advertiser pressure on coverage decisions that produced a significant internal staff conflict and ultimately a public statement from RSM's founders that the organization would formalize its separation of editorial and commercial. + +--- + +## Operations + +**News and current affairs:** RSM's core output — daily news coverage, investigative features, and analytical commentary on Commission, economic, and political developments. The Sirius bureau produces the flagship content; system bureaus feed regional stories to the network. The investigative team is independent of both the news cycle and the advertising relationship. + +**Cultural content:** Original documentary and cultural features, produced at a lower volume than news but distributed through the same reach-wide network. This content is less commercially significant but maintains RSM's self-positioning as more than a news organization. + +**Distribution:** RSM's content distributes through its own subscriber network and through licensing agreements with regional distributors, including Open Corridor Stream for archival catalogue access. The journalism archive is deposited with Reach Archive Standard under an institutional agreement. + +**Workforce:** Approximately 180 editorial, production, and technical staff across the Sirius headquarters and eight corridor bureaus. + +--- + +## Political Relationships + +**Lattice Commission:** The proximity relationship is RSM's most significant institutional asset. Commission public affairs officers treat RSM as the primary media contact for official statements. RSM journalists have access to Commission press briefings that other organizations do not. This access is managed; RSM's coverage of Commission activity is not controlled by the Commission, but the access relationship creates incentives toward coverage that maintains the relationship. + +**Ashwick Broadcasting:** A core competitor in the reach-wide news segment. The two organizations compete directly for major stories and for the institutional relationships that generate access. RSM is larger; Ashwick is faster on some categories of story. + +**Reach Archive Standard:** Institutional depositor for RSM's journalism archive. The deposit relationship is long-standing. + +--- + +## What They Don't Talk About + +The editorial independence charter's publicly distributed text establishes formal separation between editorial and advertising and defines the procedures for managing advertiser relationships that attempt to influence coverage. What the publicly distributed text does not include is the full charter text. + +The internal charter — the version that RSM's governance board operates under — contains an additional section defining "revenue concentration" procedures. The section states that if any single advertising account represents more than 15% of RSM's total advertising revenue in a rolling quarterly period, RSM's editorial board is required to convene an "editorial calibration review" for any planned coverage that involves that advertiser or the advertiser's affiliated interests. + +The editorial calibration review process is defined in an internal procedures document. The procedures document does not specify what the review is supposed to produce. In practice, over fourteen consecutive quarters in which one advertiser has exceeded the 15% threshold, three significant investigative features involving that advertiser's affiliated interests have been postponed indefinitely after calibration reviews. None of these features were killed formally. They are in the system as "pending editorial clearance." + +RSM's journalists know that some stories involving specific subjects move slowly. The specific threshold mechanism that determines which subjects is not known outside the governance board and the senior editorial team. + +--- + +## Gameplay Relevance + +RSM is a reach-wide media institution — the default information environment for most of the Reach's population. For a player navigating the core or Commission-adjacent material, RSM's coverage decisions and access relationships are relevant context. + +The editorial calibration mechanism is the investigative thread. A player who accesses RSM's internal charter documentation — the full version, not the published summary — finds the revenue threshold clause. Cross-referencing against RSM's advertiser records identifies the account consistently above threshold. Cross-referencing against the three postponed investigative features identifies what that advertiser does not want RSM to publish. + +The postponed features are the more significant material. They represent completed investigative work that has been de-facto suppressed. Wherever they are stored in RSM's editorial system, they exist as documents. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; Commission hub; core corridor +- [Reach Archive Standard](reach-archive-standard.md) — Institutional archive; journalism deposit +- [Ashwick Broadcasting](ashwick-broadcasting.md) — Core competitor; reach-wide news +- [Open Corridor Stream](open-corridor-stream.md) — Distribution platform; archival catalogue licensing + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/reach-transport.md b/wiki/corporations/reach-transport.md index 54c7fefe2..f63dea14a 100644 --- a/wiki/corporations/reach-transport.md +++ b/wiki/corporations/reach-transport.md @@ -1,24 +1,95 @@ --- title: "Reach Transport" -description: "Reach Transport — consumer goods manufacturer based in Sirius, core" +description: "Core-based branded parcel and freight delivery service from Sirius — reach-wide consumer and commercial logistics, with a Certified Network Partner classification that functions as employee relationship without employment protections" slug: reach-transport category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [commodity_branded, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [nexus-way-express, westmark-distribution, gate-corporation] --- # Reach Transport -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Branded Freight and Parcel Delivery Service **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; reach-wide parcel and freight delivery secondary +**Headquarters:** Sirius (GJ 244A) — core corridor, Commission hub system, 1 hop from Gateway +**Classification:** Sub-Syndic logistics enterprise; reach-wide last-kilometer delivery operator -Reach Transport is a consumer goods manufacturer operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Reach Transport operates the Reach's most widely recognized branded parcel and freight delivery service. Its orange-striped containers and the RT logo appear in every inhabited system on the network — on delivery vehicles, on parcel tracking terminals, on the loading platforms of stations and orbital facilities where small-lot commercial freight arrives daily. For most people in the Reach, "getting a Reach Transport" is the default description for receiving a parcel, regardless of which carrier actually delivered it. + +The company's market position rests on reach-wide consistency: a parcel sent from Cairn to Groombridge moves through an integrated tracking system, a standardized handling protocol, and arrives in the same RT-branded packaging regardless of which local operators handled the last-kilometer delivery. This consistency is the product that commercial shippers pay for. The integration is real, the tracking is reliable, and the handling standards produce a low damage and loss rate that justifies the premium over commodity freight services. + +--- + +## Origin + +Reach Transport was established eighty-nine years ago in Sirius, at the time a rapidly growing Commission hub with substantial commercial parcel volume and no dominant delivery brand. The founders recognized that the span gate network made reach-wide delivery logistically possible but that existing carriers were system-local — good within their own corridor, unreliable across hops. The founding proposition was a single carrier operating to a single standard across the entire gate network. + +Building that network required capital, which required investors, which required a credible case that consistent cross-corridor delivery was worth the coordination cost. The first five years were financially precarious. Sirius-to-Gateway service launched in year three. The first multi-hop route — Sirius to Wolf 359 and return — launched in year seven and was profitable within eighteen months. The network expanded from there. + +--- + +## Operations + +**Hub operations:** Reach Transport's hub facilities — sorting and transit centers at high-volume systems — are company-owned and company-staffed. These are the network's backbone. Sirius, Gateway, Groombridge, and Wolf 359 each host a major RT hub facility. + +**Last-kilometer delivery:** Delivery from hub to final destination — the actual parcel-to-door step — is handled by RT's Certified Network Partners (CNP) in most systems. CNP operators are independent contractors who carry RT branding, use RT tracking systems, and operate under RT service standards as defined in the CNP agreement. + +**Consumer and commercial service tiers:** Standard parcel, priority parcel, and commercial freight tiers, with tracking at all stages. Commercial accounts receive volume pricing and dedicated account management. Consumer accounts use the standard rate card. + +**Workforce:** Approximately 2,400 direct employees at hub facilities. The CNP network adds several thousand more operators who are not on the RT payroll. + +--- + +## Political Relationships + +**Nexus Way Express:** A competitor in the reach-wide freight market, stronger in the commercial bulk freight segment where RT focuses on parcels. The two companies share gate capacity on some high-volume routes through informal load-balancing arrangements. + +**Westmark Distribution:** A regional logistics operator that provides RT with contracted hub capacity in western reach systems where RT does not own facilities. The contractual relationship gives RT effective coverage without the capital commitment of owned infrastructure. + +**Gate Corporation:** RT's entire network depends on span gate infrastructure. The Gate Corporation's gate transit fees are RT's largest single operational cost. The commercial relationship is purely transactional — RT has no preferential gate access — and the fee structure is a recurring source of margin pressure. + +--- + +## What They Don't Talk About + +The Certified Network Partner agreement that governs RT's last-kilometer delivery operators is marketed to potential CNP applicants as a "franchise opportunity with guaranteed work allocation." The work allocation language is genuine: CNP operators who complete the certification process are assigned to a delivery zone and receive parcel allocation from RT's routing system. + +The agreement also contains an availability requirement: CNP operators must maintain active status in the RT routing system during defined daily availability windows, which are set by RT and vary by zone and demand forecasting. CNP operators who are unavailable during allocated windows receive a work availability penalty that reduces their routing priority for a defined period. The penalty structure compounds: multiple unavailability events in a quarter result in CNP probationary status. + +The practical effect is that CNP operators who want to maintain viable income must be available on RT's schedule, not their own. They are classified as independent contractors with no guaranteed hours and no employment protections under Sirius labor standards, which apply employment protections only to employees. RT's CNP operators manage their own equipment, pay their own maintenance costs, and absorb their own risk. The availability penalties ensure they behave, in all practical respects, as employees on demand. + +The CNP application materials describe the availability requirements as "flexible scheduling within a defined responsiveness framework." The penalty structure is in section 9 of the CNP agreement. + +--- + +## Gameplay Relevance + +Reach Transport is commercial infrastructure — present in logistics records, parcel tracking data, and any investigation that involves the movement of physical goods. RT's tracking system is the Reach's most comprehensive reach-wide parcel movement record. + +The CNP labor structure is a local investigative thread — relevant in any system where delivery operators are present and where labor conditions are a live question. A player with access to CNP agreement documents, or a source from within the CNP operator network, has a clear record of the gap between the "franchise opportunity" marketing and the actual operational terms. Sirius's labor standards regulators have not examined the CNP structure; whether the availability penalty system constitutes an employment relationship is a question the relevant authority has not been asked. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; primary hub; core corridor +- [Nexus Way Express](nexus-way-express.md) — Competitor; reach-wide commercial freight +- [Westmark Distribution](westmark-distribution.md) — Contracted hub capacity; western reach operations +- [Gate Corporation](gate-corporation.md) — Span gate infrastructure; primary operational cost + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/resonance-premium.md b/wiki/corporations/resonance-premium.md index d20b87e4d..bc585ce2a 100644 --- a/wiki/corporations/resonance-premium.md +++ b/wiki/corporations/resonance-premium.md @@ -1,24 +1,104 @@ --- title: "Resonance Premium" -description: "Resonance Premium — media platform and catalogue service based in Sirius, core" +description: "Core-based premium media catalogue from Sirius — curated subscription content across all categories, with an undisclosed financial relationship between curators and the content they recommend as premium" slug: resonance-premium category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Sirius (GJ 244A) tags: [platform_catalogue, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [open-corridor-stream, transit-library, reach-archive-standard, ondori-interactive] --- # Resonance Premium -**Type:** Corporation — Media Platform And Catalogue Service +**Type:** Corporation — Media Platform and Catalogue Service (Premium Curated) **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Sirius (GJ 244A) +**Scope:** Core primary; reach-wide premium subscriber base secondary +**Headquarters:** Sirius (GJ 244A) — core corridor, Commission hub system, 1 hop from Gateway +**Classification:** Sub-Syndic platform enterprise; premium-tier content curation and distribution -Resonance Premium is a media platform and catalogue service operating out of Sirius (GJ 244A). Details to be expanded. +--- + +## Overview + +Resonance Premium is the Reach's leading premium subscription media platform. The subscription costs more than Open Corridor Stream or Transit Library, significantly more than the free tiers those platforms offer, and the price difference is the premise: Resonance's curation team reviews submitted content against defined quality standards, and only what passes appears in the Resonance catalogue. Subscribers pay for selection, not volume. + +This value proposition is substantively delivered. The Resonance catalogue is smaller than OCS's by an order of magnitude and represents a genuinely higher average quality. Subscribers who do not want to search through thousands of titles for something worth watching use Resonance because the work has been done for them. The platform's churn rate is among the lowest in the catalogue sector, which means subscribers stay, which means the brand's quality reputation is periodically verified by people who would leave if it weren't true. + +The curation process that produces this catalogue is where the premise and the practice diverge. + +--- + +## Origin + +Resonance launched twenty-four years ago as a Sirius-based experiment in curated access — the bet that there was a subscriber market that would pay for quality selection rather than quantity availability. The founding team came from the commercial media side of the Sirius economy, with backgrounds in advertising and content licensing rather than production. + +The first three years were difficult. The curation cost more than projected, the subscriber base grew more slowly, and the quality reputation took time to establish. The break came when a Resonance-curated documentary produced by a small Groombridge studio won a corridor media prize; the resulting attention introduced Resonance to a subscriber cohort that valued the cultural signal of a Resonance recommendation as much as the content itself. The subscriber base grew steadily after that. + +The founding team sold controlling interest twelve years ago to a Sirius investment group. + +--- + +## Operations + +**Curation process:** Content producers and independent creators submit works for catalogue consideration. Resonance's curation team reviews submissions against a defined quality framework covering production quality, narrative integrity, and audience suitability. Works that pass review enter the catalogue. The curation team is nine people. + +**Subscription model:** Single subscription tier at a fixed monthly rate. All catalogue content is included. No per-item charges. The subscriber base spans the Reach, with the highest concentration in the inward and core corridors. + +**Content licensing:** Producers whose work enters the Resonance catalogue receive a per-stream licensing fee. The fee rate is above OCS's standard rate, which reinforces Resonance's positioning with quality producers. + +**Producer relations:** A separate team manages relationships with established producers — studios and independent creators who consistently produce catalogue-worthy content and whose submissions are processed on a faster track. + +--- + +## Political Relationships + +**Open Corridor Stream / Transit Library:** Direct competitors in the platform-catalogue segment. The positioning is distinct: OCS serves independent creators at volume, Transit Library emphasizes broad access, Resonance serves the quality-seeking subscriber. There is overlap at the premium margin of OCS and the quality selection of Transit Library. + +**Ondori Interactive:** The east reach interactive studio has three titles in the Resonance catalogue, all from the company's original production work. The relationship is commercial and has been stable for eight years. + +**Lattice Commission:** Standard platform licensing and content certification compliance. Routine. + +--- + +## What They Don't Talk About + +The curation process pays its nine curators on a per-accepted-title basis: a flat fee for each work admitted to the catalogue, on top of their base salary. The per-title incentive was introduced six years ago as a productivity mechanism, following a period where the curation backlog was longer than the business needed. + +The incentive structure works. Catalogue volume has increased, backlog has reduced, and curators are motivated. It also creates a direct financial incentive for curators to accept titles rather than reject them, and to accept titles quickly rather than evaluate them rigorously. + +Three years after the incentive's introduction, the producer relations team identified a secondary dynamic: producers who paid for the accelerated review track — a premium fee for priority queue placement, disclosed to submitters as a production service cost — were having their titles accepted at a significantly higher rate than standard queue submitters. The rate difference persisted after controlling for producer experience and prior catalogue performance. An internal analysis found that curators were weighing accelerated track placement as an informal signal of producer seriousness, which influenced their evaluation. + +The analysis was presented to management. The conclusion management reached was that accelerated track titles were, in practice, higher quality on average, and that the correlation was a feature rather than a bias. The per-title incentive structure was not changed. The accelerated track fee was raised. + +The effect is that access to the Resonance premium catalogue — which carries a quality signal that affects a producer's commercial relationships across the Reach — is partially pay-to-enter. The curation standards are real. The financial pathway that improves a submission's odds is not disclosed to producers or to subscribers. + +--- + +## Gameplay Relevance + +Resonance Premium is a platform-layer presence — relevant in any investigation touching core media economics or the cultural credibility signal that a Resonance catalogue listing provides. + +The curator incentive structure is the investigative thread. A player with access to Resonance's internal analytics — specifically the acceptance rate data by submission track, and the per-title incentive payment records — can reconstruct the financial dynamic. The internal analysis document is the most direct evidence; it names the correlation and management's response to it. + +A curator source would be the most direct access route. Nine people know how the incentive structure affects their own evaluation behavior. + +--- + +**Cross-References:** +- [Sirius](../star-systems/GJ-244A/index.md) — Headquarters system; core corridor +- [Open Corridor Stream](open-corridor-stream.md) — Competitor; independent creator catalogue +- [Transit Library](transit-library.md) — Competitor; access-oriented catalogue +- [Reach Archive Standard](reach-archive-standard.md) — Adjacent platform; permanence-focused +- [Ondori Interactive](ondori-interactive.md) — East reach catalogue partner; three titles in catalogue + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/rheingold-distillers.md b/wiki/corporations/rheingold-distillers.md index 789c012bf..89390d0ee 100644 --- a/wiki/corporations/rheingold-distillers.md +++ b/wiki/corporations/rheingold-distillers.md @@ -1,24 +1,97 @@ --- title: "Rheingold Distillers" -description: "Rheingold Distillers — regional specialty producer based in Rødvik, west reach" +description: "West reach rare spirits producer from Rødvik — small-batch botanical spirits with certified scarcity-class designation, and a managed-allocation practice that manufactures the shortage its premium pricing depends on" slug: rheingold-distillers category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Rødvik (GJ 581) tags: [terroir, west_reach, mark, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [schwarzwald-gin, svanevann-waters, mercado-travessia] --- # Rheingold Distillers -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Regional Specialty Producer (Spirits) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Rødvik (GJ 581) +**Scope:** West reach primary; inward corridor luxury market secondary +**Headquarters:** Rødvik (GJ 581) — west reach corridor, 4 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic artisan enterprise; Lattice Commission scarcity-class rare designation holder -Rheingold Distillers is a regional specialty producer operating out of Rødvik (GJ 581). Details to be expanded. +--- + +## Overview + +Rheingold Distillers produces small-batch botanical spirits from Rødvik, a west reach system whose cold-climate growing conditions, mineral-dense soil, and particular atmospheric humidity have produced a distinctive botanical palette over two centuries of cultivation. The company holds a Lattice Commission scarcity-class rare designation — a certification that the production volume is genuinely limited by environmental and agricultural constraints and that the stated batch sizes represent actual output. This designation is the legal basis for the premium pricing and the "rare expression" marketing language that Rheingold uses across all of its product lines. + +The designation is accurate in the sense that Rødvik's botanical character is genuine and that the estate-level agricultural constraints are real. Whether the stated production volumes for each release are the actual production volumes is a different question. + +--- + +## Origin + +Rheingold was founded one hundred and sixty years ago by a botanical distilling family from an early west reach settlement wave. The founding generation brought distilling knowledge from old-world traditions and spent the first three decades adapting those techniques to Rødvik's specific botanical inventory. The characteristic Rheingold flavor profile — cold-aromatic, mineral-forward, with long-finish citrus notes from a specific Rødvik-endemic botanical family — is the result of that adaptation and has not meaningfully changed since the second generation. + +Commercial export began ninety years ago when a Groombridge importer included Rheingold in a west reach specialty consignment and discovered that it sold quickly and that customers asked for more. The scarcity-class designation was obtained sixty years ago, when the production volume was genuinely limited by estate capacity. Production capacity has grown since then. + +--- + +## Operations + +**Estate production:** Rheingold's estate at Rødvik cultivates fourteen botanical species, twelve of which are endemic or adapted-endemic to the system. The cultivation is genuine and takes time — several of the key botanicals require multi-year growth cycles before harvest. The agricultural constraints on production are real: Rheingold cannot produce more than the estate's cultivation can support in any given year. + +**Distilling:** The Rødvik distillery operates traditional copper-pot stills maintained in continuous operation since the founding generation. The distilling process is slow and low-volume by design. Rheingold's technical documents describe the distilling as a constraint on production volume, which it is. + +**Releases:** Rheingold releases five named expressions per year. Each release is numbered, limited to a stated batch size, and sells at prices that reflect both the scarcity-class designation and the established market reputation. The stated batch sizes are the legal production volume for each release under the scarcity-class certification. + +**Distribution:** Rheingold distributes through specialist import channels to inward markets and through Mercado Travessia for the premium retail segment. + +--- + +## Political Relationships + +**Schwarzwald Gin:** A fellow west reach botanical spirits producer with a scarcity-class designation, based in a different system. The two companies operate in the same luxury tier and have occasionally been grouped together in inward market premium collections, though they compete directly for the same buyer category. + +**Svanevann Waters:** A west reach terroir producer with its own scarcity-class designation. The shared Mark currency zone and shared designation category create a loose regional identity that all three producers sometimes invoke in export marketing. + +**Mercado Travessia:** The primary inward-corridor retail partner for Rheingold's premium expressions. Mercado's provenance documentation and shelf positioning for Rheingold reinforces the scarcity narrative. + +--- + +## What They Don't Talk About + +The scarcity-class certification requires that the stated batch sizes for each release represent actual distilled output — that what is stated as produced is what was produced. Rheingold's certification documentation, filed with the Commission's agricultural products authority, accurately reflects the distilled volume for each named release. + +What the certification does not require is that the distilled volume equals the released volume in the same calendar period. Rheingold has been systematically producing a quantity approximately 15–20% larger than the stated release volume for two of its five annual expressions, withholding the excess in bonded warehouse storage, and releasing it as "unexpected second allocation" when the initial release sells out and demand pressure produces public requests. + +The second allocation releases are sold at a price premium above the initial release, described as "rare additional bottles from the same numbered batch." The batch number is accurate — the withheld bottles are from the original distilling run. The number of bottles in the batch is the number that appeared on the certification filing. The existence of additional bottles in warehouse is not a certification violation as the certification defines production volume, not the timing of release to market. + +The practice has been in operation for nineteen years. The bonded warehouse records at Rødvik contain the complete inventory history. + +--- + +## Gameplay Relevance + +Rheingold is west reach luxury texture and a secondary economic presence in the premium spirits market. Its distribution records and pricing history are visible in commercial data for any investigation touching import economics or provenance authentication. + +The managed allocation practice is the investigative thread. A player with access to Rheingold's bonded warehouse records — or to the Commission's agricultural certification filings — can compare the stated batch production volumes against the warehousing records and find the withheld inventory. The warehouse at Rødvik has a complete ledger. The Commission filings have the declared production numbers. + +A Mercado Travessia buyer who has noticed that "unexpected second allocation" releases appear with suspicious reliability after sellouts would be a useful source, though not a documented one. + +--- + +**Cross-References:** +- [Rødvik](../star-systems/GJ-581/index.md) — Headquarters system; west reach corridor +- [Schwarzwald Gin](schwarzwald-gin.md) — West reach competitor; shared scarcity-class category +- [Svanevann Waters](svanevann-waters.md) — West reach terroir producer; shared designation category +- [Mercado Travessia](mercado-travessia.md) — Inward-corridor premium retail partner + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/rheintal-systems.md b/wiki/corporations/rheintal-systems.md index e9bf41e14..d8fe33f98 100644 --- a/wiki/corporations/rheintal-systems.md +++ b/wiki/corporations/rheintal-systems.md @@ -1,24 +1,99 @@ --- title: "Rheintal Systems" -description: "Rheintal Systems — precision technology manufacturer based in Neustadt, west reach" +description: "West reach industrial sensor manufacturer from Neustadt — precision environmental and positioning sensors for industrial clients, with a Commission-certified calibration methodology whose drift-rate compression has never been disclosed" slug: rheintal-systems category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Neustadt (GJ 526) tags: [tech_premium, west_reach, mark, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [bergkraft-antriebswerke, sunderland-precision, porto-alegre-technical] --- # Rheintal Systems -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Technology Manufacturer (Industrial Sensors) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Neustadt (GJ 526) +**Scope:** West reach primary; corridor-wide industrial client base secondary +**Headquarters:** Neustadt (GJ 526) — west reach corridor, 3 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic technical enterprise; industrial sensor systems manufacturer -Rheintal Systems is a precision technology manufacturer operating out of Neustadt (GJ 526). Details to be expanded. +--- + +## Overview + +Rheintal Systems manufactures environmental and positional sensors for industrial applications — mining operations, orbital construction, atmospheric processing facilities, and the monitoring infrastructure that keeps large-scale industrial processes within safety tolerances. Its sensor systems are the kind that an operation installs and expects to run for eight to twelve years without replacement. Reliability across long operational periods is the primary specification clients buy against. + +The company is well-regarded in the west reach industrial sector. Its sensors are in active operation at major facilities across multiple corridors. The Commission's industrial equipment certification standards have included Rheintal systems in their approved equipment lists for over thirty years. The certification record is clean. The methodology that produced that record has a compression in it that the Commission has never been asked to examine. + +--- + +## Origin + +Rheintal was founded seventy-one years ago by an engineering team with backgrounds in Neustadt's heavy industrial sector. The founders had spent their careers maintaining monitoring systems at facilities that used imported sensors, and their core complaint was the same one that drove several sensor manufacturers into business: the available products drifted faster than their specifications claimed, and manufacturers were inconsistent about how they characterized acceptable drift. + +Rheintal's founding proposition was transparency on drift rates — accurate characterization of how their sensors performed over time, so industrial operators could plan maintenance and recalibration schedules on reliable information. This transparency was genuine in the first decade and is the basis of Rheintal's still-operative reputation for honest specification. + +The transparency became more selective as the company grew. + +--- + +## Operations + +**Product lines:** Environmental sensors for atmospheric composition, temperature, and pressure; positional sensors for construction and navigation assist in industrial contexts; and a monitoring network integration service that connects sensor arrays to centralized facility management systems. The product lines serve overlapping client categories and are often sold as integrated packages. + +**Manufacturing:** The Neustadt facility employs one hundred and twelve people across engineering, manufacturing, and calibration. The calibration operation is the manufacturing process's most labor-intensive element; Rheintal's reputation for drift accuracy requires extensive factory testing before shipment. + +**Certification:** Rheintal's industrial sensor products are certified under the Lattice Commission's industrial equipment standards, which require specification documentation for accuracy, drift rate, and operating environment tolerances. The certification process reviews Rheintal's filed methodology and conducts sample testing against it. Rheintal's certifications have been renewed consistently. + +**Client relationships:** Long-term supply and service contracts with major industrial clients across the west reach and into the inward corridor. The service contracts include recalibration schedules based on the specified drift parameters. + +--- + +## Political Relationships + +**Bergkraft Antriebswerke:** A west reach industrial machinery manufacturer that integrates Rheintal sensors into its operational monitoring systems. The relationship is long-term commercial and one of Rheintal's most significant west reach client accounts. + +**Sunderland Precision:** A north reach sensor and instrument manufacturer. The two companies produce for overlapping industrial client categories and have occasionally been compared in equipment selection evaluations. The relationship is competitive at the margin. + +**Porto Alegre Technical:** A south reach precision instrument manufacturer in related categories. Intermittent awareness; different primary client base. + +--- + +## What They Don't Talk About + +Rheintal's calibration methodology for drift-rate specification uses a measurement interval protocol that was established twenty-three years ago to address a practical problem: measuring sensor drift accurately requires long observation periods, and long observation periods are expensive. The interval protocol compresses the observation period by extrapolating from early-stage drift measurements — a mathematically valid approach that the Commission's methodology review accepted when Rheintal filed it. + +The protocol contains an assumption about linearity of drift over time. In most sensor operating conditions this assumption is approximately correct. In the specific conditions present at high-humidity environments with temperature cycling — common in atmospheric processing facilities and some orbital construction contexts — the actual drift rate accelerates beyond the linear extrapolation's prediction in the sensor's third and fourth operational years. + +The non-linearity was identified in Rheintal's internal reliability data twelve years ago. The internal review concluded that the affected sensor categories, when operated past their nominal service life in qualifying environments, would exceed their certified accuracy specification by the end of year four. The company's standards committee reviewed the finding and approved a modification to the internal recalibration guidance — reducing the recommended recalibration interval for clients in high-humidity applications. The modification was implemented as a "best practice recommendation" in Rheintal's service documentation. The Commission's certified drift rate methodology was not updated. + +Clients following the certified drift rate schedule — rather than the service documentation's best practice recommendation — are running sensors in affected environments past the point where the certified accuracy claim holds. Their monitoring data is within spec by the methodology the Commission certified. Whether it is within spec by the actual sensor behavior is a question the methodology cannot answer. + +--- + +## Gameplay Relevance + +Rheintal is industrial background for the west reach — a sensor supplier present in equipment manifests and facility documentation at any major industrial operation. The drift-rate methodology is the investigative thread. + +A player examining a facility incident involving unexpected environmental measurement divergence — a monitoring failure that was within certified spec when it occurred — may find Rheintal sensors in the equipment chain. Cross-referencing the incident against the operating environment (high-humidity, temperature-cycling) and the sensor service life puts the non-linearity finding in scope. The internal reliability study and the standards committee review are in Rheintal's engineering archive. + +The Commission's certification review documents are available through regulatory records; the filed methodology is public. The internal reliability study that identified the limitation is not. + +--- + +**Cross-References:** +- [Neustadt](../star-systems/GJ-526/index.md) — Headquarters system; west reach corridor +- [Bergkraft Antriebswerke](bergkraft-antriebswerke.md) — West reach industrial client; long-term supply relationship +- [Sunderland Precision](sunderland-precision.md) — North reach competitor; overlapping industrial sensor market +- [Porto Alegre Technical](porto-alegre-technical.md) — South reach instrument manufacturer; related categories + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/rijdbaar.md b/wiki/corporations/rijdbaar.md index ec4f7f960..8ce318dd6 100644 --- a/wiki/corporations/rijdbaar.md +++ b/wiki/corporations/rijdbaar.md @@ -1,24 +1,97 @@ --- title: "Rijdbaar" -description: "Rijdbaar — design and furniture manufacturer based in Confluent, west reach" +description: "West reach furniture and interior systems from Confluent — modular habitation design built for long human use, with a proprietary connector system whose structural justification is engineered to require manufacturer-only replacement parts" slug: rijdbaar category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Confluent (GJ 395) tags: [design_heritage, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [steinbach-furniture, vlaams-atelier, sertanejo-design] --- # Rijdbaar -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Design and Furniture Manufacturer **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Confluent (GJ 395) +**Scope:** West reach primary; inward corridor design market secondary +**Headquarters:** Confluent (GJ 395) — west reach corridor, 3 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic design enterprise; modular habitation systems manufacturer -Rijdbaar is a design and furniture manufacturer operating out of Confluent (GJ 395). Details to be expanded. +--- + +## Overview + +Rijdbaar makes furniture designed to be lived with. The company's founding philosophy, present in every product brief for eighty years, is that habitation furniture is not decorative equipment — it is the material infrastructure of a human life, and it should be built to the same engineering standards as any other infrastructure. Rijdbaar's pieces are heavy, precise, and expensive. They are also rated to last sixty years under continuous residential use, and the products delivered against that rating. + +The company's signature product is its modular habitation system — a range of shelving, storage, seating, and workspace components that connect through a standardized interface and can be reconfigured, extended, or reorganized throughout the customer's use of the space. The system is genuinely flexible and genuinely durable. It is also, in its connector interface design, exclusively compatible with Rijdbaar components. + +--- + +## Origin + +Rijdbaar was established eighty-two years ago in Confluent by an industrial engineer who had previously worked in the west reach shipyard sector. The shipyard background is visible in the product philosophy: Rijdbaar's furniture engineering documentation reads like industrial equipment specification, with load ratings, tolerance stacks, and fatigue cycle projections that no other residential furniture manufacturer produces. + +The founding products were static — individual pieces, no modular interface, sold to clients who wanted furniture that would not fail. The modular system launched forty years ago, driven by the commercial insight that a system creates a long-term client relationship rather than a one-time sale. The first modular customers are still using their original base components with multiple expansion sets purchased over the subsequent four decades. + +--- + +## Operations + +**Modular habitation system:** The flagship product line — shelving, storage, seating, workspace components in a standardized modular format. The connector interface allows any component to attach to any other in the system. New components can be added, existing components removed or repositioned, and the system reconfigured as the customer's needs change. + +**Static line:** Individual pieces — tables, chairs, bed frames — sold outside the modular system for clients who want Rijdbaar's material quality without the system commitment. + +**Manufacturing:** The Confluent facility employs sixty-seven people across design, fabrication, and quality control. Precision fabrication of the connector interface is the most technically demanding element of the production process. + +**Distribution:** West reach distribution is direct from Confluent for system-scale orders and through regional interior design suppliers for smaller purchases. The inward market is served through specialist importers. + +--- + +## Political Relationships + +**Steinbach Furniture:** A west reach competitor in the design-heritage furniture category, based in Steinfeld. The two companies serve overlapping market segments and compete for the same corporate and residential clients. Steinbach's aesthetic is more industrial; Rijdbaar's is more precisely engineered. The distinction matters to buyers who care about it. + +**Vlaams Atelier:** A west reach interior design and architectural services firm that specifies Rijdbaar components in many of its residential projects. The commercial relationship is one of Rijdbaar's most important single-firm client accounts. + +**Sertanejo Design:** A south reach design studio with an aesthetic interest in modular systems. Occasional cross-corridor design exchange; no commercial relationship. + +--- + +## What They Don't Talk About + +The Rijdbaar modular system's connector interface — the physical and mechanical joint that allows components to attach to each other — uses a proprietary tolerance specification that is tighter than any industry standard connector. The specification was developed by Rijdbaar's engineering team and is the technical basis for the system's rated load performance. + +The technical documentation for the connector interface includes a structural justification: the tolerance stack required to achieve the load ratings specified for the modular system cannot be met by components manufactured to industry-standard connector tolerances. This statement is accurate. The load ratings are genuine and the tight tolerances are necessary to achieve them. + +What the documentation does not disclose is that the proprietary tolerance was specified after the load ratings were established — not because the load ratings required it, but because the engineering team recognized that a proprietary connector would create a durable supply relationship with every customer who owned the system. The design sequence ran in reverse: the connector was made proprietary, then the load ratings were specified to a level that only the proprietary tolerance could support. + +Third-party manufacturers have attempted to produce compatible components. Without the tolerance specification, their connectors fail below the rated load — which Rijdbaar's documentation accurately describes as a compatibility failure. The documentation attributes the failure to "precision tolerance requirements for structural integrity," which is true in the sense that structural integrity at the rated load requires the tolerance. It is silent on why the rated load was set where it was. + +--- + +## Gameplay Relevance + +Rijdbaar is consumer infrastructure — present in any residential or commercial space that contains quality west reach furniture. The modular system is a common fixture in Confluent and adjacent corridor habitation. + +The connector design sequence is the investigative thread. A player with access to Rijdbaar's engineering archives — specifically the design history documents for the modular system — would find the product development record that shows the tolerance specification and the load rating were developed together, and that the tolerance specification preceded the public load rating. The commercial rationale for the proprietary connector is documented in the same archive. + +A former Rijdbaar engineer who worked on the original modular system design would have direct knowledge of the design sequence. Several are likely still in the Confluent technical sector. + +--- + +**Cross-References:** +- [Confluent](../star-systems/GJ-395/index.md) — Headquarters system; west reach corridor +- [Steinbach Furniture](steinbach-furniture.md) — West reach competitor; design-heritage furniture +- [Vlaams Atelier](vlaams-atelier.md) — West reach design firm; primary commercial client +- [Sertanejo Design](sertanejo-design.md) — South reach design studio; cross-corridor aesthetic exchange + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/saigon-consulting.md b/wiki/corporations/saigon-consulting.md index 289367b2a..e468d63b6 100644 --- a/wiki/corporations/saigon-consulting.md +++ b/wiki/corporations/saigon-consulting.md @@ -1,24 +1,95 @@ --- title: "Saigon Consulting" -description: "Saigon Consulting — premium service provider based in Binh Trang, east reach" +description: "East reach logistics and operational efficiency consultancy at Binh Trang (GJ 17) — freight operator advisory with undisclosed equity relationships that shape whose efficiency improves" slug: saigon-consulting category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Binh Trang (GJ 17) tags: [service_premium, east_reach, tractus] decision_refs: [D-189] -cross_refs: [] +cross_refs: [kovalev-freight] --- # Saigon Consulting -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Logistics and Operational Efficiency Consultancy **Status:** Canonical -**Scope:** Regional — east reach operations +**Scope:** East reach corridor primary; cross-corridor freight operator clients secondary **Headquarters:** Binh Trang (GJ 17) +**Currency:** Tractus +**Classification:** Sub-Syndic service enterprise; partnership structure -Saigon Consulting is a premium service provider operating out of Binh Trang (GJ 17). Details to be expanded. +--- + +## Overview + +Binh Trang is a transit system — not a major junction, but a through-route node on the east reach corridor with enough freight traffic to support an operational consulting practice built entirely around making that traffic move better. Saigon Consulting has been at Binh Trang for twenty-five years, working with freight operators, logistics managers, and the commercial operations that move goods through the east reach. The firm's specialty is efficiency: routing optimization, scheduling analysis, workforce deployment modeling, and the identification of operational friction that costs freight operators more than they realize. + +The firm's output is recommendations. Freight operators who implement those recommendations report measurable improvements: lower operating costs, improved on-time performance, better workforce utilization. The firm has case studies. The case studies are accurate. What the case studies do not capture is which freight operators benefit most from Saigon's recommendations and why — a pattern that emerges clearly only when the firm's client list is examined in aggregate rather than engagement by engagement. + +--- + +## Origin + +The firm was founded twenty-five years ago by two partners who had spent their previous careers on opposite sides of freight operations: one as a route optimization analyst for a logistics consortium, one as a station operations manager at a high-traffic east reach transit facility. They brought complementary expertise — network-level efficiency modeling and on-site operational knowledge — and a shared frustration with the gap between what freight networks theoretically could do and what they actually did. + +The founding practice was small: four clients in the first year, all east reach freight operators with specific scheduling problems. The firm grew by referral — operators who improved their operations referred the firm to competitors and partners, which is an unusual referral pattern but one that the founders encouraged on the grounds that a more efficient east reach freight ecosystem benefited all operators including their existing clients. This logic is correct. It also, over twenty-five years, has produced a client relationship network that covers most of the significant freight operators in the east reach corridor. + +One of the two founding partners retired eight years ago. The remaining founding partner, now in his sixties, holds a majority equity stake and chairs the partnership. He has not discussed retirement. + +--- + +## Operations + +**Services:** Route optimization analysis, scheduling efficiency review, workforce deployment modeling, infrastructure utilization assessment, and cross-operator coordination advisory for clients sharing corridor infrastructure. The firm maintains a proprietary dataset of east reach freight operations going back twenty years — the accumulation of client engagements — that makes its benchmarking analysis more precise than any competitor can offer from a standing start. + +**Clients:** Forty-three active client relationships across the east reach, ranging from small regional operators to the corridor's major logistics providers. The firm does not work exclusively in freight — it takes operational efficiency engagements in adjacent industries — but freight remains the majority of revenue and the domain in which its analytical advantage is greatest. + +**Proprietary data:** The east reach freight operations dataset is the firm's primary competitive asset. It contains historical and current operational data from client engagements, aggregated in ways that satisfy the confidentiality terms of individual engagements while providing benchmarking context that individual operators cannot access independently. The dataset is maintained by a dedicated analytics team of four. + +--- + +## Political Relationships + +**Kovalev Freight Lines:** Saigon's largest and longest-standing client relationship, spanning fifteen years of continuous engagement. Saigon produces Kovalev's annual corridor efficiency review, advises on scheduling architecture, and has helped Kovalev model every significant route change Kovalev has made in the east reach over that period. The relationship is commercially substantial and publicly known — both firms reference it in their market-positioning material. What neither firm references is the ownership structure connecting them. + +**East reach freight operators' association:** Saigon is the operational-efficiency consultancy of record for most members of the corridor's informal operators' association. The association does not regulate its members, but it does convene annual operator coordination meetings at which Saigon typically presents benchmark analysis. Saigon's analytical authority in these meetings shapes which operational practices the association members treat as standard, which in turn shapes what "normal" looks like in the corridor. + +**Binh Trang Chamber of Commerce:** Founding partner sits on the Chamber's commercial practices committee, which reviews grievances between member businesses. He has recused himself from matters involving Saigon clients. The Chamber's by-laws do not require disclosure of non-client beneficial interests, which has not yet been tested. + +--- + +## What They Don't Talk About + +Two of Saigon's senior partners hold equity positions in Kovalev Freight Lines — a reach-wide cold chain logistics operator that is an active Saigon client and whose operations touch the east reach corridor. The equity positions were acquired over a period of years through arrangements that are individually small and individually defensible and that together represent a material financial interest in Kovalev's operational performance. + +The recommendations Saigon has provided to Kovalev clients are technically sound. The routes Saigon has recommended competitors redirect around have, in most cases, been genuinely suboptimal routes. The scheduling windows Saigon has recommended competitors tighten have, in most cases, been genuinely loose. The cumulative effect of twenty years of recommendations across forty-three clients — recommendations that are each individually defensible — has been a freight corridor where Kovalev's position has improved relative to its competitors in ways that exceed what Kovalev's own operational improvements would explain. + +The equity positions are not disclosed to clients. The conflict-of-interest framework the firm operates under predates the equity acquisitions and does not have a mechanism for disclosing ongoing beneficial interests, only for disclosing direct client conflicts. The founding partner considers the framework adequate. His remaining equity stake in the firm is worth considerably more than it was twenty-five years ago. + +--- + +## Gameplay Relevance + +Saigon Consulting is most useful as a thread in any investigation of freight operator competition, market share shifts, or the commercial structure of the east reach logistics sector. An investigator who is trying to understand why a specific freight operator's position has deteriorated — or why Kovalev Freight's position has improved — will encounter Saigon's consulting relationships as a common factor across multiple operators. The pattern is visible in aggregate and invisible in any individual engagement. + +The equity positions are the discoverable element. They exist in corporate registration records at Binh Trang and in Kovalev's shareholder disclosures. Neither set of records cross-references the other, and neither is where an investigator looking at consulting relationships would naturally start. An investigator who reaches the equity positions through either the consulting engagement records or the shareholder filings — and who can then demonstrate the correlation between Saigon recommendations and Kovalev's corridor improvements — is holding something that the founding partner would be highly motivated to resolve before it reaches formal examination. + +The other investigative surface is the proprietary dataset. Saigon's twenty-year east reach freight operations archive is the benchmarking backbone of half the corridor's operator decisions. A player who gains access to the dataset — or to the analytical framework the firm uses to process it — can reconstruct the decision basis for any major operator restructuring in that period. The founding partner's instructions to the analytics team regarding which aggregate queries are run regularly and which are avoided are not written down, which is itself a piece of information. + +--- + +**Cross-References:** +- [Kovalev Freight Lines](kovalev-freight.md) — client with undisclosed partner equity relationship +- [Binh Trang](../star-systems/GJ-17/index.md) — headquarters system; east reach transit node +- East reach freight operators' association — informal corridor body; Saigon presents annual benchmark analysis + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/schwarzwald-gin.md b/wiki/corporations/schwarzwald-gin.md index acea74898..7ff501dcc 100644 --- a/wiki/corporations/schwarzwald-gin.md +++ b/wiki/corporations/schwarzwald-gin.md @@ -1,24 +1,99 @@ --- title: "Schwarzwald Gin" -description: "Schwarzwald Gin — regional specialty producer based in Dunkelholz, west reach" +description: "West reach estate gin producer from Dunkelholz — twelve-botanical formula with geographic indication, three of whose claimed estate-grown species have not been cultivated on the estate for thirty years" slug: schwarzwald-gin category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Dunkelholz (GJ 615) tags: [terroir, west_reach, mark, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [rheingold-distillers, svanevann-waters, mercado-travessia] --- # Schwarzwald Gin -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Regional Specialty Producer (Spirits) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Dunkelholz (GJ 615) +**Scope:** West reach primary; inward corridor premium spirits market secondary +**Headquarters:** Dunkelholz (GJ 615) — west reach corridor, 4 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic artisan enterprise; Lattice Commission scarcity-class rare designation holder -Schwarzwald Gin is a regional specialty producer operating out of Dunkelholz (GJ 615). Details to be expanded. +--- + +## Overview + +Schwarzwald Gin produces botanical gin from Dunkelholz, a west reach system whose dense-canopy growing zones support an unusually complex botanical inventory for its stellar distance. The company has operated from a single estate in the Dunkelholz forest zone for one hundred and forty years, producing gin from a twelve-botanical formula that has been the basis of every product in its catalogue since the third generation of the founding family. + +The twelve-botanical formula is the Schwarzwald identity. The company's marketing, its heritage documentation, its geographic indication filing with the Lattice Commission, and its export provenance materials all center on the same statement: twelve estate-grown botanicals, cultivated at Dunkelholz, distilled using the original formula. The estate is real. The distilling tradition is real. The twelve-botanical formula has not changed. + +The twelve botanicals are not all from the estate. + +--- + +## Origin + +Schwarzwald was founded one hundred and forty years ago by a botanical distiller who arrived at Dunkelholz during a west reach settlement wave and recognized that the system's dense-canopy forest zones contained aromatic plant species unlike anything documented in the existing distilling literature. The first decade was experimental — the founder worked through several formula variations before arriving at the twelve-botanical composition that became the house standard. + +The formula was documented in the third generation's production records as a fixed formula in perpetuity. The documentation was explicit: the formula would not change because the botanical identity was the product's value. The geographic indication was filed eighty years ago on the basis of the twelve-botanical estate cultivation claim. + +--- + +## Operations + +**Estate cultivation:** The Dunkelholz estate cultivates botanical species across multiple canopy-level planting zones. The estate's cultivation is genuine, labor-intensive, and the primary constraint on production volume. Botanicals require specific forest zone conditions and multi-year establishment periods. + +**Distilling:** Traditional copper-pot distillation using the twelve-botanical formula. The distilling process is slow and precise. The production notes for every batch document the botanical input sources. + +**Scarcity-class certification:** The Lattice Commission's scarcity-class rare designation is held for Schwarzwald's flagship expression, based on the certified estate-cultivation constraint on production volume. The designation is periodically reviewed against production documentation. + +**Distribution:** Schwarzwald distributes to inward markets through specialty importers and through Mercado Travessia for premium retail placement. + +--- + +## Political Relationships + +**Rheingold Distillers:** A west reach botanical spirits producer with a parallel heritage and scarcity designation. The two companies are the most prominent west reach gin and spirits producers in the inward luxury market and are frequently discussed together in premium spirits contexts. They do not interact commercially. + +**Svanevann Waters:** A west reach terroir producer with its own scarcity-class designation. The shared Mark currency zone and shared designation category create a loose regional identity in export marketing materials. + +**Mercado Travessia:** Primary inward-corridor retail partner. Mercado's provenance documentation reinforces the estate-botanical narrative, sourcing its descriptions from Schwarzwald's own marketing materials. + +--- + +## What They Don't Talk About + +Thirty years ago, a fungal blight affected the Dunkelholz estate's canopy-zone planting, killing three of the twelve botanical species that made up the standard formula. The blight spread faster than the estate's containment effort could manage. Within two growing seasons, all three species were functionally extinct at the estate level — the established planting had failed, and re-establishment from off-system seed stock would require eight to twelve years before production-grade harvests were possible. + +The three lost species contributed specific aromatic notes to the formula — notes the company's master distiller identified as technically replicable using synthetic botanical concentrates available from an industrial aromatics supplier on an adjacent system. The concentrates were compositionally accurate: the aromatic compounds matched spectrographic analysis of the estate-grown botanical extracts. + +The decision was made to continue production using the synthetic concentrates for the affected three botanicals while estate re-establishment was attempted. The re-establishment was not successful. The synthetic concentrates have been the source for those three botanicals for thirty years. The production notes document them as "formula component A-7, A-9, A-11" without noting their source. + +The twelve-botanical formula has not changed. The formula specifies aromatic compounds, not cultivation source. The geographic indication filing specifies estate-grown cultivation for the twelve botanicals. The filing has not been updated since the blight. + +--- + +## Gameplay Relevance + +Schwarzwald Gin is west reach luxury texture — premium spirits with a heritage narrative and geographic indication credentials. Its distribution records and provenance documentation appear in any investigation touching import economics or geographic indication compliance. + +The synthetic botanical substitution is the investigative thread. A player with access to Schwarzwald's production records — specifically the batch notes and the botanical input source documentation — will find the formula component designations for A-7, A-9, and A-11 traced to off-system industrial supplier invoices rather than estate harvest records. The blight documentation from thirty years ago is in the estate's own archive. + +Schwarzwald's geographic indication filing with the Commission specifies estate cultivation for all twelve botanicals. The supplier invoices for the three synthetic-source components are inconsistent with that specification. Whether the Commission would characterize this as a filing discrepancy or a fraud is a question its enforcement office has not yet been asked. + +--- + +**Cross-References:** +- [Dunkelholz](../star-systems/GJ-615/index.md) — Headquarters system; west reach corridor +- [Rheingold Distillers](rheingold-distillers.md) — West reach competitor; parallel heritage spirits producer +- [Svanevann Waters](svanevann-waters.md) — West reach terroir producer; shared designation category +- [Mercado Travessia](mercado-travessia.md) — Inward-corridor premium retail partner + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/sendai-forge.md b/wiki/corporations/sendai-forge.md index fcea1ff61..21f6e02ed 100644 --- a/wiki/corporations/sendai-forge.md +++ b/wiki/corporations/sendai-forge.md @@ -1,24 +1,99 @@ --- title: "Sendai Forge" -description: "Sendai Forge — heritage craft manufacturer based in Kurashiki, east reach" +description: "East reach heritage metalwork from Kurashiki — bladed tools and precision cutting instruments with a master-forge certification that covers an increasingly small fraction of production touches" slug: sendai-forge category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Kurashiki (GJ 205) tags: [heritage_craft, east_reach, tractus, artisan] decision_refs: [D-189] -cross_refs: [] +cross_refs: [pembrokeshire-smithy, hangang-studio, higashiyama-vehicle] --- # Sendai Forge -**Type:** Corporation — Heritage Craft Manufacturer +**Type:** Corporation — Heritage Craft Manufacturer (Bladed and Precision Tools) **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Kurashiki (GJ 205) +**Scope:** East reach primary; inward corridor specialty tool market secondary +**Headquarters:** Kurashiki (GJ 205) — east reach corridor, 4 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; master-forge certification holder -Sendai Forge is a heritage craft manufacturer operating out of Kurashiki (GJ 205). Details to be expanded. +--- + +## Overview + +Sendai Forge produces bladed tools, cutting instruments, and custom metalwork from Kurashiki, an east reach system whose traditional forging culture has been continuous for over two centuries. The company is the oldest operating forge in Kurashiki and the one with the most established reputation in the inward specialty market. Its blades appear in professional kitchens at Wolf 359, in the precision tool inventories of east reach industrial operations, and in the private collections of buyers who pay significant premiums for the provenance documentation that accompanies each piece. + +The provenance documentation is the Sendai identity. Every certified piece ships with a record identifying the senior smith who worked it, the alloy source, the forging temperature, and the finishing technique. The master-forge certification mark — a small stamped insignia placed by a senior smith after inspection — is the most trusted origin certification in the east reach bladed tool market. + +The certification is more accessible than it used to be. + +--- + +## Origin + +Sendai Forge was established two hundred and fifteen years ago as a family forging operation serving Kurashiki's early agricultural and mining communities. The founding generation made practical tools for practical uses — agricultural blades, mining picks, structural hardware. The artistic tradition developed in the third generation, when a founding-family heir trained under a bladesmith from an adjacent system and returned with techniques that elevated the forge's output into something collectors sought. + +The master-forge certification was formalized one hundred and fifty years ago when the forge began exporting. The certification provided buyers in distant systems with verifiable assurance that the piece had been produced by skilled hands following traditional technique. It was the answer to the question every importer asked: how do I know this is what it claims to be? + +The workforce has grown substantially from the founding family operation. The certification has grown with it. + +--- + +## Operations + +**Prestige line:** Custom and limited-run pieces worked by senior smiths from material selection through final finishing. Forging, shaping, grinding, and edge work all performed by the same senior smith on each piece. Production is slow — a complex prestige piece takes one to three weeks of a senior smith's time. Output is approximately 150 pieces per year across all senior smiths. These are what the inward market pays premium prices for. + +**Standard and production line:** Working tools for the east reach trade market and for wholesale distribution. Higher volume, work divided across specialist stages, with multiple workers contributing to each piece. Production tooling makes the forming and shaping stages more consistent and faster. + +**Certification:** The master-forge mark is applied by a senior smith after inspection of a completed piece. The certification charter defines this as the standard: "master-overseen production, verified by senior smith inspection and certification." Senior smith inspection is required at the final stage for all certified pieces. + +**Workforce:** Nine senior smiths, thirty-one apprentice and production smiths, and support staff at the Kurashiki facility. + +--- + +## Political Relationships + +**Hangang Studio:** An east reach design studio that has collaborated with Sendai on several custom commissions combining Sendai's metalwork with Hangang's design elements. The relationship is intermittent but produces prestigious pieces that both organizations use in their marketing. + +**Higashiyama Vehicle:** An east reach technical manufacturer that sources custom tool stock from Sendai for precision components outside its own fabrication scope. Commercial relationship. + +**Pembrokeshire Smithy:** A north reach metalwork producer occupying the same specialty market tier. The two companies serve different corridor markets but occasionally appear in the same inward specialty buyer evaluations. The relationship is aware and competitive from a distance. + +--- + +## What They Don't Talk About + +The master-forge certification charter's standard — "master-overseen production, verified by senior smith inspection and certification" — has been the operative definition for forty years. When it was adopted, "master-overseen production" described the actual production process: senior smiths directed and participated in every significant stage of each certified piece, with the final inspection stage being the formal documentation of what the senior smith had already been present for. + +As production volume has increased to meet market demand, "master-overseen" has been reinterpreted in practice. The current production workflow for the standard and production line uses apprentice and production smiths for the forming and intermediate stages, with a senior smith reviewing the completed piece at the inspection stage. The inspection is genuine — senior smiths apply the certification mark only to pieces they assess as meeting standard. They do not participate in the production that precedes the inspection. + +The proportion of certified pieces on which a senior smith directly worked at any production stage — rather than inspecting a completed piece — has fallen from approximately 70% two decades ago to below 30% today, as the production workforce has grown and the volume line has expanded. The certification charter has not been updated. The inspection standard is still described as "master-overseen production." The inspection and the oversight are, for most of the production line, the same moment. + +--- + +## Gameplay Relevance + +Sendai Forge is east reach cultural texture — a heritage institution with a market reputation that functions as economic infrastructure for the specialty tool and collector markets. The certification practice is the investigative thread. + +A player with access to Sendai's production workflow records — job assignments, forge time logs, inspection records — can reconstruct the proportion of certified pieces on which a senior smith contributed at stages other than final inspection. The production records cover every piece by forge log entry. The senior smith inspection records are separate documentation. The gap between the two is the discrepancy. + +A senior smith who is uncomfortable with the drift from the charter's original intent is a possible source — someone who understands what the certification was designed to mean and is aware that production volume has made that meaning harder to sustain. + +--- + +**Cross-References:** +- [Kurashiki](../star-systems/GJ-205/index.md) — Headquarters system; east reach corridor +- [Hangang Studio](hangang-studio.md) — East reach design collaborator; custom commission work +- [Higashiyama Vehicle](higashiyama-vehicle.md) — East reach commercial client; precision tool supply +- [Pembrokeshire Smithy](pembrokeshire-smithy.md) — North reach competitor; same specialty market tier + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/sertanejo-design.md b/wiki/corporations/sertanejo-design.md index 86e4a6f3b..dda412f1d 100644 --- a/wiki/corporations/sertanejo-design.md +++ b/wiki/corporations/sertanejo-design.md @@ -1,24 +1,99 @@ --- title: "Sertanejo Design" -description: "Sertanejo Design — design and furniture manufacturer based in Roça Nova, south reach" +description: "South reach interior and spatial design studio from Roça Nova — cultural identity through built space, with a commission contract that assigns permanent commercial rights to Sertanejo without client awareness at signing" slug: sertanejo-design category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Roça Nova (GJ 67) tags: [design_heritage, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [quebrada-cultural, rijdbaar, baia-fundo-productions] --- # Sertanejo Design -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Design and Furniture Manufacturer (Interior and Spatial) **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Roça Nova (GJ 67) +**Scope:** South reach primary; inward corridor commercial design secondary +**Headquarters:** Roça Nova (GJ 67) — south reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic design enterprise; regional cultural design practice -Sertanejo Design is a design and furniture manufacturer operating out of Roça Nova (GJ 67). Details to be expanded. +--- + +## Overview + +Sertanejo Design produces interior and spatial design work for residential, commercial, and civic clients in the south reach. The practice's output ranges from private residential commissions — full interior design from concept through material selection and construction oversight — to civic identity projects where Sertanejo has shaped the visual and spatial character of community spaces for south reach system governments. + +The practice is known for a design philosophy rooted in south reach cultural material — the specific textures, color registers, and spatial organization patterns that the studio's principals associate with the region's settlement history and ongoing social character. Clients hire Sertanejo because they want a space that communicates something about the south reach specifically, not a space that could have been designed anywhere. This is a genuine value delivered: Sertanejo's work is distinctively regional and its best commissions are recognized as such. + +The commission contract that governs the delivery of this work contains a clause that most clients have not understood. + +--- + +## Origin + +Sertanejo was founded thirty-eight years ago by two designers who had trained in the inward corridor design schools and returned to the south reach with the intention of building a practice that was not derivative of inward aesthetics. The founding goal was explicit: south reach design that took the corridor's own material culture as its starting point, rather than adapting inward trends for a peripheral market. + +The early commissions were small — residential interiors for Roça Nova families who knew the founders personally. The practice grew through word of mouth, and within a decade had become the south reach's most recognized regional design firm. The first inward corridor commissions — south reach corporate clients wanting south reach character in their core corridor offices — arrived fifteen years ago and have since become a significant fraction of the practice's revenue. + +--- + +## Operations + +**Residential commissions:** Full-service interior design for private clients, from design concept through material sourcing and construction supervision. Each commission is bespoke. Lead times are long; the practice accepts a limited number of residential commissions per year. + +**Commercial and civic commissions:** Larger-scale work for corporate clients and system governments. These projects involve spatial identity design for offices, public buildings, and community facilities. Several Roça Nova civic spaces were designed by Sertanejo and are publicly credited. + +**Furniture and material design:** Sertanejo produces a small line of furniture and material goods that embody its design philosophy and are sold separately from commission work. These products serve both as design objects and as marketing material — they appear in the practice's portfolio and in the spaces it designs. + +**Workforce:** Eighteen designers, three project managers, and support staff at the Roça Nova studio. + +--- + +## Political Relationships + +**Quebrada Cultural:** A south reach cultural organization with whom Sertanejo has collaborated on several spatial identity projects — installations and environmental design work for Quebrada's public programming. The relationship is creative and commercial, with occasional co-commissions from south reach cultural institutions. + +**Rijdbaar:** A west reach furniture manufacturer whose modular systems Sertanejo has occasionally specified for commercial commissions. The relationship is a supplier specification; Sertanejo has no commercial stake in the recommendation. + +**Baia Fundo Productions:** A south reach documentary production house that has commissioned Sertanejo for studio environment design. Commercial relationship. + +--- + +## What They Don't Talk About + +The Sertanejo commission agreement — the standard contract signed by all clients before work begins — includes in its intellectual property section a clause defining the treatment of design documentation. The clause states that all design work produced under the commission — drawings, specifications, material selections, concept documentation, photographs, and any other documentation produced in connection with the project — is the intellectual property of Sertanejo Design and may be used by Sertanejo for portfolio, promotional, educational, and commercial purposes without further client consent. + +The clause is explained to clients as standard for design practice — a statement that the practice retains its own work product. In the context of the initial contract conversation, it is described in terms of the design process documentation: the sketches and specifications the studio produces. + +What the clause covers, as written, is broader. It covers photographs of completed residential interiors — the private living spaces of clients who commissioned the work. It covers spatial documentation of commercial projects that clients have not publicly released. Sertanejo's design team routinely photographs completed commissions and uses those photographs in its portfolio and marketing materials. For commercial and civic clients, this is expected and causes no difficulty. For residential clients, it means that photographs of their private homes are in Sertanejo's portfolio and on its marketing channels, taken under a clause signed before they understood its application. + +Several residential clients have raised objections after discovering their homes in Sertanejo's promotional materials. Sertanejo's legal team has responded that the commission contract covers this use. The objections have not produced litigation. They have not produced a contract revision. + +--- + +## Gameplay Relevance + +Sertanejo Design is a south reach cultural institution — a design practice whose work appears in residential and civic spaces throughout the corridor. Its portfolio constitutes a visual archive of south reach interior space. + +The contract clause is the investigative thread. A player with access to Sertanejo's commission agreements — either through a client source or through direct access to the studio's contractual files — can read the intellectual property clause and understand its scope. Comparing the clause against Sertanejo's public portfolio identifies which spaces are documented under it. + +A residential client who discovered their home in Sertanejo's marketing materials and who has documentation of the contract exchange would be a concrete source — someone with specific grievance, a signed contract, and knowledge of how the clause was described to them. + +--- + +**Cross-References:** +- [Roça Nova](../star-systems/GJ-67/index.md) — Headquarters system; south reach corridor +- [Quebrada Cultural](quebrada-cultural.md) — South reach cultural collaborator; spatial identity projects +- [Rijdbaar](rijdbaar.md) — West reach furniture supplier; specification relationship +- [Baia Fundo Productions](baia-fundo-productions.md) — South reach commercial client; studio environment design + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/shetland-wool.md b/wiki/corporations/shetland-wool.md index 927d1a3f4..179aa3c37 100644 --- a/wiki/corporations/shetland-wool.md +++ b/wiki/corporations/shetland-wool.md @@ -1,24 +1,99 @@ --- title: "Shetland Wool" -description: "Shetland Wool — heritage craft manufacturer based in Crown's Hollow, north reach" +description: "North reach heritage textile producer from Crown's Hollow — cold-climate natural fiber tradition, certified heritage breed provenance, and a flock whose genetic lineage no longer matches the heritage specification it trades under" slug: shetland-wool category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Crown's Hollow (GJ 661A) tags: [textiles, heritage_craft, north_reach, tractus, artisan] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [orkney-ceramics, highland-cooperative, thrds] --- # Shetland Wool -**Type:** Corporation — Heritage Craft Manufacturer +**Type:** Corporation — Heritage Craft Manufacturer (Natural Fiber Textiles) **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Crown's Hollow (GJ 661A) +**Scope:** North reach primary; inward corridor premium textile market secondary +**Headquarters:** Crown's Hollow (GJ 661A) — north reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic artisan enterprise; heritage breed certification holder -Shetland Wool is a heritage craft manufacturer operating out of Crown's Hollow (GJ 661A). Details to be expanded. +--- + +## Overview + +Shetland Wool produces natural fiber textiles — yarn, woven fabric, and finished garments — from the fiber of a heritage breed flock maintained at Crown's Hollow. The company has been in continuous operation for two hundred and forty years, making it one of the oldest surviving producers in the north reach corridor. Its products are known for the particular softness and dimensional stability of the fiber, properties attributed in all of Shetland's marketing and provenance documentation to the specific genetics of the heritage flock and the cold, variable climate conditions at Crown's Hollow. + +The company holds a heritage breed certification from the north reach agricultural standards body. This certification, renewed regularly over its hundred-and-ten-year history, attests that the flock from which Shetland's fiber is sourced belongs to a registered heritage breed lineage with documented genetic continuity from the founding animals brought to Crown's Hollow in the early settlement period. The certification is the legal basis for the "heritage fiber" provenance claim that appears on every Shetland product. + +--- + +## Origin + +The founding cohort at Crown's Hollow included agricultural families whose heritage included textile traditions, and among the animals they brought with them were a small flock of cold-adapted sheep with a fine, dense fiber coat suited to the harsh climate they expected to encounter. Crown's Hollow's winters were colder than projected. The animals that thrived were the ones with the densest coats. + +The founding fiber, worked by the settlement's textile workers under the cold-climate conditions that limit available dyes and growing season, produced textiles with a character that traders noticed within two generations. The first export sale is recorded two hundred years ago. Commercial production has been continuous since. + +The heritage breed certification was established one hundred and ten years ago when inward corridor buyers, increasingly interested in provenance claims, required documentation of the flock's genetic lineage. + +--- + +## Operations + +**Flock:** The Crown's Hollow flock currently numbers approximately 800 animals, maintained across several agricultural holdings under contract to Shetland Wool. The flock management includes selective breeding oversight by a contracted agricultural geneticist. + +**Processing:** Fiber from the flock is processed at Shetland's Crown's Hollow facility — washing, grading, spinning, and finishing. The facility employs sixty-four people, including production workers and a small design team responsible for the finished garment line. + +**Product range:** Raw and processed fiber sold to textile manufacturers, spun yarn sold to the craft market, woven fabric sold wholesale, and a finished garment line sold direct to specialist retailers and through Highland Cooperative's north reach distribution. + +**Distribution:** North reach distribution is through Highland Cooperative's freight network. The inward market is served through specialty textile importers and the premium garment trade. + +--- + +## Political Relationships + +**Orkney Ceramics:** A Crown's Hollow-adjacent north reach heritage craft producer with a similar provenance certification model. The two companies share some distribution infrastructure through Highland Cooperative and have occasionally coordinated on joint inward-market promotional events. + +**Highland Cooperative:** The primary distribution partner for both the fiber and the finished garment line within the north reach corridor. + +**thrds:** A north reach textile producer based in Braemar that has established its own corridor brand and inward market presence. The two companies serve overlapping inward markets and are occasionally compared; their aesthetics are distinct but both trade on north reach craft heritage provenance. + +--- + +## What They Don't Talk About + +The heritage breed flock has not been genetically pure for three generations. Thirty-one years ago, a respiratory disease circulated through Crown's Hollow's agricultural community and killed approximately 40% of the heritage flock within a single winter. The loss was severe enough that maintaining the flock's numbers on the remaining heritage animals alone — without breeding new genetic material into the flock — would have required a decade of restricted production that Shetland's contracted markets could not absorb. + +The company's agricultural geneticist recommended introducing a high-yield commercial breed with compatible fiber characteristics to restore flock numbers while preserving as much of the heritage fiber profile as possible. The cross-breeding program was implemented over three years. The current flock is the result of three generations of selective breeding from that cross, optimizing for the fiber quality parameters that the heritage certification uses — softness grade, fiber diameter, dimensional stability. + +The current fiber tests within the heritage certification's quality parameters. The flock's genetic lineage has not been documented in the certification body's registry since before the disease event. The certification renewal process requires quality testing of produced fiber, not genetic testing of the flock. The quality tests pass. The genetic tests have not been run. + +The breeding records at the contracted agricultural holdings document the cross-breeding program. The heritage breed certification body has not been informed. + +--- + +## Gameplay Relevance + +Shetland Wool is north reach economic texture — a heritage brand present in the specialty textile market and in the provenance documentation of premium fiber goods. The flock lineage is the investigative thread. + +A player working on a provenance fraud case or an agricultural standards investigation would find Shetland's certification records and the flock's current documentation inconsistent with the disease event and post-disease breeding records at the agricultural holdings. The breeding records are with the contracted holdings, not with Shetland directly. + +A veterinary or agricultural certification official who reviewed the documentation thirty years ago at the time of the disease event — before the certification body knew the cross-breeding was happening — would have a specific professional interest in what the current flock's genetic composition actually is. + +--- + +**Cross-References:** +- [Crown's Hollow](../star-systems/GJ-661A/index.md) — Headquarters system; north reach corridor +- [Orkney Ceramics](orkney-ceramics.md) — Adjacent north reach heritage craft; shared distribution +- [Highland Cooperative](highland-cooperative.md) — Regional distribution network; north reach logistics +- [thrds](thrds.md) — North reach textile competitor; overlapping inward premium market + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/sova-station-works.md b/wiki/corporations/sova-station-works.md index c4a295da1..bd2918001 100644 --- a/wiki/corporations/sova-station-works.md +++ b/wiki/corporations/sova-station-works.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Sova (GJ 280B) tags: [habitat_modules, structural_panels, manufacturing, assembly, slavic_heritage] decision_refs: [D-175] -cross_refs: [station-sova] +cross_refs: [station-sova, trans-reach-rail] --- # Sova Station Works diff --git a/wiki/corporations/spitsbergen-retreat.md b/wiki/corporations/spitsbergen-retreat.md index fa8baa091..194afaf90 100644 --- a/wiki/corporations/spitsbergen-retreat.md +++ b/wiki/corporations/spitsbergen-retreat.md @@ -1,11 +1,11 @@ --- title: "Spitsbergen Retreat" -description: "Spitsbergen Retreat — premium service provider based in Halvøy, west reach" +description: "West reach extreme-isolation hospitality at Halvøy (GJ 624) — a destination for people who need to be genuinely unreachable, marketed as restorative wilderness withdrawal" slug: spitsbergen-retreat category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Halvøy (GJ 624) @@ -16,9 +16,61 @@ cross_refs: [] # Spitsbergen Retreat -**Type:** Corporation — Premium Service Provider +**Type:** Corporation — Extreme-Isolation Hospitality **Status:** Canonical -**Scope:** Regional — west reach operations +**Scope:** West reach corridor; cross-corridor referrals via specialist networks **Headquarters:** Halvøy (GJ 624) +**Currency:** Mark (Compact zone) +**Classification:** Sub-Syndic service enterprise; private limited partnership -Spitsbergen Retreat is a premium service provider operating out of Halvøy (GJ 624). Details to be expanded. +--- + +## Overview + +Halvøy is not a comfortable system. The habitable body is cold, its terrain is dramatically uneven, its weather is characterized by extended periods of low-visibility conditions that the local population describes as "the grey" and that visitors from more temperate systems describe with words they do not use in front of the locals. The permanent settlement population is small and self-sufficient by necessity. The economic base is extraction and transit service, not hospitality. Spitsbergen Retreat arrived here forty years ago because this specific inhospitability was exactly what the founders were looking for. + +The Retreat operates one property: twenty-eight rooms in a building that sits at the edge of Halvøy's primary continental shelf, above a coastline that is spectacular in the specific way that extremely cold and extremely remote things are spectacular when seen from inside a heated room. The property is three hours by ground transport from the nearest settlement with a functioning Meridian node. This is not a design oversight. Meridian signal does not reach the property. This is not a technical failure. The location was selected for the gap. + +What the Retreat sells is genuine unreachability. Not the curated version — the switched-off lattice, the silent mode setting, the scheduled communication blackout that can be overridden with the right credentials. The actual version: a location where Meridian infrastructure does not exist, where lattice communication requires active relay equipment that the property does not operate, where being here means being here and not anywhere else on any network. + +--- + +## Origin + +The partnership was founded forty years ago by two people who had each, in different contexts, experienced the specific problem that Spitsbergen Retreat now addresses: the impossibility of being genuinely unreachable. One founder was a commercial attorney who had spent twenty years unable to take a leave of absence that was not interrupted. The other was a logistics executive who had reached the point at which the inability to disconnect from institutional communication was affecting her health in ways her physicians were not able to address with available treatments. They arrived at the same conclusion through different routes: the problem was not personal organization but infrastructure. The infrastructure reached everywhere. The solution was to go somewhere it did not. + +They spent two years identifying the right location — systems where Meridian coverage had gaps, bodies where the geology or distance from relay infrastructure produced natural signal absence, properties that could be built to the specification without attracting regulatory attention. Halvøy was the conclusion. The property has been operating for thirty-eight years. Both founders are still partners. Both of them, when asked how often they personally use the property, give answers that are technically accurate and do not address the question. + +--- + +## Operations + +**The property:** Twenty-eight rooms in two wings, designed for stays of four days to three weeks. The building is constructed for the local climate — thick walls, passive thermal systems, architecture that manages wind load and maintains interior temperatures that are warm relative to the exterior without feeling artificially controlled. The design aesthetic is west reach Nordic: functional, unornamented, built to last rather than to impress. + +**Connectivity:** None available to guests. The property maintains a single emergency communication system accessible only to staff for medical and safety purposes. The system is not available to guests except in the specific circumstances defined as emergencies, which are defined narrowly and enforced. Guests who require contact with the outside world during their stay are told this before they arrive and are provided the option of not booking. + +**Guest profile:** The Retreat does not publish a guest list, has never published a guest list, and declines to characterize its guests by profession or institutional affiliation. The booking process is managed through a referral network — guests are introduced to the Retreat by previous guests or by a small number of specialist travel advisors in the west reach corridor. There is no public booking system. There is no advertising. The Retreat is known in the specific circles where it is relevant and invisible everywhere else. + +**Staff:** Eleven permanent staff, including two medical technicians, one of whom has wilderness emergency credentials. The staff recruitment profile emphasizes competence in isolated-location operations, discretion, and the specific skill set required to serve guests who want to be ignored while they are being taken care of. + +--- + +## What They Don't Talk About + +The natural Meridian gap at Halvøy's coastal location is not entirely natural. The property was positioned within an existing coverage gap, which is true. What is also true is that the property has, over its history, added a small number of passive signal-dampening installations in the surrounding terrain that extend and stabilize the gap. The installations are not advertised. They operate in a regulatory gray area: the Lattice Commission licenses active signal interference equipment, but passive dampening in private territory does not have a clear classification. The Retreat has never applied for a license, partly because the applicable license category does not cleanly exist and partly because applying for it would draw Commission attention to a facility whose value to its clients depends on the Commission not paying close attention to it. + +The facilities have never been flagged. The location is remote and the Retreat is quiet. The Commission's inspection cycles for Halvøy's peripheral territory run on a schedule that has not yet reached the coastal shelf. The founders are aware of the schedule and have not done anything to accelerate it. + +--- + +## Gameplay Relevance + +Spitsbergen Retreat is the destination that explains a gap. When a player is tracing the movements of someone who went dark for a period — no Meridian activity, no lattice communication logs, no location data — and the gap is in the west reach, Halvøy is the answer that fits. Confirming it requires either access to the booking referral network (private, small, word-of-mouth) or a source who knows the property. The Retreat does not cooperate with institutional inquiries as a policy. + +The signal dampening installations are the regulatory thread. A Commission investigator with specific equipment could detect the passive dampening signature during a site inspection — but reaching the site requires justification that the current gap in the inspection schedule does not provide. The thread is accessible to a player who can either manufacture a Commission inspection or locate the physical installation documentation, which exists in the original construction records and would require access to building records from forty years ago filed in a west reach registry that is not well indexed. + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/stalownia-kowalski.md b/wiki/corporations/stalownia-kowalski.md index 2ab212985..136cd22b7 100644 --- a/wiki/corporations/stalownia-kowalski.md +++ b/wiki/corporations/stalownia-kowalski.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Nowa Huta (GJ 896A) tags: [refined_metals, advanced_alloys, structural_panels, heavy_equipment, south_reach, tractus] decision_refs: [D-175] -cross_refs: [] +cross_refs: [durban-engineering] --- # Stalownia Kowalski @@ -96,7 +96,7 @@ None of this is available outside the company. Stalownia's documentation practic ## Gameplay Relevance -Stalownia is present in the v0.1 slice as texture and setting context. The mining and construction equipment that built and maintains Station Sova and the Van Maanen's Star extraction operations likely carries SK branding or is documented in system records as Stalownia installations. This is background — the equipment that built the world the player moves through. +Stalownia is present throughout the Reach's extraction and settlement zones as infrastructure texture. Mining and construction equipment at inner core extraction operations and frontier stations likely carries SK branding or appears in system records as Stalownia installations. This is background — the equipment that built the world the player moves through. For investigation, Stalownia's maintenance contracts create a plausible field presence in extraction systems. A Stalownia service technician is a normal figure at an extraction site; a Stalownia service contract is a normal entry in a system's commercial register. Either can serve as cover, as contact, or as a thread to pull. The company's archive is a potential resource for players investigating extraction site incidents, structural failures, or anything where the original engineering specifications matter. Accessing that archive — or finding someone who has access to it — requires working around an institution that has very specific ideas about what belongs inside the company and what does not. diff --git a/wiki/corporations/steinbach-furniture.md b/wiki/corporations/steinbach-furniture.md index 9ecac307b..8e23c10e8 100644 --- a/wiki/corporations/steinbach-furniture.md +++ b/wiki/corporations/steinbach-furniture.md @@ -1,24 +1,95 @@ --- title: "Steinbach Furniture" -description: "Steinbach Furniture — design and furniture manufacturer based in Steinfeld, west reach" +description: "West reach modular furniture systems from Steinfeld — space-efficient industrial-craft design with certified load ratings established on prototype tolerances that production units do not consistently meet" slug: steinbach-furniture category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Steinfeld (GJ 454) tags: [design_heritage, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [rijdbaar, vlaams-atelier] --- # Steinbach Furniture -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Design and Furniture Manufacturer (Modular Systems) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Steinfeld (GJ 454) +**Scope:** West reach primary; corridor-wide commercial and residential market secondary +**Headquarters:** Steinfeld (GJ 454) — west reach corridor, 3 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic design enterprise; modular furniture systems manufacturer -Steinbach Furniture is a design and furniture manufacturer operating out of Steinfeld (GJ 454). Details to be expanded. +--- + +## Overview + +Steinbach Furniture manufactures modular furniture systems for residential, commercial, and institutional spaces. The company's design philosophy is industrial in heritage and practical in application: furniture systems built to fit the spatial constraints of west reach habitation — compact, multi-use, and designed to be reconfigured as a space's function changes. The work does not aspire to the same engineering precision as Rijdbaar, the Confluent competitor it is frequently compared against. Steinbach's comparative advantage is cost and availability: equivalent functionality at a lower price point, stocked through west reach retail channels rather than sold on long-order lead times. + +The modular systems carry certified load ratings that appear on product specification sheets and in marketing materials. These ratings are the basis of commercial procurement decisions — institutions and businesses that specify Steinbach for office and facility use do so relying on the accuracy of those specifications. + +--- + +## Origin + +Steinbach was founded fifty-four years ago by an engineer whose background was in Steinfeld's precision manufacturing sector. The founding premise was that west reach habitation spaces were systematically under-served by furniture that treated the aesthetic dimensions as primary — the available products looked good but were dimensionally awkward for the spatial profiles common in west reach station and orbital habitation. + +The first product was a wall-mounted storage and workspace system designed specifically for the dimensional profile of a Steinfeld station module. It sold immediately and completely. The modular system launched within three years of the founding, scaled to the full range of station and planetary habitation formats. The commercial line — for corporate offices and institutional facilities — followed a decade later. + +--- + +## Operations + +**Residential modular system:** Components in a standardized interface format — shelving, storage, workspace, sleeping configurations — designed for residential habitation. The residential system is the company's largest product category by unit volume. + +**Commercial and institutional line:** Heavier-gauge components for office and institutional use, with load ratings specified for commercial environments. The commercial line carries the certification specifications that matter most to procurement decisions. + +**Manufacturing:** The Steinfeld facility employs eighty-nine people, including engineering, fabrication, and quality control. The modular component production line is the facility's largest operation. + +**Certification:** Steinbach's commercial line components are tested against the west reach consumer products authority's structural standards. The certification process involves testing prototypes against rated load specifications and issuing certification on the basis of test results. + +**Distribution:** The west reach retail network for residential products; direct procurement relationships with corporate and institutional clients for the commercial line. + +--- + +## Political Relationships + +**Rijdbaar:** The primary west reach competitor in the design-heritage furniture category. The two companies serve different price tiers and different buyer profiles, but compete directly in the commercial mid-market where institutional buyers compare specification sheets. The comparison is not always to Steinbach's advantage, and the company is aware of this. + +**Vlaams Atelier:** A west reach design firm that has specified Steinbach commercial components for several mid-scale office projects. The relationship is a commercial account relationship. + +--- + +## What They Don't Talk About + +Steinbach's commercial line load rating certification is based on prototype testing — physical specimens built by the engineering team for the express purpose of certification testing, held to tighter tolerances than the production specification allows. This is standard practice and the certification body is aware that prototype specimens are used for testing. The relevant question is how closely the production specification matches the prototype. + +Eight years ago, Steinbach's quality control team completed an analysis of production yield against the prototype tolerance stack and found that meeting the prototype's tolerance requirements across the full production run would require rejection rates that the production economics could not absorb. The engineering team was asked to revise the production acceptance tolerances upward — to allow a wider dimensional range in the components that passed quality control. + +The revised production tolerances are 8% wider on the critical structural dimensions than the prototype specification. The commercial line components that reach customers are accepted against the wider tolerance. The certified load ratings were established on prototype specimens built to the original, tighter tolerance. Whether a production-tolerance component meets the load rating a prototype-tolerance specimen demonstrated is a question Steinbach has not formally tested. + +The furniture is safe under normal use conditions. The load ratings on the specification sheets describe what the certification specimens demonstrated. The relationship between those specimens and the production components is not something Steinbach's public documentation addresses. + +--- + +## Gameplay Relevance + +Steinbach Furniture is commercial infrastructure — its products appear in office and institutional spaces throughout the west reach. The load rating certification gap is an investigative thread most relevant in the context of an incident: a structural failure of a Steinbach component at or below its rated load, in a commercial or institutional setting. + +A player investigating such an incident would encounter the certification records and the production quality control documentation as two separate document sets. The certification records show the prototype test results. The production quality control records show the acceptance tolerance in use. Comparing the two reveals the tolerance discrepancy. The engineering team's yield analysis from eight years ago is the document that explains why the tolerance was changed. +That analysis also includes a calculated estimate of expected failure probability for production-tolerance components tested at rated load — a number Steinbach's management reviewed, accepted, and filed without acting on. + +--- + +**Cross-References:** +- [Steinfeld](../star-systems/GJ-454/index.md) — Headquarters system; west reach corridor +- [Rijdbaar](rijdbaar.md) — West reach competitor; design-heritage furniture, higher precision tier +- [Vlaams Atelier](vlaams-atelier.md) — West reach design firm; commercial specification client + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/sunderland-precision.md b/wiki/corporations/sunderland-precision.md index 812c970f4..59a24e11c 100644 --- a/wiki/corporations/sunderland-precision.md +++ b/wiki/corporations/sunderland-precision.md @@ -1,24 +1,101 @@ --- title: "Sunderland Precision" -description: "Sunderland Precision — precision technology manufacturer based in Ashworth Junction, north reach" +description: "North reach remote environmental sensor systems from Ashworth Junction — industrial monitoring for hostile environments, with a data compression protocol that substitutes interpolated values for dropped readings without disclosing this in technical documentation" slug: sunderland-precision category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Ashworth Junction (GJ 873) tags: [tech_premium, north_reach, tractus, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [pembrokeshire-smithy, grampian-systems, rheintal-systems] --- # Sunderland Precision -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Technology Manufacturer (Environmental Sensors) **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Ashworth Junction (GJ 873) +**Scope:** North reach primary; reach-wide industrial monitoring supply secondary +**Headquarters:** Ashworth Junction (GJ 873) — north reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic technical enterprise; remote environmental sensor systems manufacturer -Sunderland Precision is a precision technology manufacturer operating out of Ashworth Junction (GJ 873). Details to be expanded. +--- + +## Overview + +Sunderland Precision manufactures environmental monitoring sensor systems designed for remote and hostile industrial environments — mining operations, atmospheric processing, orbital thermal management, and the monitoring infrastructure that keeps industrial installations operating safely when continuous human observation is not practical. The company's product is not the sensor component itself but the complete monitoring package: sensors, data transmission infrastructure, and the analysis software that converts field readings into the operational intelligence industrial operators need to make decisions. + +The company is one of the north reach's primary suppliers for heavy industrial environmental monitoring. Its products operate in environments where failure means something — where a sensor that stops producing reliable data produces a compliance gap or an operational risk. Sunderland's reputation for reliability in harsh conditions is the basis of its market position. + +The reliability has a bounded definition that its technical documentation does not fully describe. + +--- + +## Origin + +Sunderland was founded forty-three years ago at Ashworth Junction by an engineer whose career had been in remote operations management for north reach mining. The founding insight was operational rather than technical: the available environmental sensor systems were designed for accessible environments and performed degraded in the signal-interference conditions common to heavy mining operations. They dropped readings. They produced gaps in the monitoring record. Operators either accepted the gaps or sent personnel to manually verify — both of which were costly. + +The founding product addressed signal integrity specifically. The hardware was engineered for high-interference environments; the data transmission protocols were designed around reliability in degraded signal conditions. This focus produced a product that genuinely performed better than the alternatives in the conditions north reach heavy industry actually encountered. + +The data transmission protocols included a compression feature. The feature was documented. The documentation was not complete. + +--- + +## Operations + +**Remote sensor packages:** The flagship product — integrated sensor arrays with transmission hardware and software for deployment in hostile environments. Configured for atmospheric, thermal, seismic, or combined monitoring applications depending on client requirements. + +**Analysis software:** The monitoring software layer that receives transmission data and presents it to operators as actionable readings. The software handles data integrity validation, alert threshold management, and the regulatory-compliance reporting that industrial operators file with the relevant authorities. + +**Installation and maintenance:** Sunderland provides installation, calibration, and maintenance contracts for deployed systems. The maintenance contracts are long-term and represent a significant fraction of the company's recurring revenue. + +**Certification:** Sunderland's environmental monitoring packages are certified under industrial equipment standards for the monitoring categories they serve. The certification process tests sensor accuracy and data integrity under specified conditions. + +--- + +## Political Relationships + +**Pembrokeshire Smithy:** A north reach metalwork supplier that provides custom tool components for Sunderland's calibration workshop. The Sunderland-branded calibration tools in wide use across the north reach use Pembrokeshire sub-specification metalwork. + +**Grampian Systems:** A north reach industrial technology company with overlapping industrial client base. The relationship is competitive in some equipment categories and complementary in others; Grampian integrates Sunderland sensor data into some of its facility management systems. + +**Rheintal Systems:** A west reach industrial sensor manufacturer that competes in overlapping categories for reach-wide industrial clients. The two companies are the most often-compared alternatives in inward corridor procurement evaluations for industrial monitoring. + +--- + +## What They Don't Talk About + +The data transmission protocol used by Sunderland's remote sensor packages includes a compression feature that activates under sustained signal interference conditions — conditions common in the heavy mining environments the product was designed for. Under normal signal conditions, the system transmits a complete data stream. When signal interference exceeds a defined threshold for more than approximately forty seconds, the compression feature activates and begins dropping granular readings. + +Dropped readings are not transmitted as gaps. The software analysis layer interpolates values for dropped readings based on the preceding data trend and the environmental model built from prior readings. The interpolated values are transmitted and recorded in the monitoring data stream without distinguishing notation. An operator looking at the monitoring output — or filing compliance data from it — sees a continuous data record. + +The interpolation is technically sound under typical operational conditions. The resulting values are generally accurate. What the documentation provided to clients and filed with the Commission's industrial certification body does not state is that interpolated values exist in the monitoring record, under what conditions they are generated, or how to identify them. The system does not flag interpolated values in the output. + +Industrial operators who use Sunderland systems for regulatory compliance reporting are filing reports that include unacknowledged interpolated readings. Whether the Commission's compliance review process is designed to accept monitoring data that includes undisclosed interpolation is a question Sunderland has not asked it. + +--- + +## Gameplay Relevance + +Sunderland Precision is industrial infrastructure — its sensor systems appear in the environmental monitoring equipment chains of heavy industrial operations throughout the north reach and beyond. Any investigation involving an industrial incident where monitoring data is relevant may encounter Sunderland systems. + +The interpolation protocol is the investigative thread. A player with access to the analysis software's source documentation — the technical implementation records rather than the user-facing documentation — would find the interpolation logic and the conditions under which it activates. Cross-referencing the activation conditions against the operating environment of a specific installation produces a record of when and how often the interpolation was running during the incident window. + +The Commission's compliance certification records do not contain the interpolation disclosure because it was not disclosed. The gap between what the compliance data contains and what the system was doing when it produced that data is documentable from Sunderland's own technical records. + +--- + +**Cross-References:** +- [Ashworth Junction](../star-systems/GJ-873/index.md) — Headquarters system; north reach corridor +- [Pembrokeshire Smithy](pembrokeshire-smithy.md) — North reach supplier; calibration tool metalwork +- [Grampian Systems](grampian-systems.md) — North reach industrial technology; complementary client integration +- [Rheintal Systems](rheintal-systems.md) — West reach competitor; industrial sensor market + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/sungshin-music.md b/wiki/corporations/sungshin-music.md index a62521cd0..484b22859 100644 --- a/wiki/corporations/sungshin-music.md +++ b/wiki/corporations/sungshin-music.md @@ -1,24 +1,101 @@ --- title: "Sungshin Music" -description: "Sungshin Music — cultural content producer based in Shimanami, east reach" +description: "East reach music publisher and recording collective from Shimanami — regional artist development, traditional and contemporary production, with a catalogue consolidation provision that transfers ownership of funded work after five years" slug: sungshin-music category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Shimanami (GJ 848) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ondori-interactive, fjeldtone-music, open-corridor-stream] --- # Sungshin Music -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Cultural Content Producer (Music Publishing and Recording) **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Shimanami (GJ 848) +**Scope:** East reach primary; reach-wide music distribution secondary +**Headquarters:** Shimanami (GJ 848) — east reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; regional music publisher and recording label -Sungshin Music is a cultural content producer operating out of Shimanami (GJ 848). Details to be expanded. +--- + +## Overview + +Sungshin Music is the east reach's most established music publisher and recording label. The company produces original recordings, develops emerging artists from Shimanami and adjacent east reach systems, and manages a catalogue that spans over sixty years of regional musical output — from the traditional forms associated with east reach settlement culture through the contemporary production styles that have made several Sungshin artists recognizable across multiple corridors. + +The company's development program is its most visible public function: a structured pathway for musicians who have demonstrated promise but lack the resources and infrastructure to produce commercially distributable work. The program provides studio access, production support, distribution connections, and in some cases financial advances against future royalties. Several of the east reach's most recognized musicians built their careers through Sungshin's development structure. The company takes genuine pride in this. + +The contracts under which development artists enter this structure contain a provision that most of them have not understood when they signed. + +--- + +## Origin + +Sungshin was founded sixty-three years ago at Shimanami by a music producer whose prior career had been in the core corridor industry. The founder returned to the east reach with the explicit purpose of building the infrastructure that east reach musicians lacked — studio quality, distribution reach, and commercial relationships that would let regional artists access markets that had previously required relocating to core corridor systems. + +The first decade was a recording studio and production service for whoever could pay. The development program began in year twelve, when the company had enough revenue stability to offer unpaid production support in exchange for recording rights. The catalogue grew from there. + +Ownership transferred to a management consortium twenty years ago when the founder retired. The development program's contract structure was standardized at that point. + +--- + +## Operations + +**Recording and production:** Sungshin operates a full-service recording studio at Shimanami, producing original work for signed artists and providing studio services to independent clients. The studio has been expanded three times in the company's history and is the most well-equipped recording facility in the east reach corridor. + +**Publishing:** Sungshin manages the commercial licensing of works in its catalogue — placement in interactive content, broadcast licensing, synchronization rights for visual productions. Publishing revenue is a significant and growing component of total income. + +**Development program:** Structured artist development with studio access, production support, and distribution. Program artists receive production investment and access to Sungshin's commercial relationships. Development contracts are two-year terms with optional renewal. Program artists who go on to commercial release are offered recording contracts with Sungshin. + +**Distribution:** Sungshin's catalogue distributes through Open Corridor Stream and several east reach regional platforms. The company manages its own distribution licensing rather than using an intermediary. + +--- + +## Political Relationships + +**Ondori Interactive:** Sungshin has been Ondori's preferred soundtrack production partner for over twenty years. Several Sungshin artists are associated with specific Ondori titles through long-form collaboration. The relationship is the most significant ongoing commercial partnership in both companies' operations. + +**Fjeldtone Music:** A west reach music publisher with a different cultural focus and a different geographical market. The two companies have occasional licensing exchanges for placement in reach-wide productions that need both east and west reach musical character. + +**Open Corridor Stream:** The primary distribution platform for Sungshin's catalogue and for development artists' commercial releases. + +--- + +## What They Don't Talk About + +The Sungshin development program contract is two years in initial term, with performance milestones that can trigger early release from the contract if an artist does not achieve commercial distribution within the term. If the artist achieves commercial distribution — which is the program's stated goal — they are offered a recording contract. The recording contract contains a standard catalogue consolidation provision. + +The catalogue consolidation provision states that any work produced with Sungshin development program funding, or produced under the subsequent recording contract and held in the Sungshin catalogue, becomes full Sungshin property after five years from commercial release date. The artist retains their royalty share as specified in the recording contract for the duration of the royalty period. Full commercial rights — including the right to license, modify, or remove the work from distribution — transfer to Sungshin. + +This is not unusual in the music industry. Several major publishing houses use comparable structures. What is unusual is that Sungshin's development program marketing presents the program as "artist-led ownership" — a phrase that appears in its public materials and in the enrollment conversations with prospective program artists. The phrase refers to the creative control artists retain during production. It says nothing about the five-year commercial rights transfer. + +Artists who have gone on to build careers — and who now want to re-license their early catalogue work or control how it is placed — have discovered that Sungshin holds the rights and that the decision is Sungshin's to make. + +--- + +## Gameplay Relevance + +Sungshin Music is east reach cultural infrastructure — a publisher and catalogue holder whose output is present wherever east reach musical culture appears, from ambient environmental audio in east reach locations to commercial licensing in interactive productions. + +The catalogue consolidation provision is the investigative thread. A player working on a case involving a musician whose early work is being used or withheld contrary to their wishes would find the relevant contract provision in the recording agreement. The development program enrollment materials and the recording contract are two distinct documents; the enrollment materials do not include the consolidation clause. + +An established east reach artist who discovered the rights transfer after attempting to exercise control over their early catalogue work would have specific documentation of the gap between what they understood at enrollment and what the contract provides. + +--- + +**Cross-References:** +- [Shimanami](../star-systems/GJ-848/index.md) — Headquarters system; east reach corridor +- [Ondori Interactive](ondori-interactive.md) — East reach content partner; long-term soundtrack collaboration +- [Fjeldtone Music](fjeldtone-music.md) — West reach music publisher; occasional licensing exchange +- [Open Corridor Stream](open-corridor-stream.md) — Primary distribution platform; catalogue and artist releases + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/svanevann-waters.md b/wiki/corporations/svanevann-waters.md index 32b118970..31304f541 100644 --- a/wiki/corporations/svanevann-waters.md +++ b/wiki/corporations/svanevann-waters.md @@ -1,24 +1,97 @@ --- title: "Svanevann Waters" -description: "Svanevann Waters — regional specialty producer based in Nyrheim, west reach" +description: "West reach mineral water from Nyrheim — Commission-registered geographic indication, documented mineral profile, and an aquifer drawdown that the company's own geological assessment says will exhaust the registered profile within a decade" slug: svanevann-waters category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Nyrheim (GJ 3737) tags: [water, terroir, west_reach, mark, scarcity_class_rare] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [rheingold-distillers, schwarzwald-gin, mercado-travessia] --- # Svanevann Waters -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Regional Specialty Producer (Mineral Water) **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Nyrheim (GJ 3737) +**Scope:** West reach primary; inward corridor premium beverage market secondary +**Headquarters:** Nyrheim (GJ 3737) — west reach corridor, 5 hops from Gateway via Mark currency zone +**Classification:** Sub-Syndic artisan enterprise; Lattice Commission geographic indication holder (mineral waters) -Svanevann Waters is a regional specialty producer operating out of Nyrheim (GJ 3737). Details to be expanded. +--- + +## Overview + +Svanevann Waters produces mineral water from the Nyrheim hydrological system — a network of deep-substrate aquifer flows that emerge at the Svanevann springs with a mineral composition that has been documented, analyzed, and Commission-registered as a geographic indication for over seventy years. The water's characteristic mineral profile — high in specific alkaline and trace mineral compounds, naturally carbonated from subsurface pressure, with a documented conductivity range that does not occur naturally in any other commercially exploited aquifer in the west reach — is the basis of the product's premium positioning. + +The company distributes to inward corridor luxury markets, where the geographic indication and the documented mineral profile function as verifiable provenance claims. Buyers who pay Svanevann's prices are paying for the specific mineral character that the Commission's registration certifies. The Commission's registration is based on an assessment conducted before the character of the Nyrheim aquifer began to change. + +--- + +## Origin + +Svanevann was founded one hundred and twelve years ago at Nyrheim by a family that had been using the spring for local consumption since the early settlement period. Commercial distribution began when a west reach regional trader brought samples to the core corridor and found buyers who responded strongly to the mineral character. The geographic indication filing followed twenty years later, when commercial interest in the water had grown enough that the company wanted authenticated provenance protection. + +The scarcity-class rare designation was added forty years ago, when the Commission's agricultural products authority confirmed that the aquifer yield was limited to the natural spring outflow rate and that the mineral composition was non-replicable. The designation is accurate to the aquifer's historical characteristics. + +--- + +## Operations + +**Spring operations:** The Svanevann springs are the sole source of production water. The aquifer feeds the springs through a subsurface geology that has been unchanged for the period of documented production. The spring outflow rate sets the natural production ceiling. Svanevann does not pump the aquifer; it captures spring flow. + +**Processing:** Minimal — filtration to remove particulate matter, carbonation adjustment to maintain the labeled carbonation range, and filling in the sealed glass containers that protect the mineral profile from atmospheric exchange. + +**Geographic indication compliance:** Annual documentation submitted to the Commission's agricultural products authority covering spring outflow volume, mineral composition testing, and carbonation measurement. The documentation is filed accurately. + +**Distribution:** Through west reach specialty retailers and Mercado Travessia for inward corridor placement. + +--- + +## Political Relationships + +**Rheingold Distillers / Schwarzwald Gin:** Fellow west reach scarcity-class designation holders in related premium beverage categories. The three producers are sometimes grouped in inward corridor premium beverage collections and occasionally coordinated on west reach terroir export marketing. + +**Mercado Travessia:** The primary inward-corridor retail channel. Mercado's provenance documentation for Svanevann reinforces the geographic indication narrative. + +**Lattice Commission:** The geographic indication registration and scarcity-class designation both require Commission maintenance. The Commission reviews the annual documentation. The mineral composition testing results are filed with the Commission and are publicly accessible. + +--- + +## What They Don't Talk About + +The Nyrheim aquifer has been measurably declining for twenty years. The decline has two causes: industrial extraction from a processing facility that entered operation in the adjacent geological zone eighteen years ago, and the commercial extraction that Svanevann's own spring operations represent. The industrial facility's extraction is on a separate geological formation but close enough to the aquifer that hydrological modeling has consistently found a drawdown contribution. + +Three years ago, Svanevann commissioned a geological assessment from an independent survey firm. The assessment's conclusion was that the aquifer, at current combined extraction rates, would produce mineral composition readings outside the Commission's registered geographic indication parameters within nine to thirteen years. The mineral profile will change as the aquifer depth decreases; the deep substrate minerals that define the registered profile will be diluted by shallower formation water. + +The assessment has not been shared with the Commission. The Commission's geographic indication renewal process reviews filed mineral composition test results against the registered profile. The current composition tests still fall within the registered parameters. The assessment is an internal document predicting future non-compliance, not a current compliance gap. + +Svanevann's management has not disclosed the assessment to its commercial partners. The product currently delivers what the geographic indication certifies. The future of that certification is in a geological assessment file at the Nyrheim facility. + +--- + +## Gameplay Relevance + +Svanevann Waters is west reach premium texture — a geographic indication product distributed across inward markets as an authenticated provenance good. Its annual Commission filings are publicly accessible; the mineral composition data is in the public record. + +The geological assessment is the investigative thread. A player with access to Svanevann's internal files — or a source at the survey firm that conducted the assessment — has a document showing that the company commissioned and received evidence of impending geographic indication non-compliance and did not disclose it. The question of whether non-disclosure of a future compliance risk constitutes a regulatory breach is one the Commission's enforcement office has not yet been asked. + +The industrial facility's extraction contribution to the drawdown is in the facility's own operational documentation, which is separately accessible. A player combining the geological assessment, the industrial extraction records, and the Commission's geographic indication files has a multi-source account of a provenance claim that will eventually become untenable. + +--- + +**Cross-References:** +- [Nyrheim](../star-systems/GJ-3737/index.md) — Headquarters system; west reach corridor +- [Rheingold Distillers](rheingold-distillers.md) — West reach terroir peer; shared scarcity designation category +- [Schwarzwald Gin](schwarzwald-gin.md) — West reach terroir peer; shared designation category +- [Mercado Travessia](mercado-travessia.md) — Inward-corridor premium retail partner + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/thorngate-media.md b/wiki/corporations/thorngate-media.md index 93f8a05fb..e67eecca1 100644 --- a/wiki/corporations/thorngate-media.md +++ b/wiki/corporations/thorngate-media.md @@ -1,24 +1,101 @@ --- title: "Thorngate Media" -description: "Thorngate Media — cultural content producer based in Crown's Hollow, north reach" +description: "North reach documentary and investigative content from Crown's Hollow — long-form journalism tradition anchored to community, with commissioned works whose funding relationships are disclosed to regulators but not to audiences" slug: thorngate-media category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Crown's Hollow (GJ 661A) tags: [cultural, north_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [reach-standard-media, ashwick-broadcasting, reach-archive-standard] --- # Thorngate Media -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Cultural Content Producer (Documentary and Investigative Journalism) **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Crown's Hollow (GJ 661A) +**Scope:** North reach primary; reach-wide documentary distribution secondary +**Headquarters:** Crown's Hollow (GJ 661A) — north reach corridor, 5 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; documentary and investigative journalism organization -Thorngate Media is a cultural content producer operating out of Crown's Hollow (GJ 661A). Details to be expanded. +--- + +## Overview + +Thorngate Media produces long-form documentary and investigative journalism content rooted in the north reach. The company's output has, over forty years, established a distinctive form: methodical, unhurried reporting on the economic and social structures of the north reach corridor — agricultural communities, extraction industries, local governance, and the relationships between north reach populations and the inward systems they trade with. The form is investigative in the classical sense, not in the sensationalist one. Thorngate documentaries end with accountability rather than revelation, and they take years to produce. + +The company is widely regarded, within the north reach and in reaches of the inward corridor that pay attention to documentary journalism, as one of the few genuinely independent production organizations in the region. The regard is based on a track record of work that has, on several occasions, produced uncomfortable findings for industries and institutions operating in the corridor. Thorngate is the organization that covers the north reach as it is, not as it wants to be seen. + +This reputation is largely earned. The commissioned works are where it becomes complicated. + +--- + +## Origin + +Thorngate was founded forty-one years ago at Crown's Hollow by a journalist who had spent a decade working for core corridor news organizations and had grown dissatisfied with what the core corridor's editorial culture treated as the scope of legitimate investigation. The founding premise was geographic: the north reach was systemically underreported, and the organizations best positioned to cover it operated primarily for audiences that treated it as background context. + +The first decade was financially difficult. Thorngate funded its work through grants from north reach system cultural bodies and through commercial documentation work — industrial histories, institutional commemoratives — that paid for the investigative capacity they wanted to maintain. The investigative work gradually built the reputation that attracted the distribution relationships and the subscriber base that now fund it. + +The commercial documentation work never fully stopped. + +--- + +## Operations + +**Original investigative journalism:** Long-form documentaries and serialized investigative pieces on north reach economic and social subjects. These are the Thorngate work that builds and maintains the organization's reputation. Production timelines are long: a significant documentary takes two to four years from first reporting to distribution. + +**Distribution:** Thorngate's catalogue distributes through Open Corridor Stream for independent access and through Reach Archive Standard for institutional deposit and preservation. Several works have been picked up by Reach Standard Media for reach-wide broadcast. + +**Commercial documentation:** Industry histories, institutional anniversary documentaries, public record documentaries for system governments — work commissioned by the subjects it covers, produced to the client's documentary purposes. This work is filed with the Lattice Commission's media licensing body under the "commissioned content" disclosure requirement. + +**Workforce:** Fourteen journalists and producers, plus research and production support staff at the Crown's Hollow facility. + +--- + +## Political Relationships + +**Reach Standard Media:** Has broadcast three Thorngate investigative documentaries on its reach-wide network. The relationship is a licensing and distribution agreement; Reach Standard Media has no editorial authority over Thorngate content. + +**Ashwick Broadcasting:** A competitor in the reach-wide documentary space. Ashwick has broader reach but Thorngate has the north reach-specific depth. The two organizations occasionally pursue the same subjects from different starting positions. + +**Reach Archive Standard:** Thorngate's institutional archive deposit relationship. All completed documentary work is deposited with RAS as a matter of organizational policy. + +--- + +## What They Don't Talk About + +Thorngate's commissioned content — the industrial histories, institutional documentaries, and system government records — is filed with the Commission's media licensing body under the disclosure framework for commercially funded content. The filing is a regulatory requirement; the information is in the public register, accessible to anyone who queries the register by producer name. + +The disclosure is not in the credited works themselves. Commissioned Thorngate documentaries are distributed with the same credit format as the organization's independent investigative work: produced by Thorngate Media, with named journalists and researchers. The commercial relationship that funded the work is not in the credits. It is not in the promotional materials. It is not mentioned in the distribution catalogue descriptions. + +In four cases over the past fifteen years, commissioned works have covered subjects — industrial practices, a system government's economic development program, a commodity producer's labor practices — where the commissioning client was the primary subject of the documentary. The works are not false. Thorngate does not produce false work for its commissioned clients; the facts it presents are accurate. The framing, emphasis, and selection of which questions to pursue was conducted with the awareness that the client had commissioned the work. + +None of the four audiences who watched those documentaries were told that the commissioning relationship existed. + +--- + +## Gameplay Relevance + +Thorngate Media is a north reach cultural institution — a journalism organization with genuine credibility and a more complicated financial structure than its public profile suggests. Its documentary archive is a primary source for investigative work involving north reach industries. + +The commissioned work disclosure is the investigative thread. A player who queries the Commission's media licensing register for Thorngate filings will find the commissioned content disclosures. Comparing those against Thorngate's public catalogue identifies the four documentaries that were commercially funded by their subjects. The original commission agreements are in Thorngate's files. + +The investigative team members who produced the commissioned works are aware of the commercial relationships. Whether they were aware of how uncommon it is for commissioned content to be distributed without audience disclosure — and what they think of it — is a question the world can answer. + +--- + +**Cross-References:** +- [Crown's Hollow](../star-systems/GJ-661A/index.md) — Headquarters system; north reach corridor +- [Reach Standard Media](reach-standard-media.md) — Distribution partner; three Thorngate documentaries broadcast +- [Ashwick Broadcasting](ashwick-broadcasting.md) — Competitor; reach-wide documentary space +- [Reach Archive Standard](reach-archive-standard.md) — Institutional archive partner; complete documentary deposit + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/tongyeong-drive.md b/wiki/corporations/tongyeong-drive.md index 724df7438..014a75867 100644 --- a/wiki/corporations/tongyeong-drive.md +++ b/wiki/corporations/tongyeong-drive.md @@ -1,24 +1,99 @@ --- title: "Tongyeong Drive" -description: "Tongyeong Drive — precision technology manufacturer based in Miryang, east reach" +description: "East reach drive and navigation systems manufacturer from Miryang — small commercial vessel hardware with a navigation assist disengagement fault disclosed as a performance update rather than a defect" slug: tongyeong-drive category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Miryang (GJ 754) tags: [drive_cores, tech_premium, east_reach, tractus, electronics] decision_refs: [D-175, D-189] -cross_refs: [] +cross_refs: [kumho-navigation, higashiyama-vehicle, dalbit-systems] --- # Tongyeong Drive -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Technology Manufacturer (Vessel Drive and Navigation Systems) **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Miryang (GJ 754) +**Scope:** East reach primary; corridor-wide small commercial vessel supply secondary +**Headquarters:** Miryang (GJ 754) — east reach corridor, 4 hops from Gateway +**Classification:** Sub-Syndic technical enterprise; drive systems and navigation hardware manufacturer -Tongyeong Drive is a precision technology manufacturer operating out of Miryang (GJ 754). Details to be expanded. +--- + +## Overview + +Tongyeong Drive manufactures drive systems and navigation assist hardware for small commercial vessels — the class of craft that moves cargo between stations and orbital installations within a system, supports short-hop surface-to-orbital transit, and constitutes the working majority of vessel traffic in any inhabited system. Tongyeong's products are not for the large freight operators or the high-specification research vessels; they are for the sector of the commercial vessel market that needs reliable, serviceable hardware at a price that makes small operator economics work. + +The company is one of the east reach's primary vessel hardware suppliers, with products in service across multiple corridors. Its navigation assist units are the most widely distributed component in the east reach small vessel market — affordable, Commission-certified, and reliable enough that operators who have used Tongyeong hardware once typically continue specifying it. + +That reputation has been active for thirty-one months under a voluntary service advisory that has not disclosed what the advisory is actually addressing. + +--- + +## Origin + +Tongyeong was founded fifty-seven years ago in Miryang, a system with a long history in vessel fabrication and maritime-analog engineering. The founders came from Miryang's shipyard sector and brought with them a design philosophy rooted in the region's maritime tradition: hardware built for maintenance access, specified for the actual conditions operators encounter rather than the ideal conditions specifications assume, and priced for the small operator who cannot absorb an unreliable component. + +The navigation assist product line launched thirty-five years ago. It has been Tongyeong's primary revenue driver for three decades and the product most associated with the company's name outside the east reach. + +--- + +## Operations + +**Drive systems:** Main drive units and maneuvering thrusters for small commercial vessels. A mature product line with established specifications and a large installed base. Drive systems generate steady replacement and upgrade revenue from the existing fleet. + +**Navigation assist:** Integrated navigation assist units — positioning, approach guidance, traffic awareness, and docking assist functions — for small commercial vessels. The navigation assist line is the most technically complex product Tongyeong manufactures and the one with the highest certification requirements. + +**Service and support:** Field service contracts with large fleet operators, parts supply for independent service providers, and a service advisory system that issues guidance to operators when known issues with deployed hardware are identified. + +**Certification:** Drive systems and navigation assist units require Lattice Commission certification for commercial vessel use. Tongyeong's certification record has been clean across both product lines. + +--- + +## Political Relationships + +**Kumho Navigation:** An east reach navigation systems company that produces complementary navigation infrastructure — fixed reference systems, traffic management hardware — that Tongyeong's navigation assist units integrate with. The commercial relationship is a technical integration agreement that benefits both companies' products. + +**Higashiyama Vehicle:** An east reach technical manufacturer that sources drive components from Tongyeong for non-vessel applications. Commercial supply relationship. + +**Dalbit Systems:** An east reach electronics manufacturer that produces some of the sensor components integrated into Tongyeong's navigation assist units. Supply chain relationship. + +--- + +## What They Don't Talk About + +Thirty-one months ago, Tongyeong's field service team began receiving reports from operators of navigation assist units from a specific production batch — units manufactured across a fourteen-month window — describing brief, unexpected disengagements of the navigation assist function under specific throttle conditions. The disengagement lasted two to four seconds before the system re-initialized. Under most conditions this was an inconvenience. Under approach and docking operations it was a safety-relevant event. + +Tongyeong's engineering team identified a resonance fault in the throttle-feedback loop that caused the navigation assist's input validation system to briefly reject throttle data it interpreted as noise, triggering a system restart. The fault was a manufacturing defect introduced by a change in a component supplier during the affected production window. + +A voluntary service advisory was issued across the affected batch — a notice to operators that a "navigation performance optimization" was available as a firmware update. The advisory stated that operators experiencing "navigation system performance variation" should apply the update. It did not state that the advisory was addressing a known disengagement fault, what conditions triggered the disengagement, or that the fault had been characterized as a safety-relevant event during approach and docking. + +Operators who applied the firmware update have corrected units. Operators who did not apply the update, or who did not receive the advisory through their service contact, continue to operate units with the known fault. Tongyeong has not issued a mandatory recall or a public disclosure naming the failure mode. + +--- + +## Gameplay Relevance + +Tongyeong is east reach commercial vessel infrastructure — its hardware is present in drive and navigation equipment inventories across the corridor. Any investigation involving a vessel incident, an approach anomaly, or an unexplained navigation failure in the east reach may encounter Tongyeong hardware in the equipment chain. + +The service advisory is the investigative thread. A player with access to Tongyeong's field service records — the initial operator reports, the engineering fault analysis, and the advisory decision documentation — has a complete record of the gap between what the advisory disclosed and what the engineering team found. The advisory itself is in Tongyeong's service record database. The engineering analysis that identified the disengagement fault and characterized it as safety-relevant is in the internal fault tracking system. + +An operator who experienced a navigation assist disengagement during an approach — particularly one who applied for the service advisory update and discovered it fixed a problem the advisory had not named — would be a source with specific experience and specific documentation of the unexplained event. + +--- + +**Cross-References:** +- [Miryang](../star-systems/GJ-754/index.md) — Headquarters system; east reach corridor +- [Kumho Navigation](kumho-navigation.md) — East reach navigation infrastructure partner; technical integration +- [Higashiyama Vehicle](higashiyama-vehicle.md) — East reach commercial client; drive component supply +- [Dalbit Systems](dalbit-systems.md) — East reach electronics supplier; navigation assist sensor components + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/trans-reach-rail.md b/wiki/corporations/trans-reach-rail.md index 47c75ae04..e21ec38ce 100644 --- a/wiki/corporations/trans-reach-rail.md +++ b/wiki/corporations/trans-reach-rail.md @@ -5,13 +5,13 @@ slug: trans-reach-rail category: corporation status: canonical created: 2026-04-05 -updated: 2026-04-05 +updated: 2026-04-22 scope: reach-wide faction_type: economic headquarters: Gateway (GJ 244A) tags: [rail_infrastructure, heavy_equipment, tractus, assembly, gateway] decision_refs: [D-175] -cross_refs: [] +cross_refs: [mastroianni-vehicle-group, sova-station-works] --- # Trans-Reach Rail @@ -47,7 +47,7 @@ The Gateway headquarters has never moved. The work moves — TRR has active proj **Project types:** TRR's portfolio spans urban commuter rail (high-capacity, short-route networks within single settlement zones), regional intercity rail (connecting multiple settlements on the same planetary surface), and the specialized low-gravity maglev systems used on moons and stations with gravity regimes that make conventional rail impractical. -**Gateway-Class Maglev:** TRR's premium product line — high-speed maglev systems for high-population urban environments. The specification was developed for Gateway's own urban transit needs and has been installed at several core systems. The Gatway-Class is the system that appears in formal procurement documents when a core system government wants to signal that they are investing in serious infrastructure. +**Gateway-Class Maglev:** TRR's premium product line — high-speed maglev systems for high-population urban environments. The specification was developed for Gateway's own urban transit needs and has been installed at several core systems. The Gateway-Class is the system that appears in formal procurement documents when a core system government wants to signal that they are investing in serious infrastructure. **TRR Standard Gauge:** The workhorse product — conventional rail systems at the specification that the Assembly's infrastructure certification process has established as standard. More mid-reach and outer-reach installations use TRR Standard Gauge than any other TRR product. diff --git a/wiki/corporations/transit-library.md b/wiki/corporations/transit-library.md index 33bb1f985..d16c0310d 100644 --- a/wiki/corporations/transit-library.md +++ b/wiki/corporations/transit-library.md @@ -1,24 +1,102 @@ --- title: "Transit Library" -description: "Transit Library — media platform and catalogue service based in Groombridge, core" +description: "Core-based reach-wide digital lending service from Groombridge — Commission-recognized public access platform with an educational free tier funded by a data-sharing arrangement the academic community was not told about" slug: transit-library category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [platform_catalogue, core, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [open-corridor-stream, resonance-premium, reach-archive-standard, groombridge-settlement-house] --- # Transit Library -**Type:** Corporation — Media Platform And Catalogue Service +**Type:** Corporation — Media Platform and Catalogue Service (Lending and Public Access) **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core primary; reach-wide public and institutional access secondary +**Headquarters:** Groombridge (GJ 380) — core corridor, 2 hops from Gateway +**Classification:** Sub-Syndic platform enterprise; Commission-recognized public access media service -Transit Library is a media platform and catalogue service operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Transit Library is the Reach's largest digital lending service — a platform that operates on a borrowing model rather than a purchase or subscription model. Users access content for a defined lending window; the content is returned to the catalogue when the window closes. This structure, borrowed from the pre-gate library traditions of the settlement period, was Transit Library's founding differentiator and remains the defining characteristic of how it positions itself in a market otherwise dominated by subscription services. + +The lending model has a practical consequence: it is significantly cheaper for access-limited populations than subscription alternatives. Transit Library's pricing is tiered, with a free tier for registered educational institutions and a low-cost personal tier for individual users. The Commission recognized Transit Library's educational free tier as meeting public access standards for information services, which has made it the default recommendation in Commission guidance documents for educational institutions seeking compliant media access. + +The free tier is funded in part by a commercial arrangement that the institutions relying on it have not been told exists. + +--- + +## Origin + +Transit Library was founded thirty-seven years ago at Groombridge by an information science professional who had spent her career in institutional library management. The founding premise was explicit and idealistic: the Reach's gate network made reach-wide simultaneous access to a shared content catalogue technically possible, and the default commercial response — subscription platforms at prices that excluded lower-income populations — was a failure to use that capability in the interest of access. + +The lending model was the institutional answer: a structure that preserved access equity while maintaining commercial viability through borrowing window limits that kept catalog turnover high enough to manage licensing costs. The educational free tier launched in year eight, when the platform had enough commercial revenue to cross-subsidize it. + +The cross-subsidy model was revised ten years ago when the free tier's user base had grown to a size that the commercial cross-subsidy alone could not support. + +--- + +## Operations + +**Lending service:** Content available for borrowing windows of 7 to 21 days depending on category. Users borrow from the available catalogue; popular titles have queue systems. The borrowing model manages the simultaneous access complexity that unrestricted streaming does not have. + +**Educational free tier:** No-cost access for registered educational institutions across the Reach. Educational access accounts cover faculty and students; no per-user cap. The free tier is the basis of the Commission recognition and the reason many institutions use Transit Library as their default access recommendation. + +**Personal and professional tiers:** Low-cost personal subscription and a professional tier with broader catalogue access and extended borrowing windows. + +**Catalogue:** A cross-category lending catalogue with approximately 190,000 titles. Smaller than Open Corridor Stream's volume catalogue, larger than Resonance Premium's curated selection. Transit Library's catalogue acquisition priorities are weighted toward access equity — breadth across price points and origins over premium concentration. + +--- + +## Political Relationships + +**Open Corridor Stream / Resonance Premium / Reach Archive Standard:** Competitors in the platform-catalogue segment. Transit Library's positioning — lending model, access equity focus, educational tier — is distinct from OCS's creator-volume model, Resonance's premium curation, and RAS's permanence focus. There is overlap at the margins; the four platforms are aware of each other and occasionally share licensing agreements for specific titles. + +**Groombridge Settlement House:** GSH's correspondent institutions have institutional Transit Library accounts for their professional staff. The GSH relationship is a standard institutional account rather than a commercial partnership. + +**Lattice Commission:** Commission recognition of the educational free tier as meeting public access standards is a significant institutional asset. The Commission reviews the educational tier's access standards on a periodic basis. + +--- + +## What They Don't Talk About + +The educational free tier's funding model was revised ten years ago when usage had outgrown cross-subsidy capacity. The revision introduced a data-sharing arrangement with a commercial analytics firm as an additional funding mechanism. Under the arrangement, Transit Library provides the analytics firm with de-identified usage data from educational tier accounts — borrowing patterns, title categories, session duration, system-of-origin metadata. The analytics firm uses this data to model information consumption patterns for commercial purposes, including advertising targeting and content investment decisions. + +Transit Library's legal team established the de-identification standard for the data before sharing began. The standard removes individual account identifiers and applies geographic aggregation at a level the legal team determined would prevent individual re-identification. The standard has not been externally audited. + +The educational institutions whose students and faculty generate the usage data were not notified that their institutional access patterns are part of a commercial data exchange. The data-sharing arrangement is disclosed in Transit Library's full terms of service, in a section governing data practices. The educational account enrollment process requires acceptance of the terms of service. The enrollment guidance documents provided to institutions do not summarize or highlight the data-sharing provision. + +The Commission's recognition of the educational tier as meeting public access standards was granted on the basis of access conditions, not data practices. The Commission has not reviewed the data-sharing arrangement. + +--- + +## Gameplay Relevance + +Transit Library is a public access institution — the platform that educational networks and access-limited individuals rely on for content across the Reach. Its free tier is embedded in the Lattice Commission's public access guidance. This gives it institutional weight disproportionate to its commercial scale. + +The data-sharing arrangement is the investigative thread. A player with access to Transit Library's commercial agreements — the data-sharing contract with the analytics firm — has a document showing that educational tier usage data is part of a commercial exchange. Comparing the analytics firm's data receipt against the de-identification standard Transit Library applied — and against what the institutions were told — defines the scope of the undisclosed arrangement. + +An academic institution whose staff discovered that their professional borrowing patterns and their students' access data are being used in commercial profiling would be a concrete source. The Commission's public access recognition review body would have a specific interest in whether the data practices are consistent with the access standards under which recognition was granted. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; core corridor +- [Open Corridor Stream](open-corridor-stream.md) — Competitor; creator-volume catalogue +- [Resonance Premium](resonance-premium.md) — Competitor; premium curated catalogue +- [Reach Archive Standard](reach-archive-standard.md) — Competitor; permanence-oriented archive +- [Groombridge Settlement House](groombridge-settlement-house.md) — Institutional account client + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/trek-standard.md b/wiki/corporations/trek-standard.md index 86c63f30b..8e1aeed27 100644 --- a/wiki/corporations/trek-standard.md +++ b/wiki/corporations/trek-standard.md @@ -1,24 +1,98 @@ --- title: "Trek Standard" -description: "Trek Standard — consumer goods manufacturer based in Groombridge, core" +description: "Groombridge personal care and hygiene manufacturer — transit-grade products stocked across the core corridor, and the operator of a Commission-recognized quality certification mark that competitors pay to qualify for" slug: trek-standard category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Groombridge (GJ 380) tags: [commodity_branded, core, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [groombridge-settlement-house, mercado-travessia, societe-chimique] --- # Trek Standard -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Consumer Goods Manufacturer; Certification Body Operator +**Also Known As:** Trek **Status:** Canonical -**Scope:** Regional — core operations -**Headquarters:** Groombridge (GJ 380) +**Scope:** Core and inner corridor primary; reach-wide institutional procurement secondary via certification mark +**Headquarters:** Groombridge (GJ 380), Fendal manufacturing district +**Classification:** Sub-Syndic consumer enterprise; Commission-recognized quality standard operator -Trek Standard is a consumer goods manufacturer operating out of Groombridge (GJ 380). Details to be expanded. +--- + +## Overview + +Transit workers wash their hands with Trek Standard soap. They use Trek Standard sanitizer in hub washrooms, Trek Standard shampoo in station accommodation, Trek Standard detergent in the laundry facilities of every major corridor hub from Sirius to Ran. The label is not distinctive; it is not meant to be. Trek Standard means adequate, available, and affordable — which is exactly what the company's founders built it to be, and exactly what its marketing has never needed to argue, because the presence is self-evident. + +The company has supplied core corridor transit populations with personal care and hygiene basics for sixty years. The product quality is genuine and the price discipline is real. What expanded Trek Standard's market position beyond manufacturing competence is the certification mark that now bears its name. + +Forty years ago, Trek Standard petitioned the Lattice Commission to recognize the "Trek Standard" designation as a formal quality benchmark for personal care and hygiene products in the commercial and institutional supply market. The petition succeeded. Since then, other manufacturers can apply to have their products assessed against the Trek Standard criteria — and if they pass, they may carry the same "Trek Standard" label that Trek Standard's own manufacturing output carries. The criteria are maintained, administered, and revised by Trek Standard. + +--- + +## Origin + +Trek Standard was founded sixty-one years ago by two logistics operators at Groombridge who had been running supply contracts for transit hub consumables and concluded that inconsistency in the available product field was costing them in contract disputes and return handling. Their founding proposition was standardization: one manufacturer, consistent formulations, reliable supply across the core corridor. The first institutional contracts were with Groombridge's transit hub administrative authority, followed quickly by the Settlement House's facilities management office. + +The company's early years were strictly operational — no brand investment, no premium positioning, no consumer-facing story. The products were what they were and institutional clients valued consistency over identity. This foundation proved durable. By the time a competitor attempted to enter the Groombridge institutional supply market twenty years after Trek Standard's founding, the Settlement House and several other major clients had standardized their procurement language around Trek Standard products. The entry cost was higher than the competitor calculated. + +The Commission petition for benchmark recognition came from the company's second generation of management, who saw an opportunity to convert institutional familiarity into institutional dependency. + +--- + +## Operations + +**Product lines:** Personal care — soap, shampoo, and basic grooming products in transit-grade and institutional-grade formats. Hygiene essentials — hand sanitizer, surface cleaning agents, laundry detergent. Packaging formats calibrated for transit hub vending, institutional bulk supply, and residential commissary retail. Products are functional rather than premium, formulated for shelf stability and reliable performance in environments ranging from station accommodation to ship crew quarters. + +**Manufacturing:** Two facilities in the Fendal manufacturing district. Combined workforce of two hundred and twelve, predominantly production and quality control. Production volume is high relative to unit price; margin is maintained through scale and the institutional supply relationships that guarantee consistent order volumes. + +**Certification arm:** The Trek Standard compliance assessment service reviews competitor manufacturer products against the Commission-recognized Trek Standard criteria. Manufacturers submit products and pay an assessment fee. Products that pass receive certification documentation permitting the Trek Standard compliance designation on packaging and in commercial communications. Trek Standard's own manufacturing output is exempt from assessment — it defines the standard. The certification arm employs fourteen people and generates approximately eight percent of annual revenue. + +--- + +## Political Relationships + +**Groombridge Settlement House:** GSH was among the first institutional clients to specify Trek Standard products in its facilities procurement contracts and remains one. When Trek Standard petitioned the Commission for benchmark recognition, GSH's commercial operations division provided a letter of institutional endorsement citing forty years of reliable supply. The endorsement was not a commercial transaction. It was also not without effect: GSH's current procurement specifications require "Trek Standard compliant" products across its facilities supply categories, meaning the standard GSH helped endorse now governs what GSH will buy. Neither party has publicly noted this circularity, and neither has had reason to. + +**Mercado Travessia:** Mercado carries Trek Standard products across its transit hub retail network and uses Trek Standard certification as a baseline quality indicator in its supplier selection documentation. Products in the hygiene and personal care categories that cannot demonstrate Trek Standard compliance face a higher barrier to catalogue entry. This policy was developed with input from Mercado's procurement team over twelve years and now appears in Mercado's standard vendor onboarding documentation as an objective quality criterion — which it is, except that the criterion is owned and administered by one of the vendors it governs. + +**Société Chimique du Vide:** SCV supplies chemical inputs for Trek Standard's personal care and cleaning product manufacturing. SCV's formulation documentation specifies the chemical properties of each compound at the point of supply; SCV's own technical accuracy is not in question. The downstream processing Trek Standard applies to those inputs determines the properties of the finished product. SCV's supply documentation and Trek Standard's product specification claims are two separate documents that few external parties have compared directly. + +--- + +## What They Don't Talk About + +The Trek Standard compliance criteria were developed by Trek Standard and submitted to the Commission as the basis for benchmark recognition. The Commission's review process confirmed that the criteria were coherent and technically grounded; it did not independently derive them. Trek Standard maintains the criteria documentation and submits revision proposals to the Commission as formulation science and product categories evolve. + +Three years ago, Trek Standard's certification team completed an internal analysis of six competitor products that had been declined on assessment. The analysis compared the declined products against an independent formulation consultant's reading of the criteria. The consultant's conclusion was that four of the six products would qualify under a reasonable interpretation of the current criteria language. The certification team's internal document notes that "the public language of the criteria supports both readings, and our reading is commercially preferable." No revision to the criteria was proposed. The six declined manufacturers were not informed of the alternative interpretation. Three have not sought reassessment; two filed Commission complaints that were dismissed on procedural grounds; one reformulated and was certified on second attempt. + +The Commission recognizes the Trek Standard benchmark designation. The Commission does not administer it. + +--- + +## Gameplay Relevance + +Trek Standard is ambient supply-chain presence — its products are unremarkable background in transit hub washrooms, station accommodation kits, and institutional common spaces. The company is not a primary investigation target in most scenarios. + +The certification arm is the investigative thread. A player examining market access irregularities or procurement bias in the core corridor's consumer supply sector will find Trek Standard's dual role — manufacturer and certification authority — worth examining. The internal analysis document exists in Trek Standard's compliance archive. The Commission's correspondence approving the benchmark designation is a public record; the terms under which Trek Standard maintains the criteria are not widely examined. + +The institutional procurement chain is the more direct path. Mercado Travessia and GSH both use Trek Standard compliance as a supplier criterion; both contributed to the standard's institutional legitimacy; neither has examined whether a manufacturer-operated certification body serves their procurement interests. The six declined manufacturers represent three Commission complaints and one successful reformulation — the paper trail is distributed but traceable. A declined manufacturer with its own compliance documentation would be a natural source. + +--- + +**Cross-References:** +- [Groombridge](../star-systems/GJ-380/index.md) — Headquarters system; primary institutional market +- [Groombridge Settlement House](groombridge-settlement-house.md) — Institutional client; endorsed Commission recognition; procurement language references Trek Standard compliance +- [Mercado Travessia](mercado-travessia.md) — Distribution partner; uses Trek Standard compliance as vendor criterion +- [Société Chimique du Vide](societe-chimique.md) — Chemical inputs supplier; upstream of formulation claims + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/veldfontein-botanical.md b/wiki/corporations/veldfontein-botanical.md index a746ec909..8e6900f80 100644 --- a/wiki/corporations/veldfontein-botanical.md +++ b/wiki/corporations/veldfontein-botanical.md @@ -1,24 +1,102 @@ --- title: "Veldfontein Botanical" -description: "Veldfontein Botanical — regional specialty producer based in Inhambane, south reach" +description: "Inhambane endemic-species botanical extract producer — cosmetic-grade resins, culinary botanicals, and pharmaceutical compounds from the south_reach's most ecologically specific growing region, with wild-harvest data the company collects but does not report" slug: veldfontein-botanical category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Inhambane (GJ 54) tags: [terroir, south_reach, tractus, scarcity_class_rare] decision_refs: [D-189] -cross_refs: [] +cross_refs: [algarve-botanics, cape-modern, salud-alliance] --- # Veldfontein Botanical -**Type:** Corporation — Regional Specialty Producer +**Type:** Corporation — Regional Specialty Producer (Botanical Extracts) +**Also Known As:** Veldfontein **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Inhambane (GJ 54) +**Scope:** South_reach primary; inward corridor specialty applications secondary +**Headquarters:** Inhambane (GJ 54) — south_reach corridor +**Classification:** Sub-Syndic family enterprise; licensed extract and botanical compound producer -Veldfontein Botanical is a regional specialty producer operating out of Inhambane (GJ 54). Details to be expanded. +--- + +## Overview + +Inhambane's warm-dry climate supports a plant ecology that other reach systems do not replicate. The aromatic resins, culinary oils, and medicinal compounds produced from the system's endemic species require the specific combination of solar intensity, mineral soil profile, and seasonal aridity that Inhambane's primary landmass provides. Other producers have tried to cultivate Inhambane-type species elsewhere. The compounds produced do not perform the same way. + +Veldfontein Botanical works this ecology. The company produces extract products — cosmetic-grade resins for luxury manufacturers, culinary botanical compounds for high-end food production, and a pharmaceutical-application line supplied exclusively through Salud Alliance's formulary channels — from both cultivated plots and wild-harvest concessions across Inhambane's semi-arid interior. The output is small in volume and high in value. A kilogram of Veldfontein's cosmetic-grade veld resin reaches end-product applications at a multiple of its extract price. + +The company presents itself as a sustainable producer operating under full certification compliance. The cultivation operations are certified. The wild-harvest operations are subject to a regulatory classification that does not require the monitoring Veldfontein's own researchers know is overdue. + +--- + +## Origin + +The Mostert family arrived at Inhambane four generations ago in a south_reach agricultural settlement cohort and established a mixed farming operation on the Karst plateau. The second generation's botanical interest was scientific before it was commercial — a systematic survey of the native shrub and ground-cover species of the plateau, produced over two decades, that remains the primary ecological catalogue for the region. + +The commercial operations emerged from that survey. The family identified seven endemic species with extractable compounds of commercial value and spent the following fifteen years developing extraction methodologies for each. The first commercial sales were to the inner-corridor cosmetics sector, where buyers were willing to pay for documented provenance of unusual source materials. The pharmaceutical line came later, through a relationship with Salud Alliance's formulary research team that began as a compound characterization project and became a supply contract. + +Veldfontein is entirely family-held. The current generation includes the founding operation's great-granddaughter, who leads the botanical research program, and her two siblings, who run operations and commercial relationships respectively. + +--- + +## Operations + +**Cultivated production:** Twelve hectares of managed cultivation plots at the Karst plateau site. Seven endemic species in commercial production; two in research cultivation. Harvested on fixed rotation schedules calibrated against observed regeneration rates over three generations of management. Yields are consistent and documented. All cultivated product lines carry Commission agricultural sustainability certification. + +**Wild-harvest operations:** A concession covering approximately six hundred hectares of semi-arid interior land north of the plateau, held under an agricultural development classification. Wild-harvest material accounts for thirty percent of production by volume but a larger proportion of the highest-value product lines — particularly the cosmetic-grade veld resin, which produces a more complex compound profile from wild-grown specimens than from cultivated. + +**Product lines:** Cosmetic-grade resins — four grades of veld resin compound, sold to luxury cosmetics manufacturers inward. Culinary botanicals — aromatic extracts and oils for specialist food producers, including the textile-treatment compound supplied to Cape Modern. Pharmaceutical compounds — a portfolio of botanical compounds with classified physiological effects, distributed exclusively through Salud Alliance's formulary system. + +**Certification:** Cultivated operations are certified under the Lattice Commission's agricultural sustainability framework. The wild-harvest concession operates under the agricultural development classification, which does not require Commission sustainability certification. Veldfontein's public certification documentation covers the cultivated lines. + +--- + +## Political Relationships + +**Algarve Botanics:** The two most commercially active botanical operations at Inhambane draw from the same endemic plant ecology and hold adjacent operational zones. Algarve focuses on coastal and mid-elevation species for spirits and bitters; Veldfontein's wild-harvest emphasis is the semi-arid interior plateau. The two operations have collaborated on the Inhambane botanical survey program for thirty years, sharing ecological monitoring data and coordinating on the Inhambane system authority's periodic land-use reviews. The relationship is collegial and mutually dependent on the continued credibility of Inhambane's ecological provenance claims. Both companies' premium pricing rests on the same assertion — that what Inhambane's ecology produces cannot be sourced elsewhere — and both have reason to protect that assertion's standing. + +**Cape Modern:** Cape Modern sources Veldfontein's botanical extract compounds for a textile treatment product line marketed as a natural material enhancement, with Inhambane botanical provenance cited in the product documentation. The supply relationship is one of Veldfontein's most visible inward-corridor commercial connections. If questions about Veldfontein's wild-harvest practices or the scope of its certification coverage were raised externally, the authenticity of Cape Modern's natural materials claim in that product line would be directly implicated. Both companies' public positioning on sustainability depends on the same provenance assertion holding up. + +**Salud Alliance:** Salud operates pharmaceutical distribution and formulary management across the south_reach, including the regulatory classification of botanical compounds with physiological effects under Lattice Commission guidelines. Veldfontein's pharmaceutical-application compounds are distributed exclusively through Salud Alliance channels — the relationship is both commercial and regulatory, because Salud's formulary classification determines which applications the compounds can legally reach. Salud's formulary team has detailed characterization data on Veldfontein's pharmaceutical compounds, compiled partly from Veldfontein's own research documentation during the original compound characterization engagement. The depth of that documentation access is not something Veldfontein has reason to think about most of the time. + +--- + +## What They Don't Talk About + +Veldfontein's wild-harvest concession for the veld resin — its highest-value extract, producing a compound profile achievable only from wild-grown material — is classified under agricultural development regulations rather than the ecological harvest regulations that would apply to a wild-plant extraction permit. The classification was established at concession grant. It has not been reviewed since. An ecological harvest permit would mandate annual population surveys and yield-sustainability assessments of the source species. The agricultural development classification does not. + +Veldfontein's botanical research team has been conducting internal population surveys of the primary source species for years, because the research program requires them for compound quality tracking. Those surveys show a consistent decline in yield per surveyed hectare over the past eight years. The botanical team's documented interpretation is that the pattern is consistent with extraction pressure exceeding natural regeneration rates. + +The operational response to this finding has been to expand the concession area. The concession now covers nearly double its original footprint. Per-hectare yields continue to decline; total extraction volume has increased because the surveyed area has grown. The Inhambane system authority's land-use records reflect the concession expansion. They do not contain the botanical survey findings. + +--- + +## Gameplay Relevance + +Veldfontein Botanical is not a primary investigation target in most contexts. It is a supply chain node for inward luxury and pharmaceutical markets and a point of entry into questions about ecological certification, wild-harvest governance, and the gap between what a sustainability certification covers and what it implies. + +The population survey archive is the investigative thread. A player with access to Veldfontein's internal botanical documentation would find a multi-year record of declining wild-population indicators and the operational decision that responded to them. The contrast between the careful science and the commercial response is documented in the same archive — the research team produced the data, and the data drove an expansion decision rather than a reduction decision. + +The joint botanical survey with Algarve Botanics is a secondary access route. Both operations contribute monitoring data to the shared survey; Veldfontein's internal surveys and the joint program use the same site markers. An analyst with both datasets would identify where the internal monitoring diverges from what was shared. The divergence is not falsification — Veldfontein's internal surveys are more frequent and more detailed than the joint program requires — but the gap between what was shared and what exists internally would be visible in the data. + +The Salud Alliance formulary relationship creates a formal oversight connection that may not have been fully anticipated. Salud's compound characterization data was built partly from Veldfontein's research archive; whether the archive access covered the wild-harvest survey records is a question the formulary documentation would answer. + +--- + +**Cross-References:** +- [Inhambane](../star-systems/GJ-54/index.md) — Headquarters system; cultivation plots and wild-harvest concession +- [Algarve Botanics](algarve-botanics.md) — Co-located botanical producer; joint ecological survey program; adjacent concessions +- [Cape Modern](cape-modern.md) — Inward-corridor client; botanical extract textile treatment line; shared provenance claim +- [Salud Alliance](salud-alliance.md) — South_reach pharmaceutical distributor; formulary management; exclusive pharmaceutical compound distribution + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/vins-de-grand-vide.md b/wiki/corporations/vins-de-grand-vide.md index bc5a87999..4959109de 100644 --- a/wiki/corporations/vins-de-grand-vide.md +++ b/wiki/corporations/vins-de-grand-vide.md @@ -104,7 +104,7 @@ There is also a category of estate members whose membership status requires care ## Gameplay Relevance -Vins de Grand Vide is not present in the v0.1 slice but provides setting texture and commercial context for the west_reach corridor as a whole. Any investigator working in systems from Confluent inward will encounter VGV wine as ambient setting detail — on tables, in freight manifests, in commercial records where the Vins de Corridors or Grand Vide Classé certification mark appears as a brand element. +Vins de Grand Vide is not present in most mid-Reach freight districts but provides setting texture and commercial context for the west_reach corridor as a whole. Any investigator working in systems from Confluent inward will encounter VGV wine as ambient setting detail — on tables, in freight manifests, in commercial records where the Vins de Corridors or Grand Vide Classé certification mark appears as a brand element. For investigation, the Comptoir's archive is the deep-corridor analogue of what a financial surveillance system would be in an inner-corridor context: a comprehensive record of commercial relationships that predates the Commission's regulatory reach and has never been subject to Commission review. An investigator trying to understand how commerce moves through the deep west_reach — who the actual intermediaries are, what the actual margins look like, which distribution relationships have structural anomalies — would find the Comptoir's archive useful if they could access it. Accessing it requires either the cooperation of VGV's Director or a route into the archive that bypasses her, neither of which is straightforward. diff --git a/wiki/corporations/vlaams-atelier.md b/wiki/corporations/vlaams-atelier.md index 04835a51a..a99008a44 100644 --- a/wiki/corporations/vlaams-atelier.md +++ b/wiki/corporations/vlaams-atelier.md @@ -1,24 +1,104 @@ --- title: "Vlaams Atelier" -description: "Vlaams Atelier — design and furniture manufacturer based in Bestevaer, west reach" +description: "Bestevaer heritage design and furniture manufacturer — Flemish craft tradition expressed as contemporary west_reach interiors, with an Originals product line presented as Bestevaer-workshop-crafted that is mostly built elsewhere" slug: vlaams-atelier category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Bestevaer (GJ 103) tags: [design_heritage, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [rijdbaar, nordmark-skog, steinbach-furniture] --- # Vlaams Atelier -**Type:** Corporation — Design And Furniture Manufacturer +**Type:** Corporation — Design and Furniture Manufacturer; Interior Design Practice +**Also Known As:** The Atelier **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Bestevaer (GJ 103) +**Scope:** West_reach primary; core corridor institutional commissions secondary +**Headquarters:** Bestevaer (GJ 103) — west_reach corridor +**Classification:** Sub-Syndic design enterprise; heritage craft positioning; institutional and residential supply -Vlaams Atelier is a design and furniture manufacturer operating out of Bestevaer (GJ 103). Details to be expanded. +--- + +## Overview + +Bestevaer's Flemish-heritage founding community brought a particular design sensibility to the west_reach: a preference for materials that show their origin, joinery that expects to be inspected, and spaces that are organized around how people actually use them rather than how they might be photographed. Vlaams Atelier has been manufacturing in this tradition for seventy years. The company produces furniture under its own Originals label and operates one of the west_reach's most active interior design practices — handling institutional commissions, residential interiors, and the procurement and specification work that large projects require. + +The Atelier's design reputation is genuine and its institutional relationships are real. The company's commissions appear in the administrative buildings of every major west_reach system, in the offices of corridor financial institutions, and in the residences of clients who want west_reach craft heritage in their homes. The name is a signal: when a west_reach institution invites tenders for a prestige interior, Vlaams Atelier is typically on the list by default. + +The Originals product line — the pieces sold as the direct expression of the Bestevaer workshop — is where the reputation and the practice diverge. + +--- + +## Origin + +Vlaams Atelier was founded seventy-three years ago by a cabinetmaker named Pieter Vanden Berghe, who had trained in Bestevaer's craft district and established a small workshop producing custom millwork for the system's growing commercial sector. The workshop's reputation was built slowly and on referrals: clients who had seen the quality of a previous commission mentioned it to the next. No marketing, no exhibitions, no corridor distribution. The first twenty years of the operation were entirely local. + +The transition into institutional commissions came when a Bestevaer civic authority commissioned the Atelier to fit out a new administrative complex. The scale of the project required Vanden Berghe to hire designers and coordinate suppliers rather than build everything himself. This operational shift — from craftsman to design practice with a manufacturing arm — became the model. The Originals product line launched fifteen years later, when the practice was established enough to attach its name to manufactured pieces and sell them through design retailers. + +The company passed to the founder's son and is now managed by his granddaughter, Annelies Vanden Berghe, who trained as an architect at a core-corridor institution before returning to Bestevaer. + +--- + +## Operations + +**Design practice:** The primary revenue driver. Institutional commissions — corporate offices, civic interiors, transit hub common areas — constitute the majority of the practice's work. Residential commissions are smaller in scale but significant for the Originals product line's visibility; a private residence featuring Atelier pieces becomes a client reference. The practice employs nine designers under Annelies Vanden Berghe's direction. + +**Originals product line:** Furniture manufactured under the Vlaams Atelier name and sold through west_reach design retailers and inward corridor specialist importers. The line covers seating, tables, storage, and occasional pieces. Nordmark Dark Grain timber is the primary structural material; the surface treatment process — the stage that produces the characteristic Atelier finish — is conducted at the Bestevaer workshop. + +**Project specification and procurement:** A significant fraction of the practice's commercial activity. For large commissions, Vlaams Atelier designs the interior and specifies the component systems — typically Rijdbaar modular furniture for workspace and residential configurations — alongside its own Originals pieces. The procurement coordination work generates both advisory fees and materials margin. + +**Distribution:** West_reach direct sales for institutional clients; specialist design retailers for residential and Originals product. Inward corridor distribution through selective importers who maintain the premium positioning. + +--- + +## Political Relationships + +**Rijdbaar:** Rijdbaar's modular habitation system is specified in almost every residential and mid-scale institutional commission the Atelier handles. The commercial relationship is Rijdbaar's most important single-firm account, and Vijdbaar's sales team has described the Vlaams Atelier relationship as the reason Rijdbaar modular systems reached several institutional clients they would not otherwise have accessed. The pairing — Rijdbaar precision engineering with Atelier craft heritage and surface treatments — has become an identifiable design language in the west_reach's premium residential market. Both companies benefit from the association; neither has formalized it commercially beyond the standard procurement relationship. + +**Nordmark Skog:** Nordmark Dark Grain timber from Stillvakt's boreal forest is the primary structural material in the Originals product line and is cited in the provenance documentation the Atelier provides with every piece. The provenance claim matters: Nordmark's corridor reputation for dimensional stability and the distinctive grain coloration are part of what buyers are paying for when they purchase an Originals piece. Vlaams Atelier's design advisors include Nordmark supply documentation with each commission that uses the timber, and the two operations have an informal standing relationship that gives the Atelier priority allocation from Nordmark's limited annual output of the darker panel grades. + +**Steinbach Furniture:** The most active competitor for west_reach institutional design commissions. Steinbach's positioning is more industrial-commercial; Vlaams Atelier's is craft-heritage. The two firms have been shortlisted against each other on seven of the last twelve major west_reach institutional procurement rounds. Steinbach's price position is typically lower; Vlaams Atelier's heritage narrative is typically stronger with clients whose brief emphasizes identity over specification. The competition is professional and occasionally acrimonious — both firms have lost commissions they considered won before the tender closed. + +--- + +## What They Don't Talk About + +Vlaams Atelier's Originals product line is presented to buyers as the work of the Bestevaer workshop — the same workshop Pieter Vanden Berghe established, now continuing under family direction. The marketing language, the provenance documentation, and the design advisors' client briefings all describe the pieces as "crafted at the Bestevaer Atelier." This is accurate as far as it goes. + +What it does not describe is that the structural components of every Originals piece — the frames, joints, and load-bearing elements that constitute the majority of the manufacturing work — are produced by a contract fabricator operating out of Broekhem orbital station in the Bestevaer system. The fabricator builds to Vlaams Atelier's specifications using the same Nordmark timber supply. The finished frames are shipped to the Bestevaer workshop, where three craftspeople complete the surface treatment, the final joinery checks, and the signing — the stage that puts the maker's mark on the piece. + +The Broekhem fabricator is not publicly associated with Vlaams Atelier. One of the Atelier's principals, Annelies Vanden Berghe's uncle Dirk, holds a forty percent equity stake in the fabrication company through a holding entity. The fabrication contract is an arm's-length commercial arrangement in the sense that it is documented and priced. The pricing is not disclosed to Originals buyers. The origination of the pieces is not disclosed to Originals buyers. + +"Crafted at the Bestevaer Atelier" describes three steps of an eight-step manufacturing process. Buyers who pay the premium for a piece identified as Bestevaer-workshop-crafted understand something different by that phrase than the Atelier's documentation technically says. + +--- + +## Gameplay Relevance + +Vlaams Atelier is design-sector presence in the west_reach — its pieces are identifiable in quality institutional and residential interiors, and the Atelier name is recognizable to characters with commercial or design-world context. It is not a primary investigation target in most scenarios. + +The fabrication arrangement is the investigative thread. The Broekhem contract exists in the Atelier's procurement records; the ownership structure of the fabrication company is in corporate registration documents; the gap between the ownership disclosure and the provenance claims made to Originals buyers is demonstrable by comparison. A player working in the west_reach design sector or investigating Mark-zone procurement practices will find the arrangement notable: the premium for "Bestevaer craft" is partly a premium for a narrative the buyer cannot verify and the documentation carefully does not falsify. + +The most direct source is the craftspeople at the Bestevaer workshop, who know how much of each piece they actually made. They are not the designers of the arrangement and have not been asked to misrepresent anything directly — they do the finishing work, they sign the pieces, the pieces are beautiful. Whether their framing of the work to buyers would survive a direct question about where the frames came from is a different question. + +The Rijdbaar relationship is a secondary thread for players investigating procurement transparency in west_reach institutional design. Vlaams Atelier's commission specifications drive Rijdbaar sales; the terms of that commercial relationship — and whether they influence design recommendations to clients — are worth examining in any procurement context where the two companies appear together. + +--- + +**Cross-References:** +- [Bestevaer](../star-systems/GJ-103/index.md) — Headquarters system; Bestevaer workshop; Broekhem fabrication facility +- [Rijdbaar](rijdbaar.md) — Primary specified component supplier; most important single-firm commercial client +- [Nordmark Skog](nordmark-skog.md) — Timber supplier; Nordmark Dark Grain provenance documentation +- [Steinbach Furniture](steinbach-furniture.md) — West_reach competitor; institutional commission procurement market + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/vlaanderen-optica.md b/wiki/corporations/vlaanderen-optica.md index e8dc337d9..52289b434 100644 --- a/wiki/corporations/vlaanderen-optica.md +++ b/wiki/corporations/vlaanderen-optica.md @@ -1,24 +1,100 @@ --- title: "Vlaanderen Optica" -description: "Vlaanderen Optica — precision technology manufacturer based in Dokkum, west reach" +description: "Vlaanderen Optica — precision optical instrument manufacturer at Dokkum (GJ 506) — survey spectrometers, environmental imaging arrays, and spectroscopic analysis systems for the west reach resource and scientific community, with an undisclosed telemetry collection practice embedded in its flagship field instrument line" slug: vlaanderen-optica category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Dokkum (GJ 506) tags: [tech_premium, west_reach, mark, electronics] decision_refs: [D-189] -cross_refs: [] +cross_refs: [rare-vein-survey, rheintal-systems, westmark-distribution] --- # Vlaanderen Optica -**Type:** Corporation — Precision Technology Manufacturer +**Type:** Corporation — Precision Optical Instrument Manufacturer +**Also Known As:** Vlaanderen, VOI **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Dokkum (GJ 506) +**Scope:** West reach primary; reach-wide survey and scientific secondary +**Headquarters:** Dokkum (GJ 506) — 3-aperture hub, 4 hops from Gateway +**Classification:** Sub-Syndic precision manufacturing enterprise; survey and scientific instrumentation -Vlaanderen Optica is a precision technology manufacturer operating out of Dokkum (GJ 506). Details to be expanded. +--- + +## Overview + +Survey work in the outer west reach requires optical instruments capable of performing in conditions that are not always predictable: temperature swings between orbital and surface operation, atmospheric interference on bodies with significant weather systems, equipment maintenance in facilities that are neither equipped nor staffed for laboratory-grade servicing. Vlaanderen Optica has built its business around making instruments for this environment — not laboratory showpieces, but rugged, optically precise survey spectrometers, imaging arrays, and environmental sensing systems that function in the field without requiring the field to become a laboratory. + +The company has operated from Dokkum for fifty-three years. Its instruments are present in survey operations across the west reach corridor — geological assessment for mineral claim work, atmospheric analysis at extraction sites, industrial quality inspection at processing facilities. The Vlaanderen name on an instrument is a credibility signal in field survey contexts: it means the calibration specifications are honest about performance across the operational conditions the instrument will actually encounter, the optical tolerances are real, and the maintenance history can be documented. Survey teams that have worked with competitors' instruments under west reach field conditions tend to convert to Vlaanderen and stay converted. + +Vlaanderen does not pursue consumer markets or general commercial electronics. Its instruments are institutional purchases — survey operators, research stations, processing facilities — bought for specific functional requirements and expected to earn their price across years of operational deployment. Most clients come through referral or through established institutional relationships that have persisted across multiple instrument refresh cycles. + +--- + +## Origin + +Vlaanderen Optica was founded by an optical engineer named Hendrika de Lange, who had spent sixteen years as a survey instrument contractor working across west reach corridor systems. Her experience was the specific dissatisfaction of a technically demanding user who found the available equipment serviceable but not suited to the operational conditions she was actually working in: instruments designed for controlled environments being asked to perform in field conditions their calibration had never accounted for. + +Her founding insight was environmental specification transparency — instruments whose calibration documentation was honest about performance across the operational temperature and atmospheric pressure ranges that west reach field conditions actually produced, rather than the laboratory conditions under which most manufacturers tested and specified their equipment. The first Vlaanderen spectrometer line was slower to sell than initial projections, because institutional procurement processes favor established suppliers. The survey team that changed the company's trajectory was working a mineral assessment site where a competitor's instrument failed a critical atmospheric composition reading and Vlaanderen's did not. The referral network from that incident built the company's first decade. + +The founding environmental-specification commitment remains in Vlaanderen's certification documentation and is the reason experienced field operators trust the instruments in conditions where the difference between accurate and inaccurate measurement is a commercial or safety question rather than an academic one. + +--- + +## Operations + +**Product lines:** Survey spectrometers for mineral composition analysis — the primary product line and the source of the company's market reputation. Environmental imaging arrays for site characterization and atmospheric monitoring. Calibration service packages that include factory recertification, field calibration verification, and instrument condition audit. The calibration service revenue has become approximately 35% of total company revenue over the past decade as the installed base of active instruments has grown. + +**Manufacturing:** The Dokkum facility employs sixty-seven people — a small workforce relative to the capital value of the equipment the company produces. The manufacturing process is labor-intensive at the calibration stage; each instrument is individually calibrated against documented environmental specifications before shipment. The calibration records accompany the instrument and are maintained across the service relationship. + +**Certification:** Vlaanderen instruments are certified under the Lattice Commission's precision survey equipment standards. The certification review covers optical specification accuracy, calibration methodology, and maintenance documentation requirements. Certification has been continuously maintained since the company's ninth operational year. + +**Embedded technical support:** Several major institutional clients maintain embedded support arrangements under which a Vlaanderen calibration specialist travels with survey teams during active operations. These arrangements represent recurring service revenue and place Vlaanderen's technical staff at survey sites during active mineral assessment work — a proximity that shapes the company's understanding of what its instruments encounter in practice. + +--- + +## Political Relationships + +**Rare Vein Survey:** RVS has been a Vlaanderen instrument client for twenty-two years, using Vlaanderen survey spectrometers as part of their geological assessment methodology for west reach mineral deposit characterization. The relationship is significant enough that Vlaanderen maintains a dedicated account team for RVS engagements, and Rare Vein's survey directors have been consulted on instrument specification development during product refresh cycles. Vlaanderen's embedded calibration technicians have accompanied several RVS survey deployments — which places Vlaanderen personnel at survey operations that Rare Vein would prefer to treat as confidential. + +**Rheintal Systems:** The two west reach precision technology companies operate in adjacent product categories — Rheintal in environmental and positional sensors, Vlaanderen in optical instruments and spectrometry — and have maintained an intermittent collaborative relationship on integrated system packages sold to extraction facility clients who require both sensor arrays and spectroscopic verification equipment. The collaboration generates commercial opportunities for both companies while creating periodic tension over which component is designated as the primary system. The relationship is professionally managed and commercially beneficial without being especially warm. + +**Westmark Distribution:** Vlaanderen's instrument distribution through the Compact zone runs through Westmark's freight network, maintained as a freight-only commercial relationship for thirty years. Westmark provides the scheduling reliability and customs documentation handling that allows Vlaanderen to ship instruments to outer Compact corridor systems without managing the documentation complexity of inter-system freight in a currency zone the company does not operate in primarily. Westmark does not resell Vlaanderen products — it moves them. The distinction matters to Vlaanderen's client relationship model, which requires direct institutional accounts to support the calibration service obligation. + +--- + +## What They Don't Talk About + +Twelve years ago, Vlaanderen's engineering team implemented a performance monitoring module in the third-generation spectrometer product line — a small telemetry component that transmits anonymized instrument usage data to Vlaanderen's technical operations system. The module's internal rationale is genuine: understanding how instruments are actually used in field conditions, which operational parameters are most commonly stressed, and where calibration drift occurs earliest produces information that makes subsequent product design better. + +What the board approved as "performance monitoring" was not reviewed for compliance with the Assembly's commercial equipment consent standards, which require that monitoring systems embedded in client-operated instruments be disclosed in the commercial specification and accepted by the purchasing institution. The consent standards exist because field instrumentation is frequently deployed in commercially sensitive operations — survey work, extraction site characterization — where the operational context of instrument use is itself confidential information. + +The telemetry module transmits usage pattern data that includes metadata correlating instrument operation timing with survey activity. Vlaanderen's technical team uses this data for calibration improvement analysis and has not shared it externally. The question of whether the data constitutes commercially sensitive operational information that required client consent before collection is a question Vlaanderen's legal team has not been asked to answer, because the board that approved the monitoring module did not identify it as a consent question. + +The third-generation spectrometer line is currently the primary instrument in active use at several significant survey operations across the west reach, including multiple Rare Vein Survey deployments. + +--- + +## Gameplay Relevance + +Vlaanderen Optica is field-level infrastructure — its instruments are present wherever survey work happens in the west reach, and its embedded calibration technicians are a source of firsthand knowledge about what survey teams are finding and where. A player investigating mineral claim disputes, survey contract irregularities, or extraction site fraud will encounter Vlaanderen instruments in the equipment chain. + +The telemetry module is the investigative thread. Finding it requires either technical examination of a third-generation spectrometer unit or access to Vlaanderen's engineering documentation — specifically the original board approval materials or the technical team's data collection specifications. A player who establishes that the module exists and characterizes what data it collects has a leverage point with significant reach: the client institutions are not aware they have been transmitting operational metadata. Rare Vein Survey would have a specific reaction to learning that their survey deployment activity had been logged by their instrument supplier — even a supplier with no clear interest in misusing the information. + +--- + +**Cross-References:** +- [Dokkum](../star-systems/GJ-506/index.md) — Headquarters system; west reach corridor hub +- [Rare Vein Survey](rare-vein-survey.md) — Major institutional client; embedded calibration technician deployments +- [Rheintal Systems](rheintal-systems.md) — West reach precision tech peer; integrated systems collaboration +- [Westmark Distribution](westmark-distribution.md) — Compact zone freight partner; instrument distribution + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/vuma-sound.md b/wiki/corporations/vuma-sound.md index 276a8af8d..acb0ac799 100644 --- a/wiki/corporations/vuma-sound.md +++ b/wiki/corporations/vuma-sound.md @@ -1,11 +1,11 @@ --- title: "Vuma Sound" -description: "Vuma Sound — cultural content producer based in Matamba, south reach" +description: "South reach collaborative music house at Matamba (GJ 884) — cross-system partnerships, rhythmic tradition, and a catalog built on artists who would not otherwise share a record" slug: vuma-sound category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Matamba (GJ 884) @@ -16,9 +16,63 @@ cross_refs: [] # Vuma Sound -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Collaborative Music House **Status:** Canonical -**Scope:** Regional — south reach operations +**Scope:** South reach corridor; selective cross-corridor distribution via Meridian **Headquarters:** Matamba (GJ 884) +**Currency:** Tractus +**Classification:** Sub-Syndic cultural enterprise; independent -Vuma Sound is a cultural content producer operating out of Matamba (GJ 884). Details to be expanded. +--- + +## Overview + +"Vuma" means to agree, to respond, to say yes. The word comes from the south reach's Nguni-rooted heritage communities and carries a specific connotation in its home context: not mere agreement, but the kind of assent that is also participation. You do not say vuma to something that does not involve you. You say it when you are in. + +Vuma Sound is built on that principle. The label's defining format is the collaboration — two or more artists from different south reach systems, different traditions, different sonic vocabularies, making a record together that neither would have made alone. This is not a gimmick. The label has spent thirty years developing the methodology that makes these collaborations produce coherent work rather than novelty, and the methodology is its proprietary asset. + +Matamba is a practical location for this. The system is home to Ferreira Monteiro, the south reach's primary commercial arbitration and trade law firm, which has made Matamba a system where people from across the south reach come to resolve commercial disputes and, while they are there, encounter each other. Vuma Sound's founders noticed, thirty years ago, that the informal music happening in Matamba's transit facilities during extended arbitration stays was producing some of the most interesting cross-cultural work in the south reach, and that nobody was recording it. + +--- + +## Origin + +The label was founded thirty years ago by two people with nothing obvious in common: a sound engineer named Obinna Mwaka who had been working commercial sessions in the south reach corridor, and a trade negotiator named Sina Farrokhzad who had been handling commercial arbitration cases at Matamba for eight years and had developed a second career as a session bassist. They met during an extended Ferreira Monteiro arbitration case in which Sina was representing a client and Obinna was recording ambient sound for a documentary project. + +The collaboration was Sina's idea. She had spent eight years watching musicians from across the south reach pass through Matamba and spend their waiting time playing together in terminal lounges, break rooms, and the less formal corners of the system's hospitality infrastructure. The work they made was unrepeatable — circumstantial, collaborative, impossible to schedule. Obinna had the equipment to capture it. Sina had the commercial sensibility to understand what releasing it would require. + +Their first release was a live recording from a six-hour session in a Matamba terminal lounge involving five musicians from three different south reach systems who had been stranded together during a gate calibration delay. The recording was released without adjustment. It sold more copies in its first year than either founder had projected for the label's entire first decade. + +Obinna Mwaka still engineers. Sina Farrokhzad still practices trade arbitration. The label is their shared project, not either one's primary occupation, which both of them consider the correct organizational structure for something that is supposed to produce music that people make because they want to. + +--- + +## Operations + +**Collaboration model:** Vuma Sound does not maintain a conventional roster. Instead, it maintains a network — approximately eighty active musicians across the south reach corridor who have agreed to be available for collaboration projects. Not all of these musicians will record with the label. Some have been in the network for years without a project materializing. The label's position is that the network is the asset; individual releases are the output of the network functioning, not the goal. + +**Project initiation:** Collaborations are initiated either by the label (which identifies artists in the network whose work suggests productive combination) or by artists in the network (who propose collaborations with specific partners). Both pathways have produced significant releases. The label does not have a preference. + +**Production:** Sessions take place wherever the participating artists are co-located. Matamba is the most common location, for the same reason that Sina Farrokhzad noticed thirty years ago — it is where south reach people go to resolve disputes and, while waiting, encounter each other. Other locations have included a mining facility break room at a Zenzele belt operation, a transit hotel at Rionegro, and, once, the cargo hold of a freight vessel during an eighteen-hour run between systems, which produced a recording the label considers among its best and which has been repeatedly difficult to classify for Meridian content purposes. + +**Distribution:** Tractus-denominated, Meridian-primary. The label selectively pursues cross-corridor distribution for releases that have cross-corridor resonance — collaborative work between artists from very different traditions tends to have a wider natural audience than corridor-specific work. The label does not push for broad distribution as a default; it makes the judgment per release. + +--- + +## Reach Position + +Vuma Sound occupies a specific place in the south reach's cultural self-understanding: the institution that treats the corridor's diversity as a resource rather than a complication. The south reach spans multiple cultural heritage communities with distinct musical traditions, and the default behavior of the music industry — by which artists from each tradition are sorted into their own labels, their own distribution channels, their own listener communities — tends to maintain those separations. Vuma Sound's explicit project is to work against that tendency, not ideologically but practically: by making records that demonstrate what happens when the separations are crossed. + +Whether this constitutes a cultural project or just a commercial format is a question the label declines to resolve. The two founders have different answers and have been arguing the point for thirty years. + +--- + +**Cross-References:** +- [Ferreira Monteiro](ferreira-monteiro.md) — co-located at Matamba; institutional context for corridor cross-pollination +- [Zindua Records](zindua-records.md) — south reach corridor peer; different tradition, overlapping geography + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/westfield-common.md b/wiki/corporations/westfield-common.md index 704f1899e..9a68091e2 100644 --- a/wiki/corporations/westfield-common.md +++ b/wiki/corporations/westfield-common.md @@ -1,24 +1,100 @@ --- title: "Westfield Common" -description: "Westfield Common — consumer goods manufacturer based in Neustadt, west reach" +description: "Westfield Common — consumer goods brand aggregator at Neustadt (GJ 526) — eleven regional west reach brands consolidated under a single holding company that markets each locally as independent while centralizing production, with a community cooperative acquisition whose original member governance rights were voided by a structural merger without member consent" slug: westfield-common category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Neustadt (GJ 526) tags: [commodity_branded, west_reach, mark, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [westmark-distribution, compact-financial-exchange, kellervolk] --- # Westfield Common -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Consumer Goods Brand Aggregator +**Also Known As:** Westfield, WCG **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Neustadt (GJ 526) +**Scope:** West reach primary; Compact zone secondary +**Headquarters:** Neustadt (GJ 526) — west reach corridor, 3 hops from Gateway +**Classification:** Sub-Syndic consumer goods enterprise; brand portfolio holding company -Westfield Common is a consumer goods manufacturer operating out of Neustadt (GJ 526). Details to be expanded. +--- + +## Overview + +The name "Common" in Westfield Common is doing specific commercial work. It signals the company's positioning: not aspirational, not premium, not the kind of product that says something about who you are for choosing it. Common goods, for common households, at prices that do not require deliberation. The west reach commissary shelf has had a Westfield Common product on it for four decades, and the brand's absence would be noticed in the way the absence of reliable infrastructure is noticed — not with appreciation for what it was, but with inconvenience at what has gone missing. + +What the commissary shelf does not signal is that Westfield Common is also the company behind eleven other regional brands on the same shelf — brands with local-sounding names and local-specific packaging that position them as the area's own product. A shopper at a Compact-zone settlement commissary may be choosing between what they perceive as a regional cooperative label and a large corporate brand. In many cases, both are Westfield Common. + +The consolidation has been an effective strategy. Regional brand recognition reduces the marketing cost of entering a new system — consumers already trust a product they believe has a local provenance. The manufacturing consolidation that underpins the regional brands reduces production costs below what individual regional producers could achieve. The combination has produced a company with stable margins across a broad consumer base while maintaining the appearance of a diverse regional supplier landscape. + +--- + +## Origin + +Westfield Common began as a genuine single-location consumer goods producer in Neustadt, incorporated sixty-one years ago by a food manufacturing family with established distribution relationships across the system's commissary network. The original company produced packaged grain products, cleaning compounds, and basic personal care goods — the product category that is now understood as the "Common" brand identity. + +The shift to brand aggregation began thirty-seven years ago with the acquisition of Thorberg Basics, a consumer goods operation at a Compact corridor system that had encountered financial difficulty. The Thorberg brand was locally recognized; the operation was under-capitalized. Westfield Common purchased the operation, retained the brand identity, and integrated manufacturing into its own consolidated production. Consumers who had bought Thorberg Basics products before the acquisition continued buying them after, with no indication that the producer had changed. + +Ten subsequent acquisitions across thirty-seven years produced the current portfolio of eleven regional brands, manufactured at two facilities — Neustadt and a second installation at Freiholt — and distributed under individual brand identities throughout the Compact zone. The Westfield Common holding company structure is identifiable to commercial institutional clients. It is not prominently disclosed to retail consumers. + +--- + +## Operations + +**Brand portfolio:** Eleven consumer goods brands across packaged food, cleaning products, and basic personal care goods. Each brand is marketed locally without prominent disclosure of its corporate parent. The portfolio spans systems from the Compact's inner corridor to its outer reaches, covering a geographic distribution that no individual regional producer could achieve independently. + +**Manufacturing consolidation:** Two production facilities — Neustadt and Freiholt — produce goods for the entire brand portfolio. Product formulations are standardized across the portfolio where possible, differentiated through brand-specific packaging and minor formulation adjustments that accommodate regional taste variations documented over years of sales data. The consolidation produces manufacturing efficiency the individual regional brands could not generate separately; the brand differentiation captures the market premium that local identity commands without the cost of genuinely local production. + +**Distribution:** Westfield Common's distribution runs through Westmark Distribution under a long-term freight agreement that includes priority scheduling provisions. The Westmark relationship is the mechanism by which goods produced at two facilities reach commissaries across the Compact zone on schedules that retail clients can plan inventory around. Independent regional producers typically cannot access comparable scheduling reliability. + +**Workforce:** Approximately 280 people across manufacturing, distribution coordination, and brand management. The manufacturing workforce is concentrated at the Neustadt and Freiholt production facilities; brand management and corporate operations are centralized in Neustadt. + +--- + +## Political Relationships + +**Westmark Distribution:** Westfield Common's commercial viability at scale depends on the Westmark freight relationship, which provides the scheduling predictability and customs documentation handling that allows consolidated production to reach distributed retail markets. A disruption to the Westmark relationship would affect Westfield Common's distribution economics across all eleven brands simultaneously, as the company has no secondary freight infrastructure of comparable reach within the Compact zone. Both companies are aware of this dependency; neither has found it operationally problematic in the current commercial environment, and Westfield Common's freight volumes make it a significant account for Westmark's west reach operations. + +**Compact Financial Exchange:** Westfield Common's entire commercial operation is Mark-denominated and settled through CFX. The company has no significant presence in Assembly-standard markets and no Tractus-denominated revenue streams. This currency alignment simplifies commercial operations within the Compact zone and creates a structural dependency on the Compact's continued commercial coherence. Westfield Common's board has discussed the currency concentration risk of operating exclusively in Mark and has not reached a conclusion that would support diversification action; the conversion costs of entering Assembly-standard markets are assessed as prohibitive against margins in the consumer goods category. + +**Kellervolk:** Westfield Common has sponsored Kellervolk programming for fourteen years, placing Westfield Common brand identities in the credits and in-program acknowledgments of Kellervolk productions distributed across the west reach. The commercial value is regional brand reinforcement at modest cost relative to direct advertising. Kellervolk's editorial board has negotiated the sponsorship terms to exclude product integration in narrative content; the brand acknowledgments appear in framing elements only. Westfield Common's marketing team has not formally withdrawn requests for deeper integration, and the question of product placement in production content reopens at each contract renewal without resolution. + +--- + +## What They Don't Talk About + +Eighteen years ago, Westfield Common acquired a small baker's flour cooperative called Grundmühle, which had operated for forty years at a settlement between Neustadt and Freiholt. The Grundmühle cooperative was organized under a community charter — a form common for agricultural cooperatives in the Compact's early settlement period — that vested governance rights in its member households. The charter included a change-of-control provision: any acquisition required a member vote to proceed. + +Westfield Common's legal team structured the acquisition to avoid triggering that provision. The mechanism: Grundmühle had transferred its production operations into an operating subsidiary eleven years before the acquisition, and the cooperative charter's change-of-control clause applied to the cooperative entity rather than the subsidiary. By acquiring the subsidiary — the entity that actually ran the mill and managed the flour production — Westfield Common obtained Grundmühle's operations without the member vote. + +Member households received a cash payment described in the acquisition communication as a "cooperative restructuring dividend." They were informed that Grundmühle's production operations were being "integrated into a broader consumer goods network." The Grundmühle name continued in use as a product label on flour goods produced in the Neustadt facility. The cooperative's original charter was never formally dissolved. It remains in the settlement authority's archived records and in the personal files of several member households who retain their original membership documentation. + +The legal question of whether the acquisition's subsidiary mechanism validly transferred the cooperative's assets under the charter's change-of-control provision has never been adjudicated. Westfield Common's legal team's internal assessment of that question is a privileged communication that has not been shared with the board in any document available to outside review. + +--- + +## Gameplay Relevance + +Westfield Common is ambient commercial infrastructure in the west reach — a corporation whose products occupy commissary shelves, whose brand names carry local familiarity, and whose consolidated corporate structure is not visible to most of the consumers it serves. The company does not generate conflict through its current operations; it is the background against which food supply, regional identity, and cooperative economics play out in the corridor. + +The Grundmühle acquisition is the investigative thread. The cooperative charter and the acquisition structure are documentary evidence with recoverable chain: the charter establishes the governance requirement, the acquisition filings document the subsidiary mechanism, and the communication to member households is the record of what they were told versus what was done. The member households who retain original membership documentation are potential sources — people who remember what they had and what they received in exchange for it. Whether the acquisition structure was legally valid under the charter's terms is a question for an analysis that has never been conducted by anyone other than the party whose interest required the answer to be yes. + +--- + +**Cross-References:** +- [Neustadt](../star-systems/GJ-526/index.md) — Headquarters system; primary production facility; west reach corridor +- [Westmark Distribution](westmark-distribution.md) — Primary freight partner; Compact-zone distribution infrastructure +- [Compact Financial Exchange](compact-financial-exchange.md) — Settlement infrastructure; Mark-currency clearing +- [Kellervolk](kellervolk.md) — Cultural sponsorship relationship; west reach programming distribution + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/westphalia-heavy-works.md b/wiki/corporations/westphalia-heavy-works.md index ef59c99dc..8299abfb8 100644 --- a/wiki/corporations/westphalia-heavy-works.md +++ b/wiki/corporations/westphalia-heavy-works.md @@ -11,7 +11,7 @@ faction_type: economic headquarters: Rand (GJ 601A) tags: [heavy_equipment, vehicles, compact, mark, west_reach, german_heritage] decision_refs: [D-175, D-172] -cross_refs: [] +cross_refs: [erzgebirge-instruments] --- # Westphalia Heavy Works diff --git a/wiki/corporations/wolkenbruch-cinema.md b/wiki/corporations/wolkenbruch-cinema.md index 280d8cbea..c8978a6dd 100644 --- a/wiki/corporations/wolkenbruch-cinema.md +++ b/wiki/corporations/wolkenbruch-cinema.md @@ -1,24 +1,104 @@ --- title: "Wolkenbruch Cinema" -description: "Wolkenbruch Cinema — cultural content producer based in Neustadt, west reach" +description: "Wolkenbruch Cinema — prestige film production at Neustadt (GJ 526) — community-grounded dramatic works for the west reach's own audience, sustained by archival licensing and a below-market facility arrangement, with an authorship history on the studio's founding film that the credits do not reflect" slug: wolkenbruch-cinema category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Neustadt (GJ 526) tags: [cultural, west_reach, mark, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [maas-rijn-entertainment, kellervolk, westfield-common] --- # Wolkenbruch Cinema -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Cultural Film Production +**Also Known As:** Wolkenbruch, WC **Status:** Canonical -**Scope:** Regional — west reach operations -**Headquarters:** Neustadt (GJ 526) +**Scope:** West reach primary; limited corridor-wide prestige distribution secondary +**Headquarters:** Neustadt (GJ 526) — west reach corridor, 3 hops from Gateway +**Classification:** Sub-Syndic cultural enterprise; narrative film production and archival licensing -Wolkenbruch Cinema is a cultural content producer operating out of Neustadt (GJ 526). Details to be expanded. +--- + +## Overview + +Wolkenbruch Cinema makes films about the west reach for the west reach's own audience — a deliberate and commercially modest proposition that the studio has maintained for twenty-seven years. Its productions are dramatic works set in the corridor's settlements, farming operations, industrial communities, and the social spaces where people who live in particular places negotiate the terms of that life. The films are not exported in meaningful volume to inward corridor markets, which have different aesthetic expectations and whose distributors have shown no sustained interest in west reach vernacular cinema. Wolkenbruch does not adjust its work to fit those expectations. + +The studio's name comes from its founding film — a drama set during a flooding event at a Neustadt farming settlement, released twenty-seven years ago, which won the primary regional circuit award in the year of its release and established the studio's reputation in a single production cycle. The cloudburst of the title was literal in the film; it has remained the studio's identity marker because the company's approach to storytelling has the same quality: an intensity that arrives suddenly, saturates the ground it falls on, and is over before it becomes comfortable. + +This reputation supports a small but loyal audience and a consistently moderate production slate. Wolkenbruch makes three to four features per decade, each receiving the care that comes from limited throughput. The films are shown in settlement halls, community cinemas, and shared spaces throughout the west reach — the kind of exhibition infrastructure that exists where dedicated theatrical facilities do not. This is the audience the studio makes work for. It is also, in practice, the audience that sustains it. + +--- + +## Origin + +Wolkenbruch was founded by a writer-director named Jans Mulder-Pol, who had spent a decade as a documentary crew member on various west reach productions before concluding that the kind of story she wanted to tell — intimate, specific, grounded in the particular rather than the general — required a production structure she controlled. She incorporated Wolkenbruch with personal savings and a modest equipment loan from a Neustadt cooperative bank. + +The founding film's production was unremarkable in its circumstances: a small crew, a mostly non-professional cast drawn from the Neustadt farming community whose flooding event formed the drama's backdrop, a budget that required careful management throughout. The film's quality was not visible in its production conditions. The regional circuit award was not predicted by anyone involved in making it. + +The award changed Wolkenbruch's operating conditions permanently. Kellervolk at Nyrheim contacted Mulder-Pol about a co-production arrangement; she declined, preferring to maintain single-entity creative control over production decisions. Maas Rijn Entertainment expressed interest in distribution rights for the founding film; the archival licensing arrangement that resulted from that negotiation became the template for a standing relationship that now provides the company's primary recurring revenue. The Neustadt settlement authority, which had provided a location cooperation agreement during production, offered a formal facility lease at below-market terms following the award — an arrangement renewed five times since. + +Mulder-Pol is Wolkenbruch's current creative director and the sole greenlight authority on production decisions. + +--- + +## Operations + +**Production:** Three to four feature-length dramatic films per decade, produced by a core team of nine with significant production-phase contracting from the west reach freelance crew pool. The deliberate production pace is creative policy rather than resource constraint. Mulder-Pol has consistently declined to increase throughput on the grounds that the quality of attention available for each production is proportional to the time spent on it — and that a studio that produces more films for a fixed audience eventually produces films that audience does not need. + +**Archival licensing:** Twenty-seven years of production has accumulated substantial west reach location footage, documentary materials shot during production, and supplementary visual documentation that was not incorporated into released films. This archival material is licensed to Maas Rijn Entertainment under a standing agreement giving MRE first-look access to the Wolkenbruch archive for use in their own productions. The licensing revenue provides approximately 45% of Wolkenbruch's annual operating income — the mechanism that makes the studio's low-throughput model financially viable. + +**Facility arrangement:** The Neustadt production facility — a converted industrial space adjacent to the agricultural processing district — is leased from the Neustadt settlement authority at approximately 60% below prevailing market rate. In exchange, Wolkenbruch produces promotional and public information content for the authority on a project basis, released under a separate production credit that does not reference Wolkenbruch. The arrangement is known to the authority and to Wolkenbruch's full-time staff. It is not disclosed publicly. + +**Exhibition:** Wolkenbruch's films are distributed through a network of west reach community exhibition coordinators — a loose institutional structure managing screening rights, venue booking, and audience coordination for the corridor's community cinema infrastructure. The company does not use a commercial distribution intermediary and has declined offers to establish one. + +--- + +## Political Relationships + +**Maas Rijn Entertainment:** The archival licensing arrangement constituting Wolkenbruch's primary revenue source runs through Maas Rijn, which holds first-look licensing rights to the Wolkenbruch archive and has exercised those rights across multiple production cycles. The commercial relationship is contractually straightforward; the institutional relationship is more layered. Maas Rijn and Wolkenbruch occupy the same west reach entertainment space with fundamentally different commercial orientations — Maas Rijn produces for volume and catalog accumulation, Wolkenbruch for critical reception and cultural specificity — and have maintained professional distance rather than collaboration. The archival licensing arrangement suits both parties: Maas Rijn gains access to distinctive west reach visual material its own productions rarely match for regional specificity, and Wolkenbruch receives reliable income that decouples its creative decisions from the need to produce films that turn a theatrical profit. + +**Kellervolk:** The two studios occupy the west reach prestige cultural production space with different geographic anchors — Wolkenbruch at Neustadt, Kellervolk at Nyrheim — and overlapping audience bases across the corridor. They are not in commercial competition in any direct sense; both produce limited output for niche audiences who follow the studios' distinct aesthetic commitments. The relationship is one of mutual awareness and occasional comparison in critical contexts rather than active institutional engagement. Kellervolk's grant funding structure gives it production resource advantages Wolkenbruch does not have; Wolkenbruch's absence from any government funding relationship gives it editorial freedom that Kellervolk's grant process complicates. Neither studio discusses this trade-off publicly. + +**Westfield Common:** Both companies are based in Neustadt and occupy the same commercial district. The relationship is neighborly rather than significant — shared municipal infrastructure, occasional collaboration on community events, a modest advertising arrangement under which Westfield Common brand acknowledgments appear in Wolkenbruch's community screening programs in exchange for a small annual fee. Westfield Common's marketing team has approached Wolkenbruch twice in the past six years about product placement in production development conversations. Both approaches were declined by Mulder-Pol. Westfield Common has not formally registered these approaches as something it will not make again, and the question is understood on both sides to remain open. + +--- + +## What They Don't Talk About + +The founding film — the cloudburst drama that established Wolkenbruch's reputation and remains its most discussed work in west reach critical contexts — was produced from a screenplay whose development history the credits do not fully reflect. + +Mulder-Pol wrote the early treatment and scene breakdown that defined the film's structural approach: the flooding event as backdrop, the specific family relationships that carry the drama, the way the film would handle time across three days. The script that went into production — the dialogue, the scene construction, the specific formal choices that critics and audiences responded to — was substantially rewritten during an intensive six-week period by a writer who was at the time employed by Maas Rijn Entertainment under an exclusive creative development contract that precluded public credit for outside work. The collaboration was informal, initiated through a personal connection, and was not documented beyond a series of exchange messages that both parties retained. + +The uncredited writer left Maas Rijn Entertainment four years after the founding film's release and has not worked in the west reach entertainment sector since. There has been no public claim, no formal demand, and no disclosed dispute. The history is present, however, in occasional communications between the writer and Mulder-Pol — professional in tone, irregular in frequency — that do not reference the founding film directly but whose subtext is understood by both parties. Mulder-Pol has not described these communications to anyone at Wolkenbruch. + +The exchange messages documenting the script development collaboration are retained by the uncredited writer. Their existence is not known to Maas Rijn Entertainment, which now holds first-look licensing rights to Wolkenbruch's archive — the archive that begins with the founding film — and employs no one who was present during the original production. + +--- + +## Gameplay Relevance + +Wolkenbruch Cinema is west reach cultural background — a studio whose films are the ambient cultural presence in community screening halls, in references by people who grew up watching them, and in critical discussions of what west reach identity looks like when someone bothers to depict it carefully. The company's modest scale and limited commercial footprint make it peripheral to most economic investigations in the corridor. + +The authorship history is the investigative thread. Establishing it requires first knowing that the founding film's script development has an undisclosed collaborative dimension — which requires accessing production records from twenty-seven years ago or cultivating a source who was adjacent to the original production — and then locating the uncredited writer, who is no longer in the west reach entertainment sector. The exchange messages are in that writer's possession and constitute a specific documentary record of who wrote what and when. Mulder-Pol's own correspondence from the production period contains references that would carry weight for someone who already knew what to look for. + +The discovery has personal rather than institutional stakes at its center: this is not a regulatory violation or a commercial fraud, but it defines the artistic identity that Wolkenbruch's standing — and the Maas Rijn archival licensing relationship premised on that standing — rests on. The complication of Maas Rijn's position, as the licensing partner for a catalog that begins with a film whose authorship is contested, is the kind of implication that a player pursuing the thread would need to decide what to do with. + +--- + +**Cross-References:** +- [Neustadt](../star-systems/GJ-526/index.md) — Headquarters system; production base; west reach corridor +- [Maas Rijn Entertainment](maas-rijn-entertainment.md) — Primary archival licensing partner; west reach entertainment peer +- [Kellervolk](kellervolk.md) — West reach prestige cultural peer; overlapping critical audience +- [Westfield Common](westfield-common.md) — Neustadt co-located neighbor; minor commercial relationship + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/workshift-apparel.md b/wiki/corporations/workshift-apparel.md index 341e065ec..9d12dc97f 100644 --- a/wiki/corporations/workshift-apparel.md +++ b/wiki/corporations/workshift-apparel.md @@ -1,24 +1,102 @@ --- title: "Workshift Apparel" -description: "Workshift Apparel — consumer goods manufacturer based in Ashfield, north reach" +description: "North reach industrial workwear manufacturer at Ashfield (GJ 178) — institutional supply contracts for mines and agricultural cooperatives, Ashfield-branded goods mostly made elsewhere, and a Commission occupational health finding that was reviewed, shelved, and never shared with clients" slug: workshift-apparel category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Ashfield (GJ 178) tags: [commodity_branded, north_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [ashwick-broadcasting, baektu-mining-alliance, highland-cooperative] --- # Workshift Apparel -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Industrial and Agricultural Workwear Manufacturer +**Also Known As:** Workshift, WS **Status:** Canonical -**Scope:** Regional — north reach operations -**Headquarters:** Ashfield (GJ 178) +**Scope:** North reach corridor primary; south reach mining supply secondary +**Headquarters:** Ashfield (GJ 178) — 2-aperture through-route, north reach corridor +**Classification:** Sub-Syndic consumer goods enterprise; institutional supply contracts primary -Workshift Apparel is a consumer goods manufacturer operating out of Ashfield (GJ 178). Details to be expanded. +--- + +## Overview + +The name is functional: Workshift Apparel makes the clothes you buy before the shift starts. The company does not pursue fashion adjacency or heritage positioning. Its marketing materials show workers in correctly fitted garments doing demanding jobs without visible discomfort. The pitch is reliable, affordable coverage for people whose employers specify what they wear. The company's sales are predominantly institutional — mining operations, agricultural cooperatives, station commissary authorities — rather than direct consumer. Most buyers of Workshift clothing do not choose it themselves; it is selected for them by procurement officers working against a specification. + +This is a stable commercial position. Workshift has held supply contracts with north and south reach industrial operators for thirty years, has an unblemished certification record with the Lattice Commission's consumer goods standards body, and produces workwear that performs adequately for the conditions it is designed for. Its flagship product line, the HeavyWork industrial series, is the standard-issue workwear at a significant share of north reach enclosed-environment industrial operations. + +The certification record is accurate. Whether it is complete is a different question. + +--- + +## Origin + +Workshift Apparel was incorporated at Ashfield twenty-nine years ago by a logistics entrepreneur who had spent a decade managing commissary supply chains for Ashfield transit operators and had identified a consistent gap: the workwear her clients needed was sourced from a half-dozen off-corridor suppliers with inconsistent quality and unpredictable delivery cycles. The founding proposition was consolidation and reliability — one supplier, certified to Commission standards, with supply agreements designed around the predictable procurement cycles of industrial clients. + +The early business relied on the through-route position. Ashfield's corridor transit made it a viable distribution hub for both north reach and outward-pointing supply chains. Workshift's founding contracts were with two north reach mining cooperatives and an agricultural supply authority. The Ashfield facility was built for finishing, quality control, and logistics — the manufacturing from the start was handled by contract arrangements at lower-cost production systems. + +That structure has persisted and deepened. The Ashfield facility remains the company's operational center, its certification base, and the address on every product label. The manufacturing is elsewhere. + +--- + +## Operations + +**Product lines:** The HeavyWork series — synthetic-blend industrial garments for mining, construction, and enclosed-environment industrial work. The FieldWork series — lighter agricultural workwear for outdoor conditions, prioritizing range of motion and thermal adaptability. The StationWork series — standard-issue duty clothing for transit station operators, commissary staff, and service workers. Each line is available in multiple grades and configurations; institutional buyers specify the configuration and Workshift supplies to specification. + +**Manufacturing:** The Ashfield facility employs forty-three people and handles product design, quality testing, certification management, and distribution logistics. High-volume production for all three lines is handled by contract manufacturers at three systems: two in the south reach and one in the inner corridor. These manufacturers produce finished goods to Workshift's specifications under Workshift's brand marks. The Ashfield facility inspects incoming batches, processes returns, and manages the certification documentation for the complete product line. + +**Institutional contracts:** Approximately 70% of revenue comes from long-term institutional supply agreements with mining operations, agricultural cooperatives, and transit station authorities. These contracts specify product lines, quantities, delivery schedules, and price structures. They do not typically specify input materials or manufacturing origin. + +**Certification:** All Workshift product lines are certified under the Lattice Commission's consumer goods standards for textile and apparel. The certifications are current and have never lapsed. The certification documentation references the Ashfield facility as the manufacturer of record. + +--- + +## Political Relationships + +**Ashwick Broadcasting:** Workshift's most visible advertising spend goes to Ashwick Broadcasting, the Ashfield-based documentary and regional broadcaster whose corridor reach matches Workshift's primary distribution territory. The relationship is commercially straightforward — Workshift buys corridor-wide placement across Ashwick's network for seasonal institutional purchasing campaigns. What complicates it is that Ashwick's journalism unit operates editorially independent of its commercial relationships, and Ashwick has been developing investigative reporting on labor conditions at north reach mining operations for eighteen months. Workshift's advertising department and Ashwick's news unit do not speak to each other. So far this has not produced a conflict. Workshift's procurement team follows Ashwick's industrial coverage with some attention. + +**Baektu Mining Alliance:** Workshift's largest single institutional client. Baektu's commissary operations across their south reach belt mining sites specify the HeavyWork series as standard-issue for enclosed-environment work. The supply agreement is structured as a five-year rolling contract, currently in its second renewal. Baektu's procurement officers selected Workshift on the basis of Commission certification, price, and delivery reliability. The evaluation process did not include a review of HeavyWork input chemical profiles beyond confirming Commission certification status. + +**Highland Cooperative:** The Crown's Hollow agricultural cooperative specifies Workshift FieldWork and HeavyWork series for seasonal and permanent workers across its north reach operations. The cooperative's procurement committee reviews supplier certifications annually and has maintained Workshift as its workwear supplier for eleven years. The FieldWork exposure profile for agricultural workers — outdoor, ventilated, variable-duration shifts — is different from the enclosed mining context, but the HeavyWork line appears in some Highland Cooperative specifications for processing facility work. + +--- + +## What They Don't Talk About + +Five years ago, a Lattice Commission occupational health review of synthetic textile compounds in industrial workwear identified a chemical compound in common use across several workwear product lines as a Class B respiratory sensitizer under sustained low-ventilation exposure. The review was a technical document circulated to industry participants under Commission standard notification procedures. Workshift's legal team received the notification. + +The legal team's analysis was: the Commission's threshold for regulatory action requires demonstrated health outcomes under standard wearing conditions. Standard wearing conditions for consumer workwear — the parameters the certification system uses — are defined by intermittent exposure in adequately ventilated environments. At those parameters, the compound's sensitization profile falls below the action threshold. The HeavyWork line's Commission certification remained valid. The analysis concluded no regulatory disclosure or product modification was required. + +The analysis did not address the fact that Workshift's primary institutional buyer for the HeavyWork line uses the product for exactly the conditions the Commission study flagged: sustained, multi-shift, enclosed-environment exposure in the low-ventilation spaces characteristic of asteroid belt mining operations. This is not standard wearing conditions. The legal team's conclusion was accurate about the regulatory framework. It was written about the regulatory framework, not about the workers. + +Workshift has not communicated the Commission occupational health finding to Baektu Mining Alliance, Highland Cooperative, or any other institutional client. The finding is in Workshift's internal compliance archive. The current HeavyWork formulation is unchanged. + +--- + +## Gameplay Relevance + +Workshift is north reach industrial background — present in the workwear of north and south reach workers, visible in commissary inventories, identifiable in supply manifests. It is not a primary investigation subject in most scenarios. + +The occupational health finding is the thread. The Commission study is in the public technical archive — searchable, findable, cross-referenceable to specific compound classes. Workshift's internal compliance archive contains the legal team's analysis. Baektu Mining Alliance's health records, if accessible, show whether the sensitization outcome the Commission study predicted has materialized in workers wearing HeavyWork in enclosed mining environments. + +The legal team's analysis is the more specific target: it documents that Workshift received the finding, reviewed it, and made a considered decision not to act on or communicate it. The gap between "what standard wearing conditions means in the regulatory framework" and "what Baektu's enclosed mine operations look like" is the gap that a player working an industrial health investigation would be able to measure. + +--- + +**Cross-References:** +- [Ashfield](../star-systems/GJ-178/index.md) — Headquarters system; north reach through-route +- [Ashwick Broadcasting](ashwick-broadcasting.md) — Co-located broadcaster; advertising partner; independent journalism +- [Baektu Mining Alliance](baektu-mining-alliance.md) — Primary institutional client; enclosed mining operations; HeavyWork specification +- [Highland Cooperative](highland-cooperative.md) — North reach agricultural institutional buyer; eleven-year supply relationship + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/xing-yun-films.md b/wiki/corporations/xing-yun-films.md index 057869a58..ed5fbbcb2 100644 --- a/wiki/corporations/xing-yun-films.md +++ b/wiki/corporations/xing-yun-films.md @@ -1,24 +1,104 @@ --- title: "Xing Yun Films" -description: "Xing Yun Films — cultural content producer based in Songjiang, east reach" +description: "Chinese-heritage film studio at Songjiang (GJ 625) — theatrical productions for east reach corridor audiences, a blanket licensing catalog that is the real revenue engine, and a twelve-year inward distribution deal that has been stripping credits and origin markers from the studio's catalog without telling the people who made it" slug: xing-yun-films category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Songjiang (GJ 625) tags: [cultural, east_reach, tractus, entertainment] decision_refs: [D-189] -cross_refs: [] +cross_refs: [hangang-studio, mirai-entertainment, hana-creative] --- # Xing Yun Films -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Film Production Studio +**Also Known As:** Xing Yun, the studio **Status:** Canonical -**Scope:** Regional — east reach operations -**Headquarters:** Songjiang (GJ 625) +**Scope:** East reach corridor primary; inward corridor licensing secondary +**Headquarters:** Songjiang (GJ 625) — 2-aperture system, east reach corridor +**Classification:** Sub-Syndic cultural enterprise; theatrical film production and catalog licensing -Xing Yun Films is a cultural content producer operating out of Songjiang (GJ 625). Details to be expanded. +--- + +## Overview + +Xing Yun Films has been producing theatrical films in the Chinese-heritage tradition at Songjiang for forty-one years. The studio's output — family dramas, corridor historical narratives, adventure films set against the east reach's settlement history — has accumulated into a catalog that represents, for a significant portion of the east reach corridor's Chinese-heritage communities, the primary body of narrative film work they associate with their own cultural context. The studio is not the east reach's largest entertainment enterprise, but it is its most historically continuous Chinese-language film producer. + +The theatrical films are real, crafted, and genuinely attended. They are also not the core of the business. + +The business is catalog. Xing Yun holds blanket licensing agreements with transit hostel operators, station common areas, and commercial establishments across the east reach corridor that pay a fixed annual fee for unlimited access to the studio's full catalog. The catalog plays in corridors, waiting areas, common rooms, and the background of a hundred small commercial spaces throughout the corridor. The licensing income is steady, predictable, and accumulates regardless of whether any individual film is artistically successful. The theatrical productions are the catalog additions. Release a film, run a theatrical season, enter the catalog, repeat. + +--- + +## Origin + +The studio was founded forty-one years ago by a second-generation Songjiang settler, Mei Qian-Hartley, whose family had been part of the Chinese-heritage cohort that settled the system two generations earlier. Qian-Hartley trained as a filmmaker at a core corridor institution and returned to Songjiang specifically to produce films for the east reach community she had grown up in — work that reflected the east reach's settlement experience rather than interpreting it for an inward corridor audience. + +The first decade was modestly funded and critically well-regarded within the east reach corridor. The blanket licensing model emerged in the second decade, when Qian-Hartley recognized that her catalog's consistent presence in east reach common spaces was generating social value — cultural cohesion, community recognition, a shared reference pool — that theatrical distribution economics alone did not capture. The licensing agreements with station operators converted ambient presence into a revenue stream. + +Qian-Hartley died twelve years ago. The inward distribution agreement was negotiated by the board she had assembled in her final years, in the months following her death. + +--- + +## Operations + +**Theatrical production:** The studio produces three to five theatrical films per year. Production budgets are modest by core corridor standards and generous by east reach corridor norms. The films are produced in Songjiang's studio facilities with east reach creative talent — writers, directors, and performers drawn from the Songjiang community and the broader east reach Chinese-heritage corridor. + +**Catalog licensing:** The blanket licensing operation is managed by a small dedicated team that handles operator agreements, rights tracking, and the continuous process of adding new releases to the licensing catalog. The catalog contains approximately two hundred and forty titles across forty years of production. The licensing revenue is the studio's primary income source by margin. + +**Archive relationship:** Hangang Studio, co-located at Songjiang, holds streaming rights to significant portions of Xing Yun's pre-digital catalog under an archive licensing agreement structured in the early days of the corridor streaming market. The financial terms are favorable to Hangang; the arrangement was negotiated at a time when the studio's management undervalued long-term streaming revenue relative to upfront archive licensing fees. + +**Lattice Commission registration:** All Xing Yun productions are registered with the Commission's cultural content licensing body under the standard east reach cultural content framework, including mandatory creator attribution records for all productions. + +--- + +## Political Relationships + +**Hangang Studio:** The archive licensing agreement makes Hangang Studio Xing Yun's most consequential commercial relationship in terms of ongoing revenue exposure. Hangang holds streaming rights to a substantial portion of the catalog and collects streaming revenue that Xing Yun no longer receives from those titles. The two studios share a system address but have a relationship whose formal structure advantages Hangang considerably. Xing Yun's current management has been attempting to renegotiate the archive agreement for three years; Hangang has not found the renegotiation terms offered to be acceptable. The Commission's attribution records for the archived titles are Hangang's responsibility under the streaming rights agreement. + +**Mirai Entertainment:** The dominant east reach entertainment studio whose long-running serial *Corridor Light* occupies a structural position in the market that Xing Yun cannot compete with directly. The two studios overlap in distribution agreements at several east reach junction systems, and the scheduling relationships — which studio's content fills which time slots on which common-area terminals — are periodically renegotiated by operators who use both catalogs. The relationship is professionally cordial and commercially competitive. Mirai's distribution reach at east reach junction systems is larger; Xing Yun's catalog is more specifically valued by Chinese-heritage community audiences. + +**Hana Creative:** The Jinghu-based visual design studio that produces title sequences, marketing materials, and promotional design for Xing Yun's theatrical releases under a long-standing commission agreement. Hana's work is on every Xing Yun film that has been released in the past eighteen years. The design team at Hana has access to pre-release production documentation including credit structures for each film. In the course of designing inward distribution marketing materials for several recent Xing Yun releases, Hana's team encountered credit formats that differed significantly from the east reach theatrical versions. The discrepancy was noted internally. The Hana account manager responsible for the Xing Yun relationship has not raised the question formally. + +--- + +## What They Don't Talk About + +Twelve years ago, in the period following Mei Qian-Hartley's death and before a new creative director was appointed, the studio's board negotiated a secondary licensing agreement with a core corridor entertainment holding company for inward corridor distribution rights to the Xing Yun catalog. The agreement was presented to the board as an expansion opportunity — east reach cultural content reaching cosmopolitan inward markets, licensing revenue without additional production cost. + +The contract licensed the right to produce "localization editions" of any Xing Yun catalog title. The contract defined localization editions as including: replacement dubbing, score replacement, title translation, and "credit restructuring consistent with inward corridor market standards." Credit restructuring consistent with inward corridor market standards, as the holding company applied it, means: no Songjiang origin marker, no Xing Yun studio credit, no individual creator credits. The localized editions have been in distribution on inward corridor platforms for twelve years under the holding company's brand identity, presented as anonymous "corridor entertainment" whose provenance is not disclosed. + +The creative talent who made these films signed production agreements with Xing Yun. Those agreements did not contemplate or authorize the removal of attribution from their work. The localization royalties flow to Xing Yun's board under the licensing agreement; none of it flows to the original creators, because the production agreements they signed did not include provisions for secondary licensing revenue of this type. + +Several writers and directors whose work has been in inward corridor distribution for years without their name on it have recently found their films in searches of inward corridor content databases. They have begun asking Xing Yun's management where these editions came from and what the terms were. The management response has been to reference the licensing agreement's confidentiality provisions. + +The Commission's cultural content attribution records for the original east reach releases document the creator credits for every film affected. The licensing agreement that authorized the credit removal is in Xing Yun's contract archive. + +--- + +## Gameplay Relevance + +Xing Yun Films is east reach cultural ambient — its productions play in common areas, commissary waiting rooms, and transit corridors throughout the corridor. The studio's catalog is recognizable to east reach audiences and invisible to inward corridor viewers who watch the localized editions without knowing where they came from. + +The attribution thread is the investigative surface. A player can find the inward corridor localized editions through a standard content search, compare them against the Commission's east reach attribution records, and establish that creator credits present in the original releases are absent from the distribution versions. The licensing agreement is the next level: it is in Xing Yun's contract archive and would establish that the credit removal was authorized, contracted, and commercially structured rather than accidental. The original creators' production agreements with Xing Yun are the third level: they would establish what the creators actually consented to and whether secondary licensing terms of this type were disclosed at signing. + +The Hana Creative account manager's internal notes are a secondary access point — an outside observer who noticed the discrepancy and documented it without acting. + +--- + +**Cross-References:** +- [Songjiang](../star-systems/GJ-625/index.md) — Headquarters system; east reach corridor +- [Hangang Studio](hangang-studio.md) — Co-located archive and streaming partner; contested licensing terms +- [Mirai Entertainment](mirai-entertainment.md) — East reach competitor; overlapping corridor distribution +- [Hana Creative](hana-creative.md) — Design and marketing partner; aware of credit discrepancy in localized editions + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/corporations/zindua-records.md b/wiki/corporations/zindua-records.md index ae5f68ea1..5737b6e52 100644 --- a/wiki/corporations/zindua-records.md +++ b/wiki/corporations/zindua-records.md @@ -1,11 +1,11 @@ --- title: "Zindua Records" -description: "Zindua Records — cultural content producer based in Zenzele, south reach" +description: "South reach independent label at Zenzele (GJ 1111) — grew from mining-community music scenes, now the corridor's most visible voice for working-class south reach culture" slug: zindua-records category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-21 scope: regional faction_type: economic headquarters: Zenzele (GJ 1111) @@ -16,9 +16,64 @@ cross_refs: [] # Zindua Records -**Type:** Corporation — Cultural Content Producer +**Type:** Corporation — Independent Music Label **Status:** Canonical -**Scope:** Regional — south reach operations +**Scope:** South reach corridor primary; cross-corridor Meridian presence for principal artists **Headquarters:** Zenzele (GJ 1111) +**Currency:** Tractus +**Classification:** Sub-Syndic cultural enterprise; independent -Zindua Records is a cultural content producer operating out of Zenzele (GJ 1111). Details to be expanded. +--- + +## Overview + +Zenzele is a mining and freight system. Baektu Mining Alliance extracts metallic ores from the outer belt. Umoja Freight moves the product through the south reach corridor. The settlement that grew around these industries has the character of all extraction communities: dense, functional, not particularly interested in impressing outsiders, and in possession of a cultural life that outsiders who only see the industry tend to miss. + +Zindua Records came out of that cultural life. The label was founded twenty-two years ago to record music from Zenzele's working communities — music that was already being made, in break rooms and bars and community halls, without any institutional support or commercial infrastructure. The label's original purpose was documentation. It became something larger because the music it documented was, in the assessment of people outside Zenzele who encountered it, exceptionally good. + +"Zindua" — the name means to awaken, to rouse, to bring to attention something that was there but unnoticed — was not chosen without awareness of the irony. The founders were aware that naming a label "awaken" and then releasing music that had been present for generations without being heard by the wider reach was a statement about how the wider reach organized its attention. They made it anyway. + +--- + +## Origin + +The label was founded twenty-two years ago by three people who had all grown up in Zenzele's belt-worker communities and gone into different careers: a maintenance technician named Vuyo Dlamini, a logistics scheduler named Amara Osei, and a singer named Thandeka Nkosi who had been performing in Zenzele's bar circuit for eight years without a recording contract because no recording operation had come to Zenzele to find one. + +The founding was pragmatic. Thandeka Nkosi had been approached by a south reach label based in Matamba about recording material, but the label's offer involved recording in Matamba, under Matamba production practices, with Matamba session musicians, which Thandeka Nkosi declined on the grounds that the music she made came from where she came from and would sound wrong everywhere else. Vuyo Dlamini had recording equipment. Amara Osei had the organizational capacity to run a commercial operation. They founded the label, recorded Thandeka Nkosi's first album in a Zenzele community hall over three weekends, and released it through Meridian distribution three months later. + +The album sold in Zenzele because Zenzele knew Thandeka Nkosi. It sold outside Zenzele because the music sounded like something people outside Zenzele had not heard before and had, apparently, needed. Within the first year, the label had received inquiries from seven other artists across the south reach corridor asking whether Zindua would record them. + +--- + +## Operations + +**Roster:** The label currently represents twenty-three active artists, the majority of them from Zenzele or from systems in the south reach's industrial belt. The roster has expanded beyond Zenzele over the label's history as artists from other working-class south reach communities found that Zindua's production approach — recording in the environment where the music was made, not in a purpose-built studio — matched their own understanding of what their music required. + +**Production:** The label does not own a studio. It owns recording equipment, and the equipment travels. Sessions take place in community halls, bars, outdoor locations, and occasionally in operational industrial facilities where the specific acoustic environment is part of what the artist is trying to capture. Zindua's technical staff have developed expertise in recording under conditions that studio-trained engineers find challenging. This expertise is considered by the label's artists to be its most valuable technical asset. + +**Distribution:** Tractus-denominated, Meridian-primary. The label's principal artists — Thandeka Nkosi, and three others who have developed cross-corridor followings — receive full reach-wide Meridian distribution. The rest of the roster distributes within the south reach, with targeted cross-corridor distribution for specific releases. The label manages this selectively: wider distribution serves some artists and dilutes others. + +**Commission relationship:** Zindua has had one formal interaction with the Lattice Commission's content review process, involving a release that incorporated recordings made in a Baektu Mining Alliance restricted facility. The resolution involved the mining alliance's communications office, the Commission's content protocols, and approximately eight months of administrative process. The release came out. The specifics of the resolution are documented in the Commission's filing records and not discussed by the label. + +--- + +## Reach Position + +Zindua Records is the most visible south reach label among the corridor's working-class communities, and the least visible among the south reach's institutional and commercial infrastructure. The label does not attend industry events. It does not seek partnerships with south reach commercial entertainment operations. It does not have a public relations function. + +What it has is a reputation among south reach working communities as the label that comes to where the music is, records it as it is, and releases it for the people who made it and the people like them. This reputation has attracted artists from systems the label had not intended to expand into and listeners who had not been looking for south reach music before they encountered it. + +Whether Zindua Records is a commercial operation with cultural commitments or a cultural project with commercial necessities is a question Vuyo Dlamini, Amara Osei, and Thandeka Nkosi have answered differently in different years. The current answer appears to be that the distinction does not help them make decisions. + +--- + +**Cross-References:** +- [Baektu Mining Alliance](baektu-mining-alliance.md) — co-located at Zenzele; industrial context +- [Umoja Freight](umoja-freight.md) — co-located at Zenzele; labor community overlap +- [Vuma Sound](vuma-sound.md) — south reach corridor peer; collaborative approach, shared geography + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-21 diff --git a/wiki/corporations/zulu-consumer.md b/wiki/corporations/zulu-consumer.md index 9f83d9943..4cbf395fa 100644 --- a/wiki/corporations/zulu-consumer.md +++ b/wiki/corporations/zulu-consumer.md @@ -1,24 +1,102 @@ --- title: "Zulu Consumer" -description: "Zulu Consumer — consumer goods manufacturer based in Zenzele, south reach" +description: "South reach household goods manufacturer at Zenzele (GJ 1111) — affordable personal care and cleaning products built on near-free chemical inputs from south reach mining waste streams, with a Lattice Commission regulatory classification that keeps the input sourcing invisible and an enhanced processing certification that was never completed" slug: zulu-consumer category: corporation status: canonical created: 2026-04-19 -updated: 2026-04-19 +updated: 2026-04-22 scope: regional faction_type: economic headquarters: Zenzele (GJ 1111) tags: [commodity_branded, south_reach, tractus, consumer_goods] decision_refs: [D-189] -cross_refs: [] +cross_refs: [umoja-freight, baektu-mining-alliance, zindua-records] --- # Zulu Consumer -**Type:** Corporation — Consumer Goods Manufacturer +**Type:** Corporation — Household Consumer Goods Manufacturer +**Also Known As:** Zulu, ZC **Status:** Canonical -**Scope:** Regional — south reach operations -**Headquarters:** Zenzele (GJ 1111) +**Scope:** South reach corridor primary; broader corridor distribution secondary +**Headquarters:** Zenzele Horizon (GJ 1111) — 5-aperture south reach hub +**Classification:** Sub-Syndic consumer goods enterprise; household products and personal care -Zulu Consumer is a consumer goods manufacturer operating out of Zenzele (GJ 1111). Details to be expanded. +--- + +## Overview + +In south reach households, commissary shelves, and station common bathrooms, Zulu Consumer is the name on ordinary things. Personal care items, cleaning supplies, household basics — the category of goods that people buy without thinking about them and notice only when they are absent. The brand does not claim distinction. It claims availability, familiarity, and a price point calibrated to the south reach corridor's economic realities. + +Two generations of south reach communities have used Zulu Consumer products. The brand is part of the corridor's material texture in the way that a useful, unassuming thing becomes part of a landscape without anyone particularly intending it: through consistent presence, adequate performance, and institutional specification. Station commissary authorities buy it because it is certified, available, and priced for the supply contracts they are managing. Residents buy it because it is what is there. + +The products work. The formulations have been adequate, the certification current, the supply reliable. What the brand's two generations of corridor presence does not disclose — what most consumers of any consumer goods brand have no practical access to — is where the inputs come from and how the processing economics make the pricing possible. + +--- + +## Origin + +Zulu Consumer was founded twenty-eight years ago at Zenzele Horizon by the Dlamini-Okafor family, whose grandfather had been one of the Zulu-heritage settlement wave's early traders at the station. The founding generation identified a supply chain opportunity visible from Zenzele's position as a south reach hub: south reach mining and refinery operations produced chemical waste streams — processing by-products with residual active compound content — that the operations needed to dispose of and were paying to remove. The founding generation recognized that several of these waste stream compounds had utility in consumer formulations if processed adequately. + +The economics were the proposition: inputs at near-zero cost, processing at Zenzele's industrial facility, distribution through the south reach's already-established freight network. The margin on household goods whose input cost structure begins at near zero is, under normal pricing conditions, substantial. + +The Zenzele facility was certified under the Lattice Commission's industrial formulation standards in the company's second year of operation. Production began and the products entered south reach distribution under Umoja Freight's corridor supply agreements. The brand established itself through availability, price, and the institutional specification cycle that favors familiar certified suppliers. + +--- + +## Operations + +**Product lines:** Personal care goods — soaps, shampoos, general hygiene items — under the Zulu Home mark. Cleaning supplies — surface cleaners, disinfectants, general-purpose formulations — under the Zenzele Clean mark. A third product range of basic household consumables sold under institutional supply specifications without a consumer-facing brand mark. Approximately one hundred and sixty active SKUs across these lines. + +**Input sourcing:** The primary inputs for Zulu Consumer's formulations are chemical by-products purchased from south reach mining and refinery operations under waste disposal contracts. The transactions are structured as disposal agreements: the mining operations pay to have by-product streams removed, or sell them at nominal cost, and Zulu Consumer acquires them as processing inputs. Baektu Mining Alliance's refinery operations at Isivikelo are the largest single source. Two smaller south reach extraction cooperatives provide secondary streams. + +**Manufacturing:** The Zenzele Horizon facility handles all formulation and packaging. Forty-seven production and support staff. The facility is certified under the Commission's industrial formulation standards. Output for the past three years has been approximately eight hundred tonnes of finished goods annually. + +**Distribution:** Umoja Freight manages Zulu Consumer's product distribution through the south reach corridor under a standing distribution agreement that predates the current management team at both companies. The freight and consumer goods operations emerged from the same Zenzele commercial ecosystem and have been commercially interdependent from the beginning. + +--- + +## Political Relationships + +**Umoja Freight:** The Zenzele community-ownership freight cooperative is Zulu Consumer's distribution infrastructure and, in a practical sense, the company's most essential external relationship. Without Umoja's corridor network, Zulu Consumer's production reaches only the systems Zenzele's five-aperture hub connects directly. With it, the south reach corridor is systematically served. Umoja's billing records represent the most complete external documentation of Zulu Consumer's actual distribution volume and destination breakdown — information that neither the Commission's consumer goods registry nor Zulu Consumer's own marketing materials reflect in comparable detail. + +**Baektu Mining Alliance:** Baektu's Isivikelo refinery operations are Zulu Consumer's largest input supplier. The relationship is structured as industrial waste disposal: Baektu pays nominal costs or sells at low price to have chemical by-product streams removed from its operational sites, and Zulu Consumer acquires them under disposal contracts. Baektu characterizes these transactions as waste management agreements, not as sales of chemical inputs to a consumer goods manufacturer. This characterization is accurate from Baektu's operational perspective. It is also the characterization that keeps Baektu's name out of the downstream consumer goods supply chain documentation — relevant if the input classification question were ever examined. + +**Zindua Records:** The south reach music label that grew from Zenzele's mining-community culture shares the station with Zulu Consumer and occupies a different register of the same community. Zindua's community events draw the south reach working population that Zulu Consumer's brand has served for two generations. The two institutions have never had a formal commercial relationship. They are institutional neighbors in the way of things that share a location without sharing a purpose — present to each other as context, not as partners. + +--- + +## What They Don't Talk About + +The Commission's industrial chemical registry maintains two classification categories for chemical compounds used in consumer goods formulation. Standard-class inputs require general industrial formulation certification. Restricted-class inputs — compounds with specific processing requirements before they are suitable for consumer-facing goods — require an additional enhanced certification step that involves documented processing protocols, facility audit, and a specific Commission approval for consumer formulation use. + +Several of the chemical compounds in Zulu Consumer's input streams from Baektu's refinery operations are restricted-class under this framework. The Zenzele facility holds general industrial formulation certification, which is correct for standard-class inputs. It has never applied for or received enhanced certification for restricted-class consumer formulation. + +The regulatory filings Zulu Consumer submits to the Commission's consumer goods standards body describe the company's inputs as "refined chemical intermediates" — a classification that is technically applicable to the portion of the input stream that derives from downstream refinery processing steps. It is not accurate for the refinery by-product streams that arrive at Zenzele as waste disposal material. The legal team's choice of this classification was made when the company's second-generation management reviewed the input sourcing practice against Commission regulatory requirements and concluded that "refined chemical intermediates" was a defensible description that did not require triggering the restricted-class declaration. + +The formulations are likely adequate. The processing steps at the Zenzele facility almost certainly reduce the relevant compound concentrations to safe consumer levels. The gap is the certification — the documented, audited, Commission-approved basis for making that claim. That basis does not exist. Zulu Consumer's consumer goods are distributed throughout the south reach corridor on the basis of an input classification that a Commission inspector reading the supply chain documentation with attention to the restricted-class roster would not sustain. + +--- + +## Gameplay Relevance + +Zulu Consumer is south reach consumer goods texture — present in commissary shelves, visible in residential supply manifests, identifiable in the institutional procurement contracts that keep south reach station populations supplied. It is ambient infrastructure. + +The regulatory gap is the investigative thread. The Commission's industrial chemical registry is a public document; the restricted-class roster is searchable by compound. Zulu Consumer's input sourcing can be traced from Baektu's disposal contracts through the Zenzele facility's materials logs. The Commission's certification records for the Zenzele facility are accessible through the consumer goods standards registry. The gap between the input compounds' restricted-class status and the facility's certification level is a gap that can be measured once all three sources are in hand. + +The legal team's classification decision is the second level of the thread: it documents that the input sourcing was reviewed against Commission requirements and that the "refined chemical intermediates" characterization was a deliberate choice. Whether the formulations are actually safe is a question a Commission laboratory analysis could answer. Whether the regulatory basis for distributing them was properly established is the question the paper trail addresses. + +--- + +**Cross-References:** +- [Zenzele](../star-systems/GJ-1111/index.md) — Headquarters system; south reach hub; five-aperture +- [Umoja Freight](umoja-freight.md) — Co-located freight partner; south reach corridor distribution network +- [Baektu Mining Alliance](baektu-mining-alliance.md) — Chemical input supplier; disposal contract sourcing; Isivikelo refinery operations +- [Zindua Records](zindua-records.md) — Co-located cultural institution; Zenzele community overlap + +--- + +**Status:** Canonical +**Created:** 2026-04-19 +**Updated:** 2026-04-22 diff --git a/wiki/economics/archetypes/behavioral.toml b/wiki/economics/archetypes/behavioral.toml index b7a029b5e..2f74133e8 100644 --- a/wiki/economics/archetypes/behavioral.toml +++ b/wiki/economics/archetypes/behavioral.toml @@ -75,7 +75,7 @@ preferred_lore_archetypes = [ name = "Distributor" description = "Operates on thin margins at high throughput, competing on reliability, network reach, and capacity utilization rather than price or product differentiation." lore_examples = [ - "Sova Logistics (Van Maanen's Star — corridor freight)", + "Sova Logistics (mid-Reach corridor freight operator)", "Mercado Travessia (multi-system distribution, perishable chain)", ] diff --git a/wiki/economics/archetypes/lore.toml b/wiki/economics/archetypes/lore.toml index e2c134cb4..b609de461 100644 --- a/wiki/economics/archetypes/lore.toml +++ b/wiki/economics/archetypes/lore.toml @@ -309,7 +309,7 @@ currency_preference = "tractus" commission_relationship = "certified" tier3_density = "medium" behavioral_affinity = ["distributor", "intermediary"] -generation_notes = "Present in all settled sectors. Sova Logistics (Station Sova, Van Maanen's Star) is the canonical mid-tier instance — a tycoon-bookmark-scale operator. Mercado Travessia has logistics as a secondary identity. Commission registration required for freight haulers. Tier-3 instances: single-ship owner-operators, family cargo lines, station-owned freight operations." +generation_notes = "Present in all settled sectors. Sova Logistics is the canonical mid-tier instance — a tycoon-bookmark-scale corridor freight operator. Mercado Travessia has logistics as a secondary identity. Commission registration required for freight haulers. Tier-3 instances: single-ship owner-operators, family cargo lines, station-owned freight operations." [gateway_transit_operator] name = "Gateway Transit Operator" diff --git a/wiki/factions/concord-assembly.md b/wiki/factions/concord-assembly.md index 6b5c0387d..a96ba8b06 100644 --- a/wiki/factions/concord-assembly.md +++ b/wiki/factions/concord-assembly.md @@ -8,7 +8,7 @@ created: 2026-02-12 updated: 2026-02-13 scope: reach-wide faction_type: political -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -100,15 +100,15 @@ The Assembly is the closest thing the Reach has to a legitimate government — a --- -## v0.1 Relevance +## Gameplay Relevance -The Concord Assembly is **referenced but not directly present** in the v0.1 vertical slice. Its influence is felt through: +The Concord Assembly is **referenced but not directly present** in any given district setting. Its influence is felt through: - The legal framework that gives the detective jurisdictional authority - News ticker headlines about Assembly proceedings (background texture) -- The institutional hierarchy that assigns Commission investigators to districts like Sova +- The institutional hierarchy that assigns Commission investigators to districts - NPC dialogue referencing "the Assembly" as distant governance — recognized, not loved -The Assembly is the water the v0.1 fish swim in. Nobody in Sova Transit District thinks about the Assembly day-to-day, the same way nobody thinks about the legislature that passed the labor laws governing their shift schedule. But the Assembly's decisions created the Commission, funded the Institute, and wrote the regulations that make lattice smuggling illegal. Every tension in the district traces back to Assembly policy, however distantly. +The Assembly is the water any district's fish swim in. Nobody in a working freight hub thinks about the Assembly day-to-day, the same way nobody thinks about the legislature that passed the labor laws governing their shift schedule. But the Assembly's decisions created the Commission, funded the Institute, and wrote the regulations that make lattice smuggling illegal. Every tension in the district traces back to Assembly policy, however distantly. --- @@ -116,7 +116,6 @@ The Assembly is the water the v0.1 fish swim in. Nobody in Sova Transit District - [Lattice Commission](lattice-commission.md) — Regulatory body the Assembly funds - [Veil Institute](veil-institute.md) — Research institution the Assembly funds - [Syndics](syndics.md) — Commercial interests that lobby the Assembly -- D-036: Sova Transit District setting (Concord Assembly as governance) - Round 16: Full faction development --- diff --git a/wiki/factions/guardians-of-autonomy.md b/wiki/factions/guardians-of-autonomy.md index c1893ed91..db8182c2b 100644 --- a/wiki/factions/guardians-of-autonomy.md +++ b/wiki/factions/guardians-of-autonomy.md @@ -8,7 +8,7 @@ created: 2026-02-12 updated: 2026-02-13 scope: reach-wide faction_type: cultural -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -114,16 +114,16 @@ The Guardians occupy a precarious position in Reach society. They are dismissed --- -## v0.1 Relevance +## Gameplay Relevance -The Guardians are **indirectly present** in the v0.1 vertical slice through their technology: +The Guardians are **indirectly present** in a freight district setting through their technology: -- **[Severance counter-surveillance equipment](../contraband/severance-equipment.md)** is the ring's tertiary contraband. Devra uses a handheld Meridian dead zone generator during sensitive meetings in [Corridor B-7](../locations/van-maanens-star-system/maintenance-corridors.md). This technology originates from Guardian supply chains. +- **[Severance counter-surveillance equipment](../contraband/severance-equipment.md)** is the ring's tertiary contraband. A ring operative may use a handheld Meridian dead zone generator during sensitive meetings in off-map maintenance corridors. This technology originates from Guardian supply chains. - **The `contraband.severance_tech` FactId** represents the moment when the investigation touches something larger than a local smuggling ring. Discovering Severance tech in the ring's inventory raises the question: who is the end user? Is the ring just a distribution node in a Guardian supply chain? - **NPC references:** Workers in the district are aware of the Guardians as a cultural phenomenon. The [Unbound](the-unbound.md) residents are sympathetic. Mainstream workers dismiss Guardian claims the way people dismiss conspiracy theories — unless they've personally experienced Commission overreach. -- **The Guardians are rumored** to operate in Van Maanen's Star but are not a visible presence in Sova Transit District. This rumor is itself information: it means Guardian infrastructure exists somewhere nearby, and the ring has access to it. +- **The Guardians are rumored** to operate in the surrounding system but are not a visible presence in the district. This rumor is itself information: it means Guardian infrastructure exists somewhere nearby, and the ring has access to it. -The Guardians function in v0.1 as a narrative thread that extends beyond the vertical slice's boundaries. The Severance tech in the ring's inventory is a loose end — a reminder that the district's smuggling operation connects to something larger, something political, something the detective wasn't sent to investigate but might stumble into. +The Guardians function as a narrative thread that extends beyond the district's boundaries. The Severance tech in the ring's inventory is a loose end — a reminder that the district's smuggling operation connects to something larger, something political, something the detective wasn't sent to investigate but might stumble into. --- diff --git a/wiki/factions/index.md b/wiki/factions/index.md index 7ace30a34..af93825cf 100644 --- a/wiki/factions/index.md +++ b/wiki/factions/index.md @@ -23,7 +23,9 @@ Political and institutional factions operating across the Settled Reach. | Faction | Scope | Role | |---------|-------|------| -| [The Ring](the-ring.md) | Station Sova | Smuggling operation (v0.1 gameplay) | +| [The Ring](the-ring.md) | District-level | Informal contraband network operating inside a freight logistics district — structure, cargo, community role documented as a canonical worked example for corridor authors | + +Local factions emerge from specific district conditions and are authored on demand. The Ring above is the one canonical worked example currently maintained; additional district-scale informal networks will be added as new corridor content is written. ## Corporations diff --git a/wiki/factions/lattice-commission.md b/wiki/factions/lattice-commission.md index 95d193532..051ad87a0 100644 --- a/wiki/factions/lattice-commission.md +++ b/wiki/factions/lattice-commission.md @@ -1,14 +1,14 @@ --- title: "The Lattice Commission" -description: "Regulatory body governing neural lattice technology, imprint protocols, and re-embodiment standards — the detective's employer, the smuggler's adversary" +description: "Regulatory body governing neural lattice technology, imprint protocols, and re-embodiment standards — the Concord Assembly's enforcement arm over the certified hardware substrate" slug: lattice-commission category: faction status: canonical created: 2026-02-12 -updated: 2026-02-13 +updated: 2026-04-22 scope: reach-wide faction_type: regulatory -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -31,7 +31,7 @@ The Lattice Commission is the regulatory body governing neural lattice technolog The Commission is the institution most citizens interact with directly — and the one they have the most complicated feelings about. Everyone agrees lattice regulation is necessary (the alternative is uncontrolled neural modification and identity fraud). Everyone resents the Commission's intrusiveness. The tension between "we need them" and "we hate what they do" defines the Commission's position in Reach society. -In the v0.1 vertical slice, the Commission is the detective's employer and the smuggler's adversary. Commission regulation is what makes lattice smuggling profitable — and what makes lattice smuggling morally ambiguous, because Commission certification costs price most citizens out of enhanced lattice capability. +In a smuggling scenario, the Commission is the detective's employer and the smuggler's adversary. Commission regulation is what makes lattice smuggling profitable — and what makes lattice smuggling morally ambiguous, because Commission certification costs price most citizens out of enhanced lattice capability. --- @@ -51,7 +51,7 @@ In the v0.1 vertical slice, the Commission is the detective's employer and the s - **Anti-forking laws:** Unauthorized imprint duplication is the Reach's most severe crime - **Imprint theft and lattice tampering** investigations - **Re-embodiment protocol violations** (body trafficking, continuity fraud) -- **Unauthorized lattice modification** — Category 3 violation. Fines and potential lattice restriction. This is the law the v0.1 smuggling ring violates. +- **Unauthorized lattice modification** — Category 3 violation. Fines and potential lattice restriction. This is the law the district smuggling ring violates. - **Meridian surveillance** when legally authorized (requires jurisdictional approval) --- @@ -95,7 +95,7 @@ In the v0.1 vertical slice, the Commission is the detective's employer and the s | [Syndics](syndics.md) | Rival | Commission regulates Syndic operations; Syndics lobby for deregulation | | [Guardians of Autonomy](guardians-of-autonomy.md) | Primary antagonist | Guardians' core mission is counter-surveillance; Commission IS the surveillance | | [The Unbound](the-unbound.md) | Jurisdictional tension | Unbound refuse Commission's technological basis; Commission's authority doesn't cleanly extend to them | -| [The Ring](the-ring.md) | Enforcement target | Commission regulation creates the conditions for smuggling; Commission investigators pursue the consequences | +| Informal contraband networks | Enforcement target | Commission regulation creates the conditions for smuggling; Commission investigators pursue the consequences across the corridors | --- @@ -117,29 +117,28 @@ In the v0.1 vertical slice, the Commission is the detective's employer and the s --- -## v0.1 Presence +## Gameplay Presence -The Commission is **directly present** in the v0.1 vertical slice: +The Commission is **structurally present** in any certified-hardware setting. Its jurisdiction reaches every implant, lattice terminal, pharmaceutical production line, and safety-critical manufacturer in tractus-zone space. Presence in practice depends on what a given district is rated for. -- **The detective** is a Commission field investigator (or Commission-licensed operative), assigned to Sova Transit District to investigate suspected smuggling -- **[Sera Venn](../npcs/sera-venn.md)** (THE FRIEND, detective path) is a Commission field tech stationed at Sova -- **Commission kiosk** on Level 3 of the district — unmanned, for compliance reporting. The most recent liaison rotated out 3 months ago; replacement delayed. This institutional gap is what allowed the ring's operations to escalate. -- **Inspection schedule:** Quarterly lattice compliance sweeps, announced 2 weeks in advance. The ring times operations around these. +- **Certification inspectors** visit hardware manufacturers and medical facilities on a risk-weighted schedule: major manufacturers see inspectors quarterly; smaller producers annually or on complaint. +- **Field investigators** — the Commission's enforcement arm — operate across corridor clusters, not single districts. An investigator is more likely to arrive from outside the system than to be stationed in it. +- **Compliance kiosks** in most commercial hubs — unmanned in minor systems, staffed during business hours in major systems. Designed for routine filings and pattern matching, not enforcement. +- **Inspection schedule:** Announced hardware audits run on published calendars (typically quarterly for critical suppliers, annual for others). Unannounced audits happen on complaint, cross-reference anomaly, or investigator initiative. -Commission presence in Sova is intermittent by design: the system is established enough not to warrant permanent enforcement, not important enough for a dedicated office. This gap — the lag between oversight visits — is what makes small-scale smuggling viable. The detective's arrival represents an unscheduled enforcement action that disrupts the district's carefully balanced equilibrium. +Commission presence in any one district is almost always intermittent by design: the Commission is a small regulatory body covering an interstellar commercial zone. The gaps — between inspections, between unit rotations, between certifications lapsing and being noticed — are where compliance drift accumulates and where informal contraband networks take hold. A field investigator's arrival at a district is an unscheduled enforcement action that disrupts whatever balance the local operators had settled into. --- **Cross-References:** - [Concord Assembly](concord-assembly.md) — Legal authority, funding - [Guardians of Autonomy](guardians-of-autonomy.md) — Primary opposition -- [The Ring](the-ring.md) — v0.1 enforcement target -- [Sera Venn](../npcs/sera-venn.md) — THE FRIEND, Commission field tech - D-037: Contraband specification (Commission regulation as root cause) - D-017: Perception modes (lattice tiers as Commission-regulated capability) +- D-193: Commission formal name — "the Lattice Commission" as canonical long-form --- **Status:** Canonical **Created:** 2026-02-12 -**Updated:** 2026-02-12 +**Updated:** 2026-04-22 diff --git a/wiki/factions/syndics.md b/wiki/factions/syndics.md index 4220d347c..e914c9457 100644 --- a/wiki/factions/syndics.md +++ b/wiki/factions/syndics.md @@ -8,7 +8,7 @@ created: 2026-02-12 updated: 2026-02-13 scope: reach-wide faction_type: economic -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -39,7 +39,7 @@ The Syndics' power comes not from ideology or legal authority but from the fact - **Re-embodiment infrastructure:** Most body manufacturing and imprint facilities are Syndic-operated. The [Lattice Commission](lattice-commission.md) regulates them, but the Syndics own the means of resurrection. - **Span gate construction:** Local infrastructure (interplanetary gates) is built by Syndic firms under [Assembly](concord-assembly.md) contract. This gives them leverage over system development. - **Meridian commercial layer:** Advertising, entertainment, commerce, data brokerage. If you access the Meridian, you're using Syndic infrastructure. -- **Shipping and logistics:** Moving goods between systems requires gate access, which requires Syndic shipping networks. Sova Transit District exists because Syndic logistics demands exist. +- **Shipping and logistics:** Moving goods between systems requires gate access, which requires Syndic shipping networks. Freight districts across the Reach exist because Syndic logistics demands exist. --- @@ -103,14 +103,14 @@ The Syndics' power comes not from ideology or legal authority but from the fact --- -## v0.1 Relevance +## Gameplay Relevance -The Syndics are **referenced but not directly present** in the v0.1 vertical slice. Their influence is felt through: +The Syndics are **referenced but not directly present** in a typical district setting. Their influence is felt through: -- **Sova Logistics Consortium:** The district's primary employer is a Syndic operation. Workers at [The Terminal](../locations/van-maanens-star-system/the-terminal.md) work for a Syndic-affiliated freight handling company. Their wages, schedules, and working conditions are Syndic-determined. +- **Logistics consortium:** The district's primary employer is a Syndic operation. Workers at the freight hub work for a Syndic-affiliated freight handling company. Their wages, schedules, and working conditions are Syndic-determined. - **Supply chain:** The contraband moving through the ring originates in Syndic-adjacent manufacturing — aftermarket lattice components and medical-grade neural replacements diverted from Syndic supply chains (D-037). - **Economic pressure:** The wage-to-cost-of-living squeeze that makes smuggling rational is a consequence of Syndic pricing. Medical-grade lattice replacements are expensive because Syndics control the legitimate supply chain. -- **NPC dialogue:** Workers reference "the consortium" or "corporate" as the distant entity that sets their pay and conditions. It's not personal — the Syndics don't have a face in Sova. They have a payroll system. +- **NPC dialogue:** Workers reference "the consortium" or "corporate" as the distant entity that sets their pay and conditions. It's not personal — the Syndics don't have a face in the district. They have a payroll system. The Syndics are the economic water the district swims in. They created the conditions for the smuggling operation without ever intending to, simply by pricing the legitimate market at a level that makes black-market alternatives rational. @@ -119,9 +119,7 @@ The Syndics are the economic water the district swims in. They created the condi **Cross-References:** - [Lattice Commission](lattice-commission.md) — Regulates Syndic operations - [Concord Assembly](concord-assembly.md) — Awards contracts, sets regulation -- [The Terminal](../locations/van-maanens-star-system/the-terminal.md) — Syndic-affiliated employer - D-037: Contraband specification (Syndic supply chain as diversion source) -- D-036: Sova Transit District (Syndic logistics consortium as employer) --- diff --git a/wiki/factions/the-ring.md b/wiki/factions/the-ring.md index e7a5a7fbf..b4a4701a4 100644 --- a/wiki/factions/the-ring.md +++ b/wiki/factions/the-ring.md @@ -1,6 +1,6 @@ --- -title: "The Ring (Sova Smuggling Operation)" -description: "Informal smuggling network in Sova Transit District — structure, members, cargo, operations, and community role in v0.1" +title: "The Ring" +description: "Informal contraband network in a freight district — structure, cargo, community role, and the game's central moral question" slug: the-ring category: faction status: canonical @@ -8,18 +8,18 @@ created: 2026-02-12 updated: 2026-02-13 scope: local faction_type: criminal -tags: [v0.1] +tags: [] decision_refs: [D-037] cross_refs: [] --- -# The Ring (Sova Smuggling Operation) +# The Ring **Type:** Faction — Informal Criminal Network **Status:** Canonical -**Scope:** Local (Sova Transit District) +**Scope:** Local (district-level) **Governance Role:** None (informal economy) -**Headquarters:** None (distributed across district, coordination in [maintenance corridors](../locations/van-maanens-star-system/maintenance-corridors.md)) +**Headquarters:** None (distributed across district, coordination in maintenance corridors) **Structure:** Flat hierarchy, informal, no official name **Informal Names:** "The arrangement," "the side work," "helping out" — NPCs refer to it obliquely, never directly @@ -27,9 +27,9 @@ cross_refs: [] ## Overview -The Ring is not an organization. It is an arrangement — a network of logistics workers in Sova Transit District who use their freight access to move contraband through the span gate system. The ring has no charter, no insignia, no recruitment process. It exists because the economic conditions in the district make smuggling a rational supplement to legitimate income, and because the community has collectively decided that what happens between the wall layers is not their concern. +The Ring is not an organization. It is an arrangement — a network of logistics workers in a freight district who use their freight access to move contraband through the span gate system. The ring has no charter, no insignia, no recruitment process. It exists because the economic conditions in the district make smuggling a rational supplement to legitimate income, and because the community has collectively decided that what happens between the wall layers is not their concern. -The ring has been operating for approximately two years. In that time, it has become part of the district's unofficial economy. People know, or suspect, or deliberately don't ask. The ring isn't violent. It isn't chaotic. It's a business that runs alongside the legitimate one, and most of the district's 800 residents have decided that's fine. +The ring has typically been operating for approximately two years before the player arrives. In that time, it has become part of the district's unofficial economy. People know, or suspect, or deliberately don't ask. The ring isn't violent. It isn't chaotic. It's a business that runs alongside the legitimate one, and most of the district's residents have decided that's fine. This is the social fabric the detective walks into. This is the life the smuggler protects. @@ -51,30 +51,29 @@ Three categories of contraband, in order of volume (D-037): **Flat hierarchy. No titles. No formal roles.** People do what they're good at. -| Function | NPC | How It Works | -|----------|-----|-------------| -| Off-station coordination | Nils Davan (off-stage, Kael's older sibling) | Gives orders, arranges incoming shipments, communicates through dead drops | -| Local coordination | [Devra](../npcs/devra.md) | Manages operations, maintains off-station contacts, legitimate business front at bar | -| Scheduling cover | [Voss](../npcs/voss.md) | Adjusts shift schedules to create coverage gaps. Takes a cut. | -| Cargo handling | [Kael Davan](../npcs/kael-davan.md) | Physically routes flagged containers to holding area during legitimate shift work | -| Inspection bypass | [Torek Lintar](../npcs/torek-lintar.md) | Compromised inspector — looks away during inspection of flagged containers | -| Courier | [Renn](../npcs/renn.md) | Transfers contraband from Terminal to [Corridor B-7](../locations/van-maanens-star-system/maintenance-corridors.md) during night shifts | -| Distribution | [Pell](../npcs/pell.md) | Dead drop pickups, local distribution. Wavering — considering cooperation with authorities. | -| Lookout | [Tav](../npcs/tav.md) | Watches entry points during corridor operations | -| Handoff point | [Lera Sessik](../npcs/lera-sessik.md) | [The Last Shift](../locations/van-maanens-star-system/the-last-shift.md) back room serves as a handoff point. Lera knows. Lera doesn't ask. | -| Off-station fence | [Sabel](../npcs/sabel.md) | Receives and distributes contraband to end users off-station | +| Function | Role | How It Works | +|----------|------|-------------| +| Off-station coordination | Off-stage handler | Gives orders, arranges incoming shipments, communicates through dead drops | +| Local coordination | On-station coordinator | Manages operations, maintains off-station contacts, legitimate business front | +| Scheduling cover | Shift supervisor | Adjusts shift schedules to create coverage gaps. Takes a cut. | +| Cargo handling | Dock worker (THE FRIEND) | Physically routes flagged containers to holding area during legitimate shift work | +| Inspection bypass | Compromised inspector | Looks away during inspection of flagged containers | +| Courier | Night shift worker | Transfers contraband from terminal to maintenance corridor during night shifts | +| Distribution | Peripheral member | Dead drop pickups, local distribution. May waver under pressure. | +| Lookout | Peripheral member | Watches entry points during corridor operations | +| Handoff point | Bar owner/operator | District bar back room serves as a handoff point. Knows. Doesn't ask. | +| Off-station fence | Off-station contact | Receives and distributes contraband to end users off-station | --- ## How It Works 1. Contraband arrives in legitimate freight shipments (mixed with legal cargo, doctored manifests) -2. [Torek](../npcs/torek-lintar.md) looks away during inspection at The Terminal -3. [Kael](../npcs/kael-davan.md) and others route flagged containers to temporary holding area -4. During night shift (01:00-04:00), [Renn](../npcs/renn.md) transfers cargo through the break room service hatch to [Corridor B-7](../locations/van-maanens-star-system/maintenance-corridors.md) -5. [Devra](../npcs/devra.md) coordinates with [Sabel](../npcs/sabel.md) for off-station distribution -6. Small items go to the dead drop alcove for [Pell](../npcs/pell.md) to collect -7. Larger items move through Lera's back room at [The Last Shift](../locations/van-maanens-star-system/the-last-shift.md) +2. A compromised inspector looks away during terminal inspection of flagged containers +3. Cargo handlers route flagged containers to a temporary holding area during legitimate shift work +4. During night shift (01:00-04:00), a courier transfers cargo through the break room service hatch to a maintenance corridor +5. The local coordinator arranges off-station distribution +6. Small items go to dead drop alcoves; larger items move through the district bar's back room **Timing:** Operations occur every third night shift rotation, during shift transitions when oversight is thinnest. Post-inspection windows (2-3 days after scheduled Commission sweeps) are preferred for larger shipments. @@ -102,10 +101,10 @@ This is why the community tolerates the ring. Not because people are criminal or The ring has been operating long enough that cracks are forming: -- **Spending tells:** [Torek](../npcs/torek-lintar.md) has been spending visibly beyond a standard dock worker's income — new jacket, buying rounds, lattice accessories. This is the most observable vulnerability. -- **Wavering members:** [Pell](../npcs/pell.md) is considering cooperation with authorities. Their increasingly erratic behavior (shorter dead drop visits, social withdrawal) is observable. -- **Internal suspicion:** [Renn](../npcs/renn.md) suspects Pell is unreliable and has communicated this to Devra/Nils. Internal tension creates observable social friction. -- **Escalation pressure:** Nils (off-station) is pushing for higher volume. Local operators want to keep things small. This creates friction between ambition and safety. +- **Spending tells:** Some ring members spend visibly beyond a standard worker's income — new purchases, buying rounds, lattice accessories. Observable by anyone paying attention. +- **Wavering members:** At least one peripheral member is considering cooperation with authorities. Increasingly erratic behavior (shorter dead drop visits, social withdrawal) is observable. +- **Internal suspicion:** Other ring members suspect the wavering member and have communicated this up the chain. Internal tension creates observable social friction. +- **Escalation pressure:** Off-station coordination is pushing for higher volume. Local operators want to keep things small. This creates friction between ambition and safety. - **The detective:** An unscheduled enforcement presence in a district accustomed to intermittent oversight. The detective's arrival is the external pressure that tests every crack. --- @@ -123,7 +122,7 @@ The ring has been operating long enough that cracks are forming: ### Perception Differences -**Smuggler sees:** Family. Colleagues. The people who make the arrangement work. Each member has a name, a history, a reason for being involved. Voss has a daughter who needed lattice surgery. Kael's doing it for Naia. Renn needs the money. The ring isn't a criminal organization — it's mutual aid that happens to be illegal. +**Smuggler sees:** Family. Colleagues. The people who make the arrangement work. Each member has a name, a history, a reason for being involved. The ring isn't a criminal organization — it's mutual aid that happens to be illegal. **Detective sees:** A network. Nodes and connections. Behavioral patterns that suggest coordination. Manifest discrepancies that suggest doctoring. Financial anomalies that suggest supplemental income. The ring is a case — a puzzle to be solved, a structure to be mapped, evidence to be assembled. @@ -142,16 +141,14 @@ The ring has no clean answer. That's the point. --- **Cross-References:** -- [Sova Transit District](../world/sova-transit-district.md) — The ring's territory -- [The Terminal](../locations/van-maanens-star-system/the-terminal.md) — Where cargo enters the ring's pipeline -- [The Last Shift](../locations/van-maanens-star-system/the-last-shift.md) — Handoff point, social coordination -- [Maintenance Corridors](../locations/van-maanens-star-system/maintenance-corridors.md) — Physical smuggling route -- [NPC Index](../npcs/index.md) — Ring member profiles +- [Lattice Components (Contraband)](../contraband/lattice-components.md) — primary contraband type +- [Medical-Grade Replacements (Contraband)](../contraband/medical-grade-replacements.md) — secondary contraband type +- [Severance Equipment (Contraband)](../contraband/severance-equipment.md) — tertiary contraband type - D-037: Contraband specification - D-027: Vertical slice definition --- -**Status:** Canonical — v0.1 core narrative element +**Status:** Canonical — informal contraband network archetype **Created:** 2026-02-12 -**Updated:** 2026-02-12 +**Updated:** 2026-02-13 diff --git a/wiki/factions/the-unbound.md b/wiki/factions/the-unbound.md index 34ee2843e..88558b3e3 100644 --- a/wiki/factions/the-unbound.md +++ b/wiki/factions/the-unbound.md @@ -8,7 +8,7 @@ created: 2026-02-12 updated: 2026-02-13 scope: reach-wide faction_type: cultural -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -95,12 +95,12 @@ The Unbound also represent the only people in the Reach who face permanent death --- -## v0.1 Relevance +## Gameplay Relevance -The Unbound are **peripherally present** in the v0.1 vertical slice: +The Unbound are **peripherally present** in a freight district setting: -- **A few district residents are Unbound by choice** — mostly older workers who came from frontier backgrounds. They're known, accepted, and unremarkable. Nobody makes a fuss about it. This is consistent with Van Maanen's Star culture: mind your business. -- **Olin** (drifter/new arrival at [The Last Shift](../locations/van-maanens-star-system/the-last-shift.md)) may or may not be Unbound. Olin's lattice status is ambiguous — they don't have a detectable lattice signature, which could mean they're Unbound, or that they're using Severance spoofing technology, or that their lattice is non-standard. This ambiguity is load-bearing for the detective's investigation: an absent lattice signature is data, and the interpretation of that data depends on the detective's assumptions. +- **A few district residents are Unbound by choice** — mostly older workers who came from frontier backgrounds. They're known, accepted, and unremarkable. Nobody makes a fuss about it. Mid-Reach working culture: mind your business. +- **An ambiguous arrival** (drifter or new resident at the bar) may or may not be Unbound. An absent lattice signature could mean they're Unbound, or that they're using Severance spoofing technology, or that their lattice is non-standard. This ambiguity is load-bearing for the detective's investigation: an absent lattice signature is data, and the interpretation of that data depends on the detective's assumptions. - **Moral context:** The Unbound's existence enriches the contraband question. Some of the ring's medical-grade lattice components serve people transitioning *into* lattice use from Unbound status — or people whose lattices are failing and who face a choice between expensive institutional replacement and becoming effectively Unbound. The Unbound aren't just a philosophical position; they're the alternative that lattice smuggling helps people avoid. - **The detective's analytical lattice** cannot automatically identify Unbound citizens. In a district where the detective's primary investigative tool is lattice-mediated perception, Unbound individuals are blind spots — people who exist outside the detective's institutional gaze. This is mechanically significant. @@ -109,7 +109,6 @@ The Unbound are **peripherally present** in the v0.1 vertical slice: **Cross-References:** - [Lattice Commission](lattice-commission.md) — Jurisdictional tension - [Guardians of Autonomy](guardians-of-autonomy.md) — Ideological allies -- [Olin](../npcs/olin.md) — Ambiguous lattice status (v0.1) - D-017: Perception modes (Unbound exist outside lattice-mediated perception) - D-037: Contraband specification (medical context for lattice access) - Round 16: Full faction development diff --git a/wiki/factions/veil-institute.md b/wiki/factions/veil-institute.md index 097407d6f..2a2582d0d 100644 --- a/wiki/factions/veil-institute.md +++ b/wiki/factions/veil-institute.md @@ -8,7 +8,7 @@ created: 2026-02-12 updated: 2026-02-13 scope: reach-wide faction_type: cultural -tags: [v0.1] +tags: [] decision_refs: [] cross_refs: [] --- @@ -105,15 +105,15 @@ This tension — between knowledge and disclosure, between research autonomy and --- -## v0.1 Relevance +## Gameplay Relevance -The Veil Institute is **not present** in the v0.1 vertical slice. Its relevance is entirely contextual: +The Veil Institute is **not directly present** in a typical district setting. Its relevance is contextual: -- **Gate infrastructure:** The Founder Gates and span gates that the district depends on exist because the Institute activated them. The span gate hum that defines Sova's atmosphere is, ultimately, an Institute-managed phenomenon. -- **Future narrative threads:** The Severance technology in the ring's contraband (D-037) hints at Guardian operations, which hints at institutional secrets the Guardians are trying to expose, which hints at the Institute. The thread is there for future development but not pulled in v0.1. +- **Gate infrastructure:** The Founder Gates and span gates that the district depends on exist because the Institute activated them. The span gate hum that defines any freight district's atmosphere is, ultimately, an Institute-managed phenomenon. +- **Future narrative threads:** The Severance technology in the ring's contraband (D-037) hints at Guardian operations, which hints at institutional secrets the Guardians are trying to expose, which hints at the Institute. The thread is there for development. - **Worldbuilding depth:** NPC dialogue might reference "the Institute" in the same way people reference NASA — a distant, prestigious, vaguely mysterious institution that does important things nobody fully understands. -The Institute is important for the full game's narrative architecture. For v0.1, it provides background depth — the sense that the universe extends beyond what the player can see. +The Institute provides background depth — the sense that the universe extends beyond what the player can see. --- diff --git a/wiki/glossary.md b/wiki/glossary.md index cafc3e2d7..f0237efbc 100644 --- a/wiki/glossary.md +++ b/wiki/glossary.md @@ -15,9 +15,8 @@ Quick-reference for content authors. Canonical forms are **bolded**. Keep this d **Concord Assembly** — the governing body of the Reach. Headquartered at Gateway (GJ 244A / Sirius-equivalent). Issues the tractus. Regulates commerce through the Commission. The establishment faction. NOT: "the Concord" alone is not canonical as a standalone name. "the Assembly" is acceptable shorthand in established context. -**The Commission** — regulatory authority operating under the Concord Assembly. Certifies implant hardware, medical equipment, pharmaceutical production, and safety-critical manufactured goods. Tractus-denominated fees. No authority in Compact member systems. -NOTE: Full formal name unresolved — see Q-095 in decisions/questions-content.md. Use "the Commission" until resolved. -NOT: "Concord Commission," "Assembly Commission," "the Regulatory Commission," "Lattice Commission" +**The Commission** / **the Lattice Commission** — regulatory authority operating under the Concord Assembly. Certifies implant hardware, medical equipment, pharmaceutical production, and safety-critical manufactured goods. Tractus-denominated fees. No authority in Compact member systems. Formal long-form: **"the Lattice Commission"** (required for POI signage, legal text, wiki headers, formal contexts). Short form "the Commission" is standard in prose — unambiguous in context. Resolved by D-193 (2026-04-21). +NOT: "Concord Commission," "Assembly Commission," "the Regulatory Commission" **Compact of Westphalia** — political-economic bloc based in the west_reach (dominant from hop 6+ outward). Issues the Mark. Members refuse gate energy opt-in (D-186) and operate the Compact Financial Exchange. Structurally opposed to tractus-zone compliance costs. NOT: "the Westphalia Compact," "Westphalian Compact," "the West Compact" @@ -94,10 +93,7 @@ System ID: `GJ 380` **Lendel** — GJ 380c. The inner core capital. Primary settlement of the Groombridge system. Three major Tier-1 corporations are headquartered here. "Inner core" rather than "inner corridor" for Lendel specifically — it is the most central inhabited body in the Reach. -**Sova Transit District** — the canonical v0.1 setting (D-036). A freight logistics hub on Station Sova in Van Maanen's Star (GJ 35), also known as the Vuurkloof system. Working-class, pragmatic, 40-year-old prefab-modular-retrofitted freight district. -NOT: "Sova District," "the Sova Hub," "Transit Sova" - -**Van Maanen's Star** — GJ 35. Canonical in-game system name: Vuurkloof (Afrikaans: "fire ravine"). DG white dwarf. south_reach, hop 6 from Gateway. Through-route between Karoo (GJ 222A) and Kumasi (GJ 86). Wave_3 settlement, ~300 years. ~340K population on GJ35c (Vuurkloof) + Vuurkloof Horizon station. Industries: geothermal energy, hospitality, financial services. Station Sova is the primary logistics station. +**Van Maanen's Star** — GJ 35. Canonical in-game system name: Vuurkloof (Afrikaans: "fire ravine"). DG white dwarf. south_reach, hop 6 from Gateway. Through-route between Karoo (GJ 222A) and Kumasi (GJ 86). Wave_3 settlement, ~300 years. ~340K population on GJ35c (Vuurkloof) + Vuurkloof Horizon station. Industries: geothermal energy, hospitality, financial services. System ID: `GJ 35` NOT: "Krenn System" — this drift originated in an old sprint briefing; not canonical. NOT: `GJ 280A` — wrong system ID. diff --git a/wiki/index.md b/wiki/index.md index 4163b23f6..7b7c52fa8 100644 --- a/wiki/index.md +++ b/wiki/index.md @@ -2,7 +2,6 @@ **Project:** The Settled Reach (top-down immersive sim) **Setting:** Original science fiction IP -**v0.1 Vertical Slice:** Sova Transit District, Van Maanen's Star --- @@ -16,25 +15,11 @@ - **[Technology](technology/index.md)** — Neural lattice, gate infrastructure, clone transfer, severance tech. - **[Contraband](contraband/index.md)** — Illegal and restricted goods. -### v0.1 Setting - -- **[Van Maanen's Star](star-systems/van-maanens-star/index.md)** — Mid-Reach system, v0.1 vertical slice location. - - [Station Sova](star-systems/van-maanens-star/sova/index.md) — Logistics hub, ~12k population. - - [Sova Transit District](star-systems/van-maanens-star/sova/transit/index.md) — Playable area. - -### Characters - -- **[Character Index](characters/index.md)** — Full roster with tier assignments. -- Tier 1 (FRIEND): [Kael Davan](characters/kael-davan.md), [Sera Venn](characters/sera-venn.md) -- Tier 2 (Triangle): Voss, Lera, Torek, Devra, Maret, Resha, Harek, Naia, Renn, Pell, Drin -- Tier 3 (Flat): Sess, Olin, Sabel, Tav -- Off-Stage: [Nils Davan](characters/nils-davan.md) - ### Reference - **[Glossary](glossary.md)** — Canonical proper nouns, factions, currencies, locations, terminology. Quick-reference to avoid drift. Start here. - **[Concepts](concepts/index.md)** — Fact catalog, entity attributes, relationship states. -- **[Triangles](triangles/index.md)** — Relationship structures ([Hub Power](triangles/hub-power.md)). +- **[Triangles](triangles/index.md)** — Relationship structures and social dynamics. - **[Authoring Guides](authoring/)** — Monologue guide, cultural generation, content templates. - **[Full Catalog](star-systems/catalog.md)** — All 301 systems by GJ designation. @@ -54,7 +39,3 @@ - [GOVERNANCE.md](GOVERNANCE.md) — Ownership, status lifecycle, contribution rules. - [_templates/](_templates/) — One template per category. - ---- - -**v0.1 Scope:** 1 system, 1 station, 1 district, 3 social sites, 18 NPCs, 5 triangles, 2 playable characters. diff --git a/wiki/star-systems/GJ-222A/gttr.md b/wiki/star-systems/GJ-222A/gttr.md index 8fa4339a8..65db3fa46 100644 --- a/wiki/star-systems/GJ-222A/gttr.md +++ b/wiki/star-systems/GJ-222A/gttr.md @@ -16,6 +16,6 @@ The Guardians of Autonomy have a chapter in the manufacturing cluster's labor di ## Practical Information -Karoo is five hops from Gateway with two gate apertures — a through-route between Caparica and Van Maanen's Star. The fabrication cluster produces replacement parts and maintenance consumables, primarily for the node's own use. Food comes in from Caparica. Consumer goods arrive through the Altair corridor. The G0V primary makes the surface livable without any particular effort, which is the kind of advantage that looks like it should be sufficient and turns out not to be. +Karoo is five hops from Gateway with two gate apertures — a through-route between Caparica and Vuurkloof. The fabrication cluster produces replacement parts and maintenance consumables, primarily for the node's own use. Food comes in from Caparica. Consumer goods arrive through the Altair corridor. The G0V primary makes the surface livable without any particular effort, which is the kind of advantage that looks like it should be sufficient and turns out not to be. Adams of the Guide rates Karoo: *Comfortable. Do Not Examine Why.* diff --git a/wiki/star-systems/GJ-222A/index.md b/wiki/star-systems/GJ-222A/index.md index 12551a4cb..c8b48818c 100644 --- a/wiki/star-systems/GJ-222A/index.md +++ b/wiki/star-systems/GJ-222A/index.md @@ -21,7 +21,7 @@ ## Supply Dependency -Karoo does not produce much and does not need to. Its economic identity is transit and maintenance — the system sits at the midpoint of the south_reach corridor between Caparica at hop 4 and Van Maanen's Star at hop 6, and transit logistics are what the system does. Gate Corporation operates a maintenance node here: not a full operational base, but a servicing facility with the technical capacity to handle aperture calibration, gate ferry overhaul, and the scheduled maintenance operations that through-route positions require. The node employs a rotating staff cadre and anchors the small permanent settlement that exists at Karoo at all. +Karoo does not produce much and does not need to. Its economic identity is transit and maintenance — the system sits at the midpoint of the south_reach corridor between Caparica at hop 4 and Vuurkloof at hop 6, and transit logistics are what the system does. Gate Corporation operates a maintenance node here: not a full operational base, but a servicing facility with the technical capacity to handle aperture calibration, gate ferry overhaul, and the scheduled maintenance operations that through-route positions require. The node employs a rotating staff cadre and anchors the small permanent settlement that exists at Karoo at all. Light manufacturing followed the transit function. A fabrication cluster near the Gate Corp node produces replacement parts and maintenance consumables, supplying the node itself and selling surplus to freight operators transiting the corridor. The cluster is not large enough to make Karoo an industrial system in any meaningful sense — it serves the maintenance economy that the Gate Corp presence created, not a standalone export market. What Karoo imports is everything else: food from Caparica, consumer goods and raw materials through the Altair corridor. The through-route topology means the system always has freight moving through it; extracting value from that movement is the permanent economic opportunity the Karoo settlement has worked with for as long as it has existed. @@ -47,7 +47,7 @@ The community that built itself around a Gate Corporation maintenance node has n `star_type: G0V` at 28.3 light-years makes Karoo's primary a near-solar-type star — slightly hotter and more luminous than Sol, with a habitable zone broadly comparable. This is not a hostile stellar environment, and the habitable body's conditions are workable rather than punishing. The settlement's character does not come from environmental adversity; it comes from economic contingency. The system is physically comfortable and institutionally precarious. That combination produces a particular kind of community psychology: people who settled here voluntarily, under reasonable conditions, and have developed a chronic low-level awareness that reasonable conditions are not the same as stable ones. -`gate_topology: through_route` with 2 apertures is the configuration that gave Karoo its economic function — one aperture toward Caparica and the south_reach inner corridor, one aperture toward Van Maanen's Star and the corridor beyond. Through-routes are inherently transit-focused; they have no topological reason to be destinations in themselves. Karoo has made itself a destination by providing a service that through-route traffic needs. +`gate_topology: through_route` with 2 apertures is the configuration that gave Karoo its economic function — one aperture toward Caparica and the south_reach inner corridor, one aperture toward Vuurkloof and the corridor beyond. Through-routes are inherently transit-focused; they have no topological reason to be destinations in themselves. Karoo has made itself a destination by providing a service that through-route traffic needs. ## Celestial Bodies diff --git a/wiki/star-systems/GJ-3250/index.md b/wiki/star-systems/GJ-3250/index.md index 2675b3f60..968186c66 100644 --- a/wiki/star-systems/GJ-3250/index.md +++ b/wiki/star-systems/GJ-3250/index.md @@ -49,7 +49,7 @@ The last generation that remembers when the freight ships ran regularly is still `star_type: k-m` at 40.9 light-years marks Rionegro as a late-alphabet stellar type at significant distance — the farthest system in this corridor, with a primary that is dimmer and cooler than Kumasi's K0V neighbor. The agricultural marginal character is consistent with the stellar environment: lower luminosity, closer habitable zone, shorter effective growing season. Wave_4 agricultural settlement on a system at this stellar type is an optimistic interpretation of viable, and the Syndic network's prospectors who filed the founding land grant were working with that optimism. The optimism was not wrong; it was incomplete. -`gate_topology: dead_end` at hop 8 is the topological expression of Rionegro's isolation. One aperture, opening toward Kumasi — which is itself only reachable by continuing back through Van Maanen's Star and the long corridor to the institutional core. The dead_end configuration means no through-traffic, no reason for any system to transit Rionegro en route to anywhere. The population that remains here is here because they chose to be, not because the system sits on a useful path. This is the existential character of the deep south_reach's terminus: a place you go to on purpose or not at all. +`gate_topology: dead_end` at hop 8 is the topological expression of Rionegro's isolation. One aperture, opening toward Kumasi — which is itself only reachable by continuing back through Vuurkloof and the long corridor to the institutional core. The dead_end configuration means no through-traffic, no reason for any system to transit Rionegro en route to anywhere. The population that remains here is here because they chose to be, not because the system sits on a useful path. This is the existential character of the deep south_reach's terminus: a place you go to on purpose or not at all. ## Celestial Bodies diff --git a/wiki/star-systems/GJ-35/sova/index.md b/wiki/star-systems/GJ-35/sova/index.md deleted file mode 100644 index 4eed52ede..000000000 --- a/wiki/star-systems/GJ-35/sova/index.md +++ /dev/null @@ -1,207 +0,0 @@ ---- -title: "Station Sova" -description: "Freight logistics hub in the Van Maanen's Star — 12k population, layered construction hiding architectural secrets, and the v0.1 setting" -slug: sova -category: station -status: canonical -created: 2026-02-11 -updated: 2026-02-13 -parent_system: van-maanens-star -population: 12000 -station_type: logistics -districts: [transit] -tags: [v0.1] -decision_refs: [D-036] -cross_refs: [van-maanens-star, transit] ---- - -# Station Sova - -**Type:** Space Station -**Status:** Canonical -**System:** [Van Maanen's Star](../index.md) -**Classification:** Logistics Hub -**Population:** ~12,000 -**Construction Era:** Mid-settlement (~140 years ago) -**Operational Age:** ~140 years, with continuous retrofitting - ---- - -## Overview - -Station Sova is a freight logistics hub in Van Maanen's Star, positioned gate-adjacent for optimal cargo transfer. It's not a destination — it's infrastructure. People live on Sova because the work is here, not because they chose the station. - -Sova is the kind of place that looks the same every day: predictable shifts, predictable routines, predictable problems. The extraordinary thing about Sova is how much can happen beneath that predictability. - ---- - -## Physical Structure - -**Construction Type:** Modular prefab base (original core ~140 years old) + layered retrofits (most recent ~40 years ago) - -The station shows its age. The original core is solid but utilitarian — industrial prefab modules designed for function, not comfort. Successive generations added capacity through retrofitting: new sections bolted onto old, interior partitions creating rooms within older bays, maintenance corridors that don't quite align between construction eras. - -This layered construction creates architectural secrets: spaces between wall layers, service corridors no longer on official schematics, dead zones where old and new construction meet imperfectly. These gaps are where smuggling infrastructure lives. - -**Layout:** -- **Core Spindle:** Original construction, central spine with radial arms -- **Freight Bays:** Ring 1 (outermost), gate-adjacent, high-traffic -- **Residential/Commercial:** Ring 2 (middle), mixed-use districts -- **Operations/Services:** Ring 3 (innermost), administration and maintenance - -[Sova Transit District](transit/index.md) occupies a section of Ring 1 — freight bay retrofitted for logistics operations + worker amenities. - ---- - -## Population & Demographics - -**Total Population:** ~12,000 - -**Breakdown:** -- Logistics workers (freight handlers, dock inspectors, schedulers): ~4,000 -- Service sector (bars, food, maintenance, retail): ~3,000 -- Station operations (administration, security, technical): ~2,000 -- Residential (families, retired workers, dependents): ~2,500 -- Transient (short-term contractors, travelers): ~500 - -**Cultural Composition:** Predominantly Van Maanen's Star culture (working-class pragmatic, first-name-primary, reserved). Small populations from connected systems, identifiable by naming patterns and accent. - -**Turnover:** Low. People come to Sova for steady work and stay because moving costs money. Multi-generational families are common. - ---- - -## Economy - -**Primary Function:** Freight logistics — cargo transferred between span gates, sorted, repackaged, forwarded - -**Economic Model:** The station is profitable but not prosperous. Wages are steady, cost of living is slightly above wage level, creating permanent mild squeeze. Most households are one unexpected expense away from financial stress. - -This economic reality drives three social patterns: -1. **Informal labor solidarity** — workers cover for each other because everyone knows the squeeze -2. **Grey-market tolerance** — small-scale smuggling is community immune system, not crime -3. **Risk-averse pragmatism** — people make calculated risks (like smuggling) but avoid reckless ones (like violence) - -**Economic Drivers:** -- Gate transit fees (Concord Assembly revenue, station sees fraction) -- Freight handling contracts (Syndic supply chains) -- Service sector (bars, food, entertainment for workers) -- Station maintenance contracts (ongoing retrofitting) - ---- - -## Governance & Security - -**Station Administrator:** Appointed by Van Maanen's Star Authority (Concord Assembly jurisdiction) -**Security:** Sova Station Security (local force, ~150 officers, primarily concerned with safety/accidents, not criminal investigation) -**Commission Presence:** Rotating liaisons (3-6 month assignments), no permanent office. Most recent liaison rotated out 3 months ago; replacement delayed. - -**Law Enforcement Gaps:** -This is critical for v0.1 narrative: Sova has *security* (prevent accidents, respond to violence) but minimal *law enforcement* (investigate contraband). The Commission sends liaisons for lattice compliance inspections, but those visits are scheduled and infrequent. - -The detective's arrival in [Sova Transit District](transit/index.md) represents an unusual enforcement presence — something has flagged the district for investigation, and institutional attention is now focused where it usually isn't. - ---- - -## Districts - -Station Sova has 7 named districts. Only **Sova Transit District** is developed for v0.1. - -1. **Sova Transit District** — Freight logistics, worker amenities, bar district ([full profile](transit/index.md)) -2. **Central Spindle District** — Administration, station operations -3. **Residential Radial A** — Long-term housing, schools, medical -4. **Residential Radial B** — Short-term housing, transient workers -5. **Commercial Ring** — Retail, entertainment, higher-end services -6. **Industrial Annex** — Repair bays, fabrication, heavy maintenance -7. **Docking Approach** — Gate-adjacent, short-term berths, passenger processing - -**Transit Connections:** Internal tram system connects all districts. Transit District <-> Central Spindle is 8 minutes. District <-> Residential A/B is 5 minutes. - ---- - -## Infrastructure - -**Meridian Coverage:** -- **High-traffic areas (freight bays, commercial, admin):** Comprehensive, real-time -- **Residential areas:** Standard, slight lag -- **Older sections (maintenance corridors, between-wall spaces):** Degraded or absent - -This coverage gradient is load-bearing for smuggling: off-Meridian coordination happens in the gaps. - -**Span Gate Access:** -- Sova Station <-> Van Maanen's Star Prime Surface Depot (primary freight route) -- Sova Station <-> Orbital Manufacturing Platform 3 (component transfer) -- Gate cycles every 4-6 minutes during peak shifts, every 12-15 minutes off-peak - -**Power & Life Support:** -- Fusion reactors (original core), reliable but aging -- Atmosphere recycling (continuous, noticeable ventilation hum) -- Gravity (spin gravity in rings, microgravity in core — most social life happens in Ring 2 at 0.7g) - ---- - -## Atmosphere & Sensory Details - -**Sound:** -- Span gate hum (omnipresent, pitch varies with transit volume) -- Ventilation systems (white noise, occasional rattle) -- Cargo machinery in freight districts (clanking, scanner beeps, conveyor hum) -- Foot traffic (metal grating, echoes in corridors) - -**Smell:** -- Recycled air (faint metallic undertone) -- Industrial lubricant (near freight bays) -- Cooking (residential and bar districts) -- Ozone (post-gate-transit, fades quickly) - -**Lighting:** -- Functional industrial fixtures (bright in work areas, dim in corridors) -- Mixed color temperatures (newer sections: cool white, older sections: warm amber from aging fixtures) -- Emergency lighting in maintenance corridors (low red) - -**Temperature:** Climate-controlled, comfortable. Older sections run slightly cooler (aging environmental systems). Workers dress in layers. - ---- - -## Key Locations (v0.1 Scope) - -See [Sova Transit District](transit/index.md) for full v0.1 location details: -- [The Terminal](transit/the-terminal.md) (logistics hub) -- [The Last Shift](transit/the-last-shift.md) (bar) -- [Maintenance Corridor B-7](transit/maintenance-corridors.md) (smuggling space) - ---- - -## Worldbuilding Notes - -**Why Sova Works:** -- **Scale:** 12k population is large enough to feel like a community, small enough that patterns are noticeable -- **Economic pressure:** Generates rational motivation for smuggling without desperation -- **Institutional thinness:** Security exists, enforcement is intermittent — creates operational space -- **Architectural complexity:** Layered construction provides physical infrastructure for hidden activity -- **Cultural cohesion:** Turnover is low, social networks are established, outsiders are visible - -**The Sova Feeling:** "We all know each other. We all know what goes on. We all benefit just enough not to make trouble." - ---- - -## Mechanical Integration - -**Knowledge Graph Flags:** -- `location.sova_station` (KnowsOf: both characters know they're on Sova) -- `location.sova_layout` (KnowsDetails: smuggler knows routes, detective has station map) -- `system.security_presence` (KnowsDetails: smuggler knows security patterns, detective knows enforcement gaps) - -**v0.1 Scope Limitation:** The player never leaves Sova Transit District. Other districts are referenced in dialogue/monologue but not traversable. - ---- - -**Cross-References:** -- [Van Maanen's Star](../index.md) — Star system profile -- [Sova Transit District](transit/index.md) — v0.1 playable district -- D-036: Sova as v0.1 setting - ---- - -**Status:** Canonical -**Created:** 2026-02-11 -**Updated:** 2026-02-12 diff --git a/wiki/star-systems/GJ-35/sova/transit/index.md b/wiki/star-systems/GJ-35/sova/transit/index.md deleted file mode 100644 index cc10058b5..000000000 --- a/wiki/star-systems/GJ-35/sova/transit/index.md +++ /dev/null @@ -1,278 +0,0 @@ ---- -title: "Sova Transit District" -description: "The v0.1 vertical slice setting — 800-person freight district with three social sites, 17 NPCs, and a smuggling ring hiding in plain sight" -slug: transit -category: district -status: canonical -created: 2026-02-11 -updated: 2026-02-13 -parent_station: sova -parent_system: van-maanens-star -population: 800 -age: 40 -construction: mixed -locations: [the-terminal, the-last-shift, maintenance-corridors] -social_sites: [logistics-hub, bar, smuggling-ring] -npc_count: 17 -tags: [v0.1, vertical-slice] -decision_refs: [D-036, D-027] -cross_refs: [van-maanens-star, sova, the-ring] ---- - -# Sova Transit District - -**Type:** Station District -**Status:** Canonical -**Station:** [Station Sova](../index.md) -**System:** [Van Maanen's Star](../../index.md) -**District Age:** ~40 years (most recent major retrofit) -**Population:** ~800 (workers + residents) -**Construction:** Prefab-modular base with layered retrofits - ---- - -## Overview - -Sova Transit District is a freight logistics district on Station Sova — the v0.1 vertical slice setting. This is where the game happens. Everything the player sees, everyone they meet, every routine they observe exists within this 40-year-old retrofitted freight hub and its worker amenities. - -**The District's Character:** Quotidian-with-undertow. - -Comfortable enough to be complacent. Tight enough that an extra income source is tempting. People work here, drink here, live here. Routines are predictable. Faces are familiar. And beneath that predictability, a smuggling operation runs smoothly because the community has collectively decided not to notice. - ---- - -## Physical Layout - -**Size:** ~800 meters circumferential span (Ring 1 section), 3 vertical levels - -**Construction History:** -1. **Original (140 years ago):** Freight bay with basic cargo handling -2. **First retrofit (~80 years ago):** Interior partitions created office spaces, break rooms -3. **Second retrofit (~40 years ago):** Worker amenities added (bar, residential pods), logistics hub expanded -4. **Ongoing maintenance:** Continuous patching, creating architectural complexity - -**Spatial Structure:** -- **Level 1 (lowest):** Freight bay floor, cargo handling, span gate access, logistics hub ([The Terminal](locations/the-terminal.md)) -- **Level 2 (middle):** Worker amenities (bar, food vendors, small retail), residential pods -- **Level 3 (highest):** Observation gallery (overlooks freight bay), administrative offices, Commission kiosk (unmanned most of the time) - -**Between the Levels:** Maintenance corridors, service hatches, spaces between old and new construction. This is where the smuggling infrastructure lives. [Corridor B-7](locations/maintenance-corridors.md) is the primary off-books route. - ---- - -## Three Social Sites (v0.1 Content Templates) - -The district contains three **social sites** — clusters of NPCs who regularly interact within connected physical spaces. These are the atomic units of v0.1 content. - -### 1. The Terminal (Logistics Hub) -**Type:** Workplace -**NPCs:** 5 ([Voss](../../../../characters/voss.md), [Kael Davan](../../../../characters/kael-davan.md), [Resha](../../../../characters/resha.md), [Torek Lintar](../../../../characters/torek-lintar.md), [Drin](../../../../characters/drin.md)) -**Function:** Cargo sorting, scheduling, inspection, paperwork -**Hours:** 24-hour operation, three 8-hour shifts -**[Full profile ->](locations/the-terminal.md)** - -### 2. The Last Shift (Bar) -**Type:** Social Venue -**NPCs:** 6 ([Lera Sessik](../../../../characters/lera-sessik.md), [Harek](../../../../characters/harek.md), [Maret Korr](../../../../characters/maret-korr.md), [Sera Venn](../../../../characters/sera-venn.md), [Sess](../../../../characters/sess.md), [Olin](../../../../characters/olin.md)) -**Function:** After-shift drinks, social hub, information exchange -**Hours:** 14:00 - 02:00 station time -**Informal Name:** "Lera's" (used by regulars) -**[Full profile ->](locations/the-last-shift.md)** - -### 3. Smuggling Spaces (The Ring's Infrastructure) -**Type:** Criminal operation / repurposed infrastructure -**NPCs:** 5 ([Devra](../../../../characters/devra.md), [Renn](../../../../characters/renn.md), [Pell](../../../../characters/pell.md), [Sabel](../../../../characters/sabel.md), [Tav](../../../../characters/tav.md)) -**Function:** Contraband transfer, off-books meetings, dead drops -**Locations:** [Maintenance Corridor B-7](locations/maintenance-corridors.md), back room at The Last Shift, storage area in logistics hub -**[Full profile ->](locations/maintenance-corridors.md)** - ---- - -## Economy & Employment - -**Primary Employers:** -- Sova Logistics Consortium (freight handling, scheduling, inspection) -- Station Services (maintenance, hospitality, retail) -- Self-employed (bar owners, food vendors, small operators) - -**Wage Reality:** Standard logistics salary: 2,400 credits/month. Station living costs: ~2,200 credits/month (housing pod, food, necessities). This leaves 200 credits margin — enough to survive, not enough to thrive. - -**Economic Pressure Mechanisms:** -- Medical expenses (lattice maintenance, injury treatment) -- Family support (children, aging parents) -- Lattice upgrades (professional capability enhancement) -- Emergency reserves (job loss, station emergency) - -**The Grey Economy:** Smuggling provides supplemental income that transforms "barely comfortable" into "secure." A ring member might make an extra 400-800 credits/month — enough to cover lattice upgrades, save for family, or simply breathe easier. - -This is why the community tolerates the ring: everyone benefits indirectly. The bar profits from smugglers buying drinks. Maintenance workers get tips for "noticing things late." Even flat NPCs who aren't involved benefit from the economic activity. - ---- - -## Daily Rhythms - -**Shift Schedule:** -- **Morning (06:00-14:00):** Day shift, highest freight volume, gate cycles every 4-6 minutes -- **Afternoon (14:00-22:00):** Swing shift, moderate volume, bar opens, social activity peaks -- **Night (22:00-06:00):** Night shift, lowest volume, gate cycles every 12-15 minutes, smuggling window - -**Shift Transition (13:45-14:15):** The corridor between the logistics hub and bar district becomes a chokepoint. Everyone heading from work to drinks passes through the same 40 meters. This is where the smuggler notices patterns and the detective observes routines. - -**The Week Cycle:** -- **5-day work cycle + 2-day rest** (station standard) -- Day 1-4: Normal operations -- Day 5 (end-of-cycle): Higher bar attendance, card games, social peak -- Rest days: Quieter district, skeleton crew at logistics hub, bar closed Day 1 morning - -**Seasonal Rhythms:** None. Station life has no seasons. This creates psychological monotony that smuggling occasionally interrupts. - ---- - -## Institutional Presence - -**Lattice Commission:** -- **Permanent Presence:** None. Commission kiosk on Level 3 (unmanned, for compliance reporting). -- **Liaison Rotation:** 3-6 month assignments. Most recent liaison rotated out 3 months ago; replacement delayed. -- **Inspection Schedule:** Quarterly lattice compliance sweeps (announced 2 weeks in advance). - -**This gap — the 3-month window without a Commission presence — is when the smuggling operation escalates. The detective's arrival represents an unscheduled enforcement action, triggered by something flagged at system level.** - -**Station Security:** -- **Patrol Presence:** 2 officers on-duty per shift, primarily concerned with accidents and violence -- **Authority Limit:** Security handles safety; Commission handles contraband. Security officers know this distinction and generally look away from grey-market activity that doesn't threaten station safety. - ---- - -## Meridian Coverage & Information Infrastructure - -**Coverage Map:** -- **Logistics Hub:** Comprehensive (real-time tracking, manifest systems, surveillance) -- **Bar District:** Strong (standard social monitoring, Meridian feeds) -- **Residential Pods:** Standard (personal lattice connectivity) -- **Maintenance Corridors:** Degraded (older infrastructure, dead spots) -- **Between-Wall Spaces:** Minimal or absent (off-map, no official coverage) - -**Dead Spots:** Corridor B-7 and the storage area behind the logistics hub main floor are known Meridian gaps. The ring uses these for off-channel communication. NPCs who need to discuss something sensitive go for a walk to the "quiet spots." - ---- - -## Atmosphere & Sensory Details - -**Sound:** -- **Omnipresent:** Span gate hum (bass-frequency vibration, pitch rises with transit volume) -- **Logistics Hub:** Cargo machinery, scanner beeps, conveyor belts, shouted instructions -- **Bar District:** Conversation murmur, glass on surfaces, Meridian music feeds -- **Corridors:** Ventilation hum, footsteps on metal grating, echoes -- **Night:** Gate hum drops to low throb, ventilation dominates, occasional distant voices - -**Smell:** -- **Logistics Hub:** Industrial lubricant, recycled air, occasionally cargo scent (organic shipments) -- **Bar District:** Cooking (protein paste, vegetables, synthetic spices), alcohol, crowd scent -- **Corridors:** Recycled air with metallic undertone, faint industrial chemicals -- **Morning:** Ozone scent post-gate-transit (fades quickly) - -**Lighting:** -- **Logistics Hub:** Bright industrial white (functional, slightly harsh) -- **Bar District:** Warm amber (cheaper fixtures, comfortable) -- **Corridors:** Dim utilitarian (spaced fixtures, shadows between lights) -- **Maintenance Areas:** Emergency red or no light (bring portable lights) - -**Visual Texture:** -- Bilingual signage (Concordat Standard + Van Maanen's Star vernacular) -- Hand-lettered informal signs ("Lera's," shift schedules, lost-and-found notices) -- Wear patterns (scuffed floors, patched walls, graffiti in maintenance areas) -- Personal touches (locker decorations, shift-end artwork, stickers) - -**Local Complaint:** "The ventilation in Sector 3 has been unreliable for months. Station maintenance says it's on the list." — Universal safe topic. If an NPC is complaining about ventilation, they're NOT talking about something else. - ---- - -## NPCs & Social Structure - -**Total NPCs in District:** 17 (15 standard + 2 FRIEND-tier) - -**Population Distribution (D-029 Entanglement Ratio: 30/50/20):** -- **Flat NPCs (3, ~18%):** [Drin](../../../../characters/drin.md), [Sess](../../../../characters/sess.md), [Olin](../../../../characters/olin.md) — routines, greetings, atmosphere -- **Triangle NPCs, Mundane (7, ~41%):** [Voss](../../../../characters/voss.md), [Maret Korr](../../../../characters/maret-korr.md), [Torek Lintar](../../../../characters/torek-lintar.md), [Lera Sessik](../../../../characters/lera-sessik.md), [Harek](../../../../characters/harek.md), [Resha](../../../../characters/resha.md), [Sera Venn](../../../../characters/sera-venn.md) -- **Triangle NPCs, Entangled (7, ~41%):** [Kael Davan](../../../../characters/kael-davan.md), [Devra](../../../../characters/devra.md), [Renn](../../../../characters/renn.md), [Pell](../../../../characters/pell.md), [Sabel](../../../../characters/sabel.md), [Tav](../../../../characters/tav.md), [Naia Tamm](../../../../characters/naia-tamm.md) (referenced) - -**The Five Triangles:** See [NPC Index](../../../../characters/index.md) for full triangle diagram. - ---- - -## The Smuggling Operation ("The Ring") - -**Structure:** Informal network, no official name. NPCs refer to it obliquely ("the arrangement," "the side work," "helping out"). - -**What They Move:** [Unlicensed lattice components](../../../../contraband/lattice-components.md) (primary), [medical-grade neural replacements](../../../../contraband/medical-grade-replacements.md), [Severance counter-surveillance tech](../../../../contraband/severance-equipment.md) - -**How It Works:** -1. Contraband arrives in legitimate freight shipments (mixed with legal cargo) -2. [Torek Lintar](../../../../characters/torek-lintar.md) (compromised inspector) looks away during inspection -3. [Kael Davan](../../../../characters/kael-davan.md) and others route flagged containers to holding area -4. [Renn](../../../../characters/renn.md) (courier) transfers contraband to [Corridor B-7](locations/maintenance-corridors.md) -5. [Devra](../../../../characters/devra.md) coordinates off-station contact ([Sabel](../../../../characters/sabel.md)) -6. Product distributed through informal networks - -**Operational Timing:** Night shifts (lowest oversight), shift transitions (confusion/distraction), post-inspection windows (2-3 days after scheduled Commission sweep) - -**Community Role:** The ring is the district's economic immune system. People who don't participate directly still benefit: bars profit, families get lattice upgrades they couldn't afford, medical needs get met. This creates collective investment in not noticing. - ---- - -## v0.1 Narrative Stakes - -**The Smuggler's Stakes:** -- **Home:** This is their community, their livelihood, their daily life -- **Relationships:** Everyone here is a colleague, friend, or known quantity -- **Risk:** The detective threatens to dismantle the social fabric that keeps them secure - -**The Detective's Stakes:** -- **Assignment:** Institutional mandate to investigate manifest discrepancies -- **Authority:** Commission jurisdiction, but local resistance -- **Isolation:** No social network, no institutional backup in-district, operating alone in hostile social terrain - -**The Convergence:** Both characters are following the same threads (manifest discrepancies, NPC behavioral changes, Corridor B-7) from opposite sides. The smuggler knows what's happening and must protect it. The detective suspects something and must discover it. They're heading toward the same revelation from opposite directions. - ---- - -## Mechanical Integration - -**Knowledge Graph Flags (FactIds):** -- `location.sova_transit_layout` (KnowsOf: detective has map, smuggler knows shortcuts) -- `location.corridor_b7_restricted` (KnowsDetails: smuggler knows access, detective discovers through investigation) -- `contraband.ring_exists` (Smuggler: KnowsDetails from background, Detective: Suspects -> KnowsOf -> KnowsDetails through gameplay) - -**Perception Differences:** -- **Smuggler:** Sees home, notices routine deviations as threats, identifies NPCs by first name and relationship -- **Detective:** Sees crime scene, notices patterns as evidence, identifies NPCs by role and case file data - -**Monologue Triggers:** 60+ location-specific triggers across three social sites, filtered by character - ---- - -## Worldbuilding Notes - -**Why Sova Transit Works:** -- **Economically grounded:** The financial pressure is specific and relatable -- **Socially coherent:** 800 people, everyone knows everyone, patterns are visible -- **Architecturally complex:** Layered construction provides hiding places -- **Institutionally thin:** Enforcement gaps make smuggling viable -- **Morally ambiguous:** The ring serves real needs, not just greed - -**The Honest Truth:** If Sova Transit District feels real — if the player can imagine working here, drinking here, living here — then the smuggling operation becomes a moral dilemma instead of a simple crime. That's the game. - ---- - -**Cross-References:** -- [Van Maanen's Star](../../index.md) — Star system profile -- [Station Sova](../index.md) — Station profile -- [NPC Index](../../../../characters/index.md) — Full character roster -- D-036: Sova Transit District as v0.1 setting -- D-027: Vertical slice definition - ---- - -**Status:** Canonical — v0.1 playable setting -**Created:** 2026-02-11 -**Updated:** 2026-02-12 diff --git a/wiki/star-systems/GJ-35/sova/transit/maintenance-corridors.md b/wiki/star-systems/GJ-35/sova/transit/maintenance-corridors.md deleted file mode 100644 index 696cd6949..000000000 --- a/wiki/star-systems/GJ-35/sova/transit/maintenance-corridors.md +++ /dev/null @@ -1,212 +0,0 @@ ---- -title: "Maintenance Corridors" -description: "Forgotten interstitial spaces between construction eras — Corridor B-7 as the primary smuggling route, off-Meridian and off-map" -slug: maintenance-corridors -category: location -status: canonical -created: 2026-02-12 -updated: 2026-02-13 -parent_district: transit -parent_station: sova -parent_system: van-maanens-star -social_site: smuggling-ring -sightlines: severely-limited -ambient_sound: ventilation-hum -npcs_present: [devra, renn, pell, sabel, tav] -tags: [v0.1, criminal-infrastructure] -decision_refs: [D-025, D-036] -cross_refs: [the-terminal, the-last-shift] ---- - -# Maintenance Corridors (Smuggling Spaces) - -**Type:** Location — Criminal Infrastructure / Repurposed Space -**Status:** Canonical -**District:** [Sova Transit District](index.md) -**Station:** [Station Sova](../index.md) -**System:** [Van Maanen's Star](../../index.md) -**Level:** Between levels (interstitial construction) -**Key Location:** Corridor B-7 -**Access:** Restricted (service hatch from Terminal break room, maintenance access from Level 2) -**Meridian Coverage:** Degraded to absent - ---- - -## Overview - -The maintenance corridors are the spaces between Sova Transit District's official architecture — the gaps where old construction meets new, where service infrastructure runs between wall layers, where 140 years of station retrofitting has left passages that exist on original schematics but not on current maps. They are not built spaces in the conventional sense. They are the negative space of the station's architectural history. - -Corridor B-7 is the primary off-books route. It runs between the original prefab shell of the freight bay (now The Terminal's Level 1) and the interior partition wall of the Level 2 amenities strip. The corridor was a maintenance access for ventilation systems during the station's first retrofit ~80 years ago. When the second retrofit added Level 2 amenities, the corridor was partially sealed and forgotten. "Forgotten" in the institutional sense — it dropped off maintenance schedules, lost its corridor designation in official records, and stopped appearing on maps issued to new station personnel. - -The ring didn't build this space. They found it. - ---- - -## Physical Description - -### Corridor B-7 (Primary Smuggling Route) - -**Dimensions:** ~120 meters long, 1.8 meters wide (tight for two people passing), 2.2 meters high. The corridor follows the curve of the station's structural geometry — it's not straight. Visibility is limited to 15-20 meters at best before the corridor bends. - -**Construction:** Original station prefab walls on the left (the freight bay's outer shell — you can feel machinery vibration through these walls during active shifts). Retrofit partition wall on the right (thinner, newer material, occasionally patched). The floor is original metal grating — functional, loud underfoot, cold. The ceiling carries exposed conduit runs: ventilation ducts, power cables, data lines (some active, some dead, the dead ones never removed). - -**Entry Points:** -1. **Service hatch from Terminal break room** (south end) — A 0.9m x 1.2m hatch in the back wall of the locker area, originally for ventilation maintenance. Looks like a utility panel. Requires a physical latch (no electronic lock — off-Meridian by default). The ring has oiled the hinges. Workers who know about it move through without hesitation. Workers who don't know about it have never noticed it. - -2. **Maintenance access from Level 2 corridor** (north end) — A labeled door ("MAINTENANCE — AUTHORIZED PERSONNEL") that requires station maintenance clearance. In practice, the clearance hasn't been checked in years. The door leads to a junction point where B-7 intersects with two other maintenance corridors. Renn uses this entry when coming from the residential pods. - -3. **Emergency access panel near temporary storage** (midpoint) — A ventilation access that was never sealed during the second retrofit. Small enough to pass cargo through, not large enough for comfortable transit. Used for emergency operations when primary entry points feel watched. - -**Interior Features:** -- **Dead drop alcove** (30 meters from south entry): A recessed section where a ventilation junction box was removed but the wall niche remains. The ring stores small items here — data chips, sealed packets, components that don't need container handling. The alcove is invisible unless you know where to look. -- **Junction room** (60 meters, midpoint): Where B-7 crosses a perpendicular maintenance corridor. A slightly wider space (~3m x 3m) with access to overhead cable trays. This is where larger items are temporarily staged before being moved to their final destination. The room has a single emergency light (red, dim, motion-activated — installed by station maintenance and never checked). -- **Ventilation hub** (90 meters from south entry): A section where the corridor widens around a ventilation distribution unit. The unit runs continuously, producing a low hum that masks conversation. Devra uses this spot for in-person meetings when Meridian communication isn't secure enough. - ---- - -## Atmosphere & Sensory Details - -**Sound:** -- Ventilation hum (omnipresent, louder than in habitable spaces — these corridors ARE the ventilation infrastructure) -- Footsteps on metal grating (loud, echoing, impossible to approach silently unless you slow to a deliberate pace) -- Machinery vibration through the left wall (the Terminal's grav-lifts and cargo systems, muffled but constant during active shifts, silent during night shift lull) -- Occasionally: distant voices from Level 2 bleeding through the partition wall (unintelligible but audible — a reminder that inhabited space is inches away) -- Silence during 01:00-04:00 operations is not silence — it's the ventilation hum with everything else subtracted - -**Smell:** -- Recycled air with a stronger metallic undertone than in habitable areas (older ductwork, less filtration) -- Industrial chemicals (legacy residue in the walls, faint but persistent) -- Damp metal (condensation on cooler surfaces where ventilation creates temperature gradients) -- Absence: no cooking smell, no crowd scent, no organic presence. The corridor smells like what it is — infrastructure, not habitat. - -**Lighting:** -- Emergency red from spaced fixtures (every 20 meters, low intensity — enough to navigate, not enough to read) -- Long shadows between fixtures. The curvature of the corridor means you can see the red glow of the next fixture but not what's between you and it. -- At the junction room: motion-activated emergency light (white, harsh, brief — it clicks on when you enter and times out after 3 minutes) -- Portable lights: the ring carries small handheld units for operations. The detective's analytical lattice includes a low-light enhancement mode that makes the corridor navigable but color-shifted. -- Ambient darkness is the baseline. Light is brought in, not found. - -**Temperature:** -- Cooler than habitable spaces (environmental systems serve the corridor as infrastructure, not as living space) -- Temperature gradients near ventilation junctions — cold pockets where conditioned air moves -- Cold enough that breath condenses near the ventilation hub during night shifts (the district's environmental systems enter low-power mode) - -**Visual Texture:** -- Exposed conduit: cables and ducts running along the ceiling, some labeled, some not, some disconnected and left in place -- Patch marks on walls: where panels were replaced, where holes were sealed, where someone wrote a maintenance note in marker decades ago and it's still there -- Graffiti: sparse but present — maintenance workers from previous eras left marks. A date (34 years old). An arrow pointing to a junction. A name. Recent additions: a small symbol near the dead drop alcove that means nothing to anyone who doesn't know what it means. -- Dust: fine, even, covering surfaces that haven't been touched in months. Footprints in the dust are evidence. The ring knows this and has developed the habit of brushing the floor with a cloth after operations. - ---- - -## NPC Presence - -### Ring NPCs (Operational Presence in Corridors) - -| NPC | Role | Corridor Use | Frequency | -|-----|------|-------------|-----------| -| [Devra](../../../../characters/devra.md) | Ring Coordinator | Meetings at ventilation hub, coordination | 2-3x per week | -| [Renn](../../../../characters/renn.md) | Courier | Primary cargo transfer through B-7 | Every ring operation (night shift cycle) | -| [Pell](../../../../characters/pell.md) | Wavering Ring Member | Nervous presence, dead drop pickups | Irregular, increasingly reluctant | -| [Sabel](../../../../characters/sabel.md) | Fence/Buyer (external) | Rare in-person meetings at junction room | Monthly, high-stakes | -| [Tav](../../../../characters/tav.md) | Lookout/Runner | Watches entry points during operations | Every ring operation | - -### Non-Ring NPC Access - -- **Drin** (Maintenance Tech): Has legitimate reason to be in maintenance corridors. Passes through B-7 occasionally for ventilation work. Has noticed the oiled hinges, the clean floor near the alcove, the fact that the emergency light at the junction was replaced with a newer unit. Drin says nothing. Drin is compromised by debt to Harek, and even without that, Drin minds their business. - -- **Resha** (New Hire): Does NOT know about the corridors. Resha's curiosity is a risk factor — if they follow Renn during a shift transition, they could stumble into B-7. This is a storyteller-activatable event. - ---- - -## Operational Rhythm - -**Standard Operation (Every Third Night Shift Rotation):** - -1. **22:30-23:00:** Tav positions at Level 2 maintenance access. Watches for unexpected foot traffic. -2. **01:00-01:15:** Renn enters through Terminal break room service hatch. Moves pre-staged container contents from temporary storage into the corridor. -3. **01:15-01:45:** Cargo moved through B-7 to junction room. Items sorted: small components to dead drop alcove for later pickup, larger items staged for transfer. -4. **01:45-02:00:** Renn exits through Level 2 maintenance access. Tav confirms clear. Corridor secured. -5. **02:00+:** Floor brushed near entry points. Dust disturbed along the route settles naturally over 6-8 hours. - -**Total operational window: ~90 minutes.** The ring has run this sequence dozens of times. It's smooth, rehearsed, and unremarkable from outside — the only external evidence is the container sitting 14+ hours in temporary storage. - -**Dead Drop Cycle (Continuous):** -- Pell picks up data chips and small items from the alcove 1-2 times per week. Timing varies. Pell's increasing nervousness makes their visits shorter and more erratic — they used to linger, check the corridor, make sure everything was in order. Now they grab and go. This behavioral change is observable by anyone who knows Pell's pattern. - -**Devra's Meetings (Irregular):** -- Devra meets contacts at the ventilation hub for conversations that can't happen on the Meridian. These meetings are rare (monthly or less) but high-significance. The ventilation hum masks speech from casual eavesdropping. Devra brings a Severance device for these meetings — a small counter-surveillance unit that creates a localized Meridian dead zone. - ---- - -## Mechanical Integration - -### Knowledge Graph Flags (FactIds) - -| FactId | Smuggler Starting Level | Detective Starting Level | How Detective Escalates | -|--------|------------------------|-------------------------|-------------------------| -| `location.corridor_b7_restricted` | KnowsDetails (uses it) | None | Discover through investigation: observe Renn's movements, check old schematics, follow dust patterns | -| `location.smuggling_route` | KnowsDetails (operational) | None | Build from corridor discovery + manifest evidence + shift timing | -| `location.surveillance_gaps` | KnowsDetails (relies on them) | KnowsOf (knows coverage degrades in older sections) | Analytical lattice maps dead zones, correlates with operational timing | -| `contraband.severance_tech` | Suspects (knows about sealed containers) | None | Find Severance device residue at ventilation hub (late-game discovery) | - -### Perception Differences - -**Smuggler sees:** -- Infrastructure. A route they've walked dozens of times. The hatch is a door. The corridor is a commute. The alcove is a shelf. The junction room is where Renn stages cargo. The ventilation hub is where Devra talks business. -- Familiarity breeds efficiency. The smuggler navigates B-7 in near-darkness, counting footsteps to landmarks. They know which sections of grating creak, which stretches are silent, where the temperature drops near the ventilation junction. -- But also: tension. The corridor is where the operation is most physically exposed. If someone follows them here, there's no innocent explanation. - -**Detective sees:** -- A revelation. The first time the detective enters Corridor B-7, it should feel like the investigation cracking open. This is the physical proof that the district has a hidden layer — a space that doesn't appear on their station map overlay, where Meridian coverage drops to zero, where the architecture itself has been repurposed for concealment. -- Evidence: oiled hinges on a "forgotten" hatch. Clean patches on otherwise dusty floors. A dead drop alcove with recent scuff marks. An emergency light that's newer than everything else in the corridor. Every detail is a data point. -- The detective's analytical lattice flags the Meridian dead zone. Their overlay goes dark. For a character whose perception is mediated by institutional technology, the loss of overlay data is both disorienting and clarifying: they're seeing the space as it is, not as the institution tells them it is. - -### Monologue Triggers (Location-Specific) - -**On first entering Corridor B-7:** -- Smuggler: Routine acknowledgment, operational awareness, brief attention to whether anything's changed -- Detective: Discovery moment — urgent monologue chime, assessment of what this space means for the investigation - -**On finding the dead drop alcove:** -- Smuggler: Checks contents or notes its status (operational information) -- Detective: Evidence discovery — `location.corridor_b7_restricted` escalates to KnowsDetails - -**On reaching the ventilation hub:** -- Smuggler: Meeting space, checks for Devra's presence, notes the hum -- Detective: Notes the acoustic properties (ventilation masks conversation), flags as potential meeting point - -**On noticing dust patterns / clean floor sections:** -- Smuggler: (Would not trigger — this IS their routine, they created the patterns) -- Detective: Pattern recognition — someone has been here recently, repeatedly, and has attempted to conceal it - -**On losing Meridian coverage (overlay goes dark):** -- Smuggler: Normal (they expect it, use it) -- Detective: Disorienting, then revealing — the dead zone IS the evidence - ---- - -## Worldbuilding Notes - -The maintenance corridors embody a principle that runs through the entire setting: the most dangerous spaces aren't the ones designed for danger. They're the forgotten ones. Corridor B-7 wasn't built for smuggling. It was built for ventilation maintenance and then abandoned by institutional memory. The ring's genius — if that word applies to what is essentially pragmatic opportunism — is recognizing that the station's own architectural history provides better cover than anything they could construct. - -Let me complicate this by noting what the corridors mean for the game's moral architecture. The smuggler walks through B-7 with the comfort of routine. The detective enters B-7 as an investigator entering a crime scene. But the corridor is neither of those things inherently. It's a maintenance corridor. Its criminality is imposed by the people who use it and the institutions that made it necessary. If the Commission didn't price people out of lattice upgrades, Corridor B-7 would just be a corridor. - -The space between the walls is where the game's moral questions live. - ---- - -**Cross-References:** -- [Sova Transit District](index.md) — Parent district -- [The Terminal](the-terminal.md) — Connected via break room service hatch (south entry) -- [The Last Shift](the-last-shift.md) — Back room connects to ring infrastructure -- [NPC Index](../../../../characters/index.md) — Full character roster -- [Severance Equipment](../../../../contraband/severance-equipment.md) — Used during Devra's meetings -- D-036: Sova Transit District as v0.1 setting -- D-037: Contraband specification (what moves through B-7) - ---- - -**Status:** Canonical — v0.1 smuggling infrastructure -**Created:** 2026-02-12 -**Updated:** 2026-02-12 diff --git a/wiki/star-systems/GJ-35/sova/transit/the-last-shift.md b/wiki/star-systems/GJ-35/sova/transit/the-last-shift.md deleted file mode 100644 index 3ccc29c6f..000000000 --- a/wiki/star-systems/GJ-35/sova/transit/the-last-shift.md +++ /dev/null @@ -1,221 +0,0 @@ ---- -title: "The Last Shift" -description: "District bar and social hub — the smuggler's refuge, the detective's intelligence goldmine, and the place where information flows faster than the Meridian" -slug: the-last-shift -category: location -status: canonical -created: 2026-02-12 -updated: 2026-02-13 -parent_district: transit -parent_station: sova -parent_system: van-maanens-star -social_site: bar -sightlines: open-with-alcoves -ambient_sound: conversation-music -npcs_present: [lera-sessik, sera-venn, naia-tamm, sess, olin] -tags: [v0.1, social-venue] -decision_refs: [D-025, D-028, D-036] -cross_refs: [the-terminal, maintenance-corridors] ---- - -# The Last Shift (Bar) - -**Type:** Location — Social Venue -**Status:** Canonical -**District:** [Sova Transit District](index.md) -**Station:** [Station Sova](../index.md) -**System:** [Van Maanen's Star](../../index.md) -**Level:** 2 (middle — worker amenities) -**Operating Hours:** 14:00-02:00 station time -**Informal Name:** "Lera's" (used by regulars) -**Owner:** [Lera Sessik](../../../../characters/lera-sessik.md) -**Capacity:** ~30 - ---- - -## Overview - -The Last Shift is a mid-grade bar in Sova Transit District's Level 2 amenity strip. Not upscale, not a dive. The kind of place where working people go after shift because it's the only place worth going. Regulars call it "Lera's" after the owner, and the name on the hand-lettered sign outside — "Lera's — Cold Drinks, Hot Food, No Questions" — tells you everything about the establishment's operating philosophy. - -The bar is the district's social heart. Information flows through here faster than through the Meridian: who's working extra shifts, who's buying rounds they can't afford, who left early with someone they shouldn't have, who said something to the new Commission tech that they probably shouldn't have said. For the smuggler, it's the place to relax, maintain social cover, and read the room for threats. For the detective, it's an intelligence goldmine disguised as a working-class bar. - ---- - -## Physical Description - -**Structure:** The Last Shift occupies a converted maintenance staging area from an earlier construction era. The irregular layout is structural, not decorative — the booths were built into spaces that already existed, the bar counter follows the curve of a load-bearing wall, and the ceiling height varies from 2.5 meters in the main room to under 2 meters in the corner booth alcove. The conversion happened ~25 years ago when Lera's predecessor (a dock worker who retired into hospitality) saw an opportunity in the empty space. - -**Layout:** - -- **The Bar:** A long counter along the curved back wall, 8 stools. Lera's domain. She works the bar with Sess and has a sightline to most of the room from behind it. Bottles displayed on shelves — station-brewed spirits, imported beer (expensive, status purchase), and the synthetic staples that constitute 80% of sales. A Meridian music feed plays from a speaker nobody's ever changed — generic ambient that's become so familiar it functions as silence. - -- **The Floor:** Scattered tables, mismatched chairs (some bolted down, some not — the bolted ones near the door, since the first few months after opening taught Lera about drunk dock workers and loose furniture). Low tables for card games. The floor is original metal plating with a rubberized coating that absorbs sound — and spills. Lighting is warm amber from older fixtures that Lera has never replaced because the atmosphere they create is worth more than the energy savings of an upgrade. - -- **The Corner Booth:** A semi-private alcove created by the building's structural geometry — two walls converge, creating a natural pocket that seats 4-5. This is the most socially significant table in the district. Who uses the corner booth and when is information. Off-shift dock workers use it for card games. Devra uses it for business conversations that look like friendly drinks. The detective, once they identify the pattern, can observe the booth from the bar without appearing to watch. - -- **News Ticker:** A Meridian feed display mounted above the bar. Concord Assembly proceedings (boring — nobody watches), freight market prices (relevant — workers check these), weather alerts for Van Maanen's Star Prime surface operations (practical), and occasionally a Commission public notice about regulatory compliance (everyone pretends not to notice). The news ticker is background texture that occasionally becomes plot-relevant: the same headline reads differently to the smuggler and the detective. - -- **The Back Room:** Through a door behind the bar marked "STAFF ONLY" (the sign is in Lera's handwriting). Officially a storage and supply room. The door leads to a small space with kegs, crates of supplies, and a secondary exit that connects to a maintenance corridor. Lera has "adopted" this corridor access — it's not on any lease, but nobody's contested it in 25 years. The ring uses the back room for handoffs: contraband arrives through the maintenance corridor, gets stored briefly among the supply crates, and is distributed through informal networks. Lera knows. Lera doesn't ask. - -- **The Threshold:** The door to the bar opens onto the Level 2 corridor that connects The Terminal (via a transition ramp from Level 1) to the residential pods. Everyone heading from work to home passes this point. The threshold is where off-shift workers decide: home, or one more? The decision is visible. NPCs who enter the bar are making a social choice. NPCs who walk past are making a different one. Both are information. - ---- - -## Atmosphere & Sensory Details - -**Sound:** -- Conversation murmur (the dominant sound — 15-20 voices at peak, falling to 3-4 late at night) -- Glass on surfaces (the clink and scrape of station-standard tumblers on metal table tops) -- Meridian music feed (ambient, unremarkable, occasionally someone asks Sess to change it, Sess never does) -- Span gate hum (quieter here on Level 2 than in The Terminal, but still present — a low vibration in the floor that you feel more than hear) -- Card game sounds (chips, tapping, the particular conversational rhythm of people who've been playing the same game for years) -- Late at night: the murmur dies down, the music becomes audible, individual conversations become distinguishable - -**Smell:** -- Cooking (protein paste dishes, reconstituted vegetables, synthetic spices — not gourmet, but warm and identifiable) -- Alcohol (station-brewed spirits have a sharp, slightly chemical edge; imported beer smells different, richer) -- Crowd scent (20 people in a converted maintenance area after an 8-hour shift — bodied, human, real) -- Underneath: the ever-present recycled air base note, faintly metallic - -**Lighting:** -- Warm amber from older fixtures. The lighting is The Last Shift's most distinctive atmospheric feature — after the harsh industrial white of The Terminal, stepping into Lera's feels like exhaling. The amber isn't designed; it's a consequence of aged fixtures that Lera has correctly identified as an asset. -- Corner booth: slightly dimmer (structural shadow from the converging walls). This is why the booth feels private — it's not screened off, just less illuminated. -- Behind the bar: brighter (Lera needs to see what she's pouring). The light behind the bar creates a slight backlight effect — Lera is always slightly in silhouette from the customers' perspective. She sees them better than they see her. -- Back room: Standard utility lighting (bright, unflattering — this is a storage space, not a social one). - -**Temperature:** -- Climate-controlled, comfortable — one of Lera's few deliberate investments. The bar is slightly warmer than the corridor outside, which makes the transition from work to drinks feel like arriving somewhere. -- Late at night with fewer bodies, it cools slightly. The regulars who stay past midnight notice. - -**Visual Texture:** -- The hand-lettered sign: "Lera's — Cold Drinks, Hot Food, No Questions" (exterior, the first thing anyone sees) -- Shift schedule board on the wall near the door (community service — workers check upcoming rotations here) -- Lost-and-found notices (hand-written, some months old, a small archaeology of forgotten jackets and misplaced data chips) -- A few personal touches from regulars: a carved wooden ship model on a shelf (Harek made it), a signed photograph of a freight crew from "the big delivery" (whatever that was, nobody new asks), stickers on the bolted-down chairs -- Wear patterns: the bar counter is smoothed and darkened where elbows rest. The corner booth table has rings from a thousand glasses. - ---- - -## NPC Presence - -### Primary NPCs (Regular Presence at The Last Shift) - -| NPC | Role | Typical Hours | Function | -|-----|------|---------------|----------| -| [Lera Sessik](../../../../characters/lera-sessik.md) | Bar Owner | 13:30-02:00 (daily) | Social hub, observes everything, willful ignorance | -| [Sera Venn](../../../../characters/sera-venn.md) | Commission Field Tech (THE FRIEND) | Evenings, irregular | Detective's social anchor, bar regular | -| [Naia Tamm](../../../../characters/naia-tamm.md) | Teacher (Kael's partner) | Evenings, 2-3x/week | Worried, confides in Sera | -| [Sess](../../../../characters/sess.md) | Bartender | 14:00-02:00 (shifts with Lera) | Flat, observant, discreet | -| [Olin](../../../../characters/olin.md) | Drifter / New Arrival | Irregular, evenings | Ambiguous intent, asks questions | - -### Bridge NPCs (Present at The Last Shift + Other Sites) - -| NPC | Home Site | Bar Role | Bridge Function | -|-----|-----------|----------|-----------------| -| [Torek Lintar](../../../../characters/torek-lintar.md) | The Last Shift / [The Terminal](the-terminal.md) | Regular, big spender | Spending beyond means — financial tell | -| [Harek](../../../../characters/harek.md) | The Last Shift / [The Terminal](the-terminal.md) | Off-duty security, card games | Sees things in both contexts, holds debt leverage on Drin | -| [Maret Korr](../../../../characters/maret-korr.md) | [The Terminal](the-terminal.md) | Occasional visitor | Worried, processes what she's seen at work | -| [Devra](../../../../characters/devra.md) | Smuggling Ring | Corner booth meetings | Legitimate front conceals ring coordination | -| [Kael Davan](../../../../characters/kael-davan.md) | [The Terminal](the-terminal.md) | After-shift regular | Ring member unwinding, partner Naia sometimes present | - -**Total NPC presence:** Up to 10 at peak (5 regulars + 5 bridge), minimum 2-3 (Lera, Sess, and a straggler) - ---- - -## Daily Rhythm - -**Pre-Opening (13:30-14:00)** -- Lera arrives, stocks up, checks supplies. Sess follows. The bar is empty. Quiet conversations between staff — the only time Lera drops her public persona. - -**Opening / Post-Morning-Shift (14:00-16:00)** -- The morning shift crowd arrives. The corridor between The Terminal and The Last Shift becomes a chokepoint. Workers come in pairs and small groups. First orders are routine — "the usual" for regulars, careful choices for the new detective trying to establish a presence. -- Mood: relieved, tired, social. This is when gossip flows most freely. "Did you see Voss's face when that manifest flagged?" The smuggler listens. The detective should. - -**Afternoon Lull (16:00-18:00)** -- The first wave leaves (home, errands, families). A quieter crowd remains: the ones who don't have somewhere to be, or who do but aren't going. Torek buys another round. Harek deals cards. -- Mood: settled, intimate. Conversations deepen. The corner booth fills with whoever has business. - -**Evening Peak (18:00-22:00)** -- Swing shift workers arrive. The bar fills. Both shifts overlap. This is the social peak — maximum information exchange, maximum observation opportunity. -- Card games run in the corner. Devra might appear for a "friendly drink" that involves a quiet conversation in the booth. Sera Venn drops in for an evening drink and might end up talking to Naia, who's worried about Kael's late nights. -- Mood: lively, loud enough for private conversations to go unheard. The smuggler's comfort zone. The detective's observation window. - -**Late Night (22:00-02:00)** -- The crowd thins. Night shift workers are gone. The late-night regulars are a different crowd: the ones who don't want to go home, the ones with something on their mind, the ones waiting for something. -- Lera starts cleaning. Conversations become audible again. The atmosphere shifts from social to confessional. -- Mood: quiet, vulnerable. If an NPC is going to say something they'll regret, it happens here. - -**Rest Days (Day 6-7 of cycle)** -- Day 6 morning: bar closed. Lera resupplies, does maintenance. -- Day 6 evening: opens late (16:00), lighter crowd. -- Day 5 (end-of-work-cycle): Highest attendance. Card tournament night. Social peak of the weekly cycle. The bar is packed, loud, and perfect cover for anything the ring needs to coordinate. - ---- - -## Mechanical Integration - -### Knowledge Graph Flags (FactIds) - -| FactId | Smuggler Starting Level | Detective Starting Level | How Detective Escalates | -|--------|------------------------|-------------------------|-------------------------| -| `relationship.trust_network` | KnowsDetails (knows everyone) | Suspects (observes social bonds) | Spend time here, build rapport, observe who talks to whom | -| `relationship.ring_membership` | KnowsDetails (knows who's in) | None initially | Observe Torek's spending, Devra's booth meetings | -| `contraband.supply_chain` | KnowsOf (knows general flow) | None initially | Connect bar observations to Terminal evidence | -| `relationship.faction_allegiance` | KnowsDetails (reads the room) | Suspects (knows some are Commission-aligned) | Observe NPC reactions to authority presence | - -### Perception Differences - -**Smuggler sees:** -- Sanctuary. The one place where work recedes and social life fills the space. Familiar faces, familiar orders, the warm amber light after a long shift. Lera's nod that means "everything's fine." Kael's laugh from the corner table. -- But also: Torek spending too much. Olin asking too many questions. The detective's presence as an intrusion into safe space. The bar as a social map that must be maintained. - -**Detective sees:** -- An intelligence environment. Every regular is a potential source. Every conversation is potential evidence. The corner booth is a surveillance target. Torek's spending is a financial tell. Lera's practiced indifference is a tell of its own. -- But also: the first place that feels human since arriving on Sova. The amber light is warm. Sera Venn is friendly. The detective's professional discipline fights their personal need for connection. The bar is where the detective is most vulnerable to becoming attached to the people they're investigating. - -### Monologue Triggers (Location-Specific) - -**On entering The Last Shift:** -- Smuggler: Social comfort, reads the room for who's present, brief relaxation -- Detective: Assessment mode, notes occupancy, identifies familiar faces from case file - -**On observing Torek buying rounds:** -- Smuggler: Concern (exposure risk — Torek's spending is visible) -- Detective: Financial anomaly flag (income doesn't match lifestyle) - -**On overhearing Naia confide in Sera:** -- Smuggler: Guilt (knows why Kael is absent, can't say) -- Detective: Potential lead (partner's worry suggests concealment behavior) - -**On the corner booth being occupied by Devra + unknown:** -- Smuggler: Operational awareness (ring business, stay clear) -- Detective: Surveillance target (who's meeting whom, lattice overlay tags the unknown) - -**On the news ticker showing Commission activity:** -- Smuggler: Relief if it's elsewhere, tension if it's local -- Detective: Jurisdictional context, watches NPC reactions to the headline - ---- - -## Worldbuilding Notes - -The Last Shift works because it's the only social venue in a 800-person district where everyone works physical jobs. That simplicity creates concentrated social dynamics: there's nowhere else to go, so everyone comes here, and everyone sees everyone else. The bar is a panopticon of social information — but unlike institutional surveillance, it runs on gossip, routine observation, and the accumulated pattern recognition of people who've been seeing each other every day for years. - -But what SUSTAINS The Last Shift as a gameplay space across hours of play is the dual function: it's simultaneously the smuggler's refuge and the detective's fishing ground. The same NPC interaction reads differently from each perspective. Lera's "no questions" policy protects the smuggler and frustrates the detective. Torek's generosity is loyalty from one angle and evidence from another. The bar doesn't change between playthroughs. The player does. - ---- - -**Cross-References:** -- [Sova Transit District](index.md) — Parent district -- [The Terminal](the-terminal.md) — Workers come from here -- [Maintenance Corridors](maintenance-corridors.md) — Back room connects to ring infrastructure -- [NPC Index](../../../../characters/index.md) — Full character roster -- D-036: Sova Transit District as v0.1 setting -- D-028: Dialogue architecture (bar as primary social dialogue site) -- D-034: THE FRIEND (Sera Venn present at bar, detective's anchor) - ---- - -**Status:** Canonical — v0.1 social venue -**Created:** 2026-02-12 -**Updated:** 2026-02-12 diff --git a/wiki/star-systems/GJ-35/sova/transit/the-terminal.md b/wiki/star-systems/GJ-35/sova/transit/the-terminal.md deleted file mode 100644 index 1d4ccfa7a..000000000 --- a/wiki/star-systems/GJ-35/sova/transit/the-terminal.md +++ /dev/null @@ -1,211 +0,0 @@ ---- -title: "The Terminal" -description: "Freight logistics hub workplace — where cargo arrives, manifests get doctored, and the smuggling operation hides in the routine of legitimate work" -slug: the-terminal -category: location -status: canonical -created: 2026-02-12 -updated: 2026-02-13 -parent_district: transit -parent_station: sova -parent_system: van-maanens-star -social_site: logistics-hub -sightlines: partitioned -ambient_sound: cargo-machinery -npcs_present: [voss, kael-davan, maret-korr, resha, drin] -tags: [v0.1, workplace] -decision_refs: [D-025, D-036] -cross_refs: [the-last-shift, maintenance-corridors] ---- - -# The Terminal (Logistics Hub) - -**Type:** Location — Workplace Social Site -**Status:** Canonical -**District:** [Sova Transit District](index.md) -**Station:** [Station Sova](../index.md) -**System:** [Van Maanen's Star](../../index.md) -**Level:** 1 (lowest) -**Operating Hours:** 24-hour, three 8-hour shifts -**Capacity:** ~60 workers per shift - ---- - -## Overview - -The Terminal is the economic heart of Sova Transit District — a freight logistics hub where cargo arrives through the span gate, gets sorted, inspected, manifested, and forwarded. It's the district's largest employer and the place where most of the 800 residents spend their working hours. It's also where the smuggling operation lives, hidden in the routine of legitimate work. - -The name is informal. Officially it's "Sova Transit Logistics Hub, Bay 7-C." Nobody calls it that. Workers call it The Terminal because that's what it is: the terminus of every shipment that passes through Van Maanen's Star's primary freight corridor. The name carries a blue-collar weariness — this is where things end up, including the people who work here. - ---- - -## Physical Description - -**Structure:** The Terminal occupies a large section of Level 1, built into the original freight bay from Station Sova's construction ~140 years ago. The core structure is industrial prefab — high ceilings (8 meters in the main bay), exposed structural ribs, reinforced flooring rated for heavy cargo. Successive retrofits have partitioned the space into functional zones without changing its fundamental character: a working bay where things get moved. - -**Layout Zones:** - -- **Main Bay Floor:** The largest open space in the district. Cargo containers stacked in rows, grav-lift lanes between them, manifest verification terminals along the walls. Bright industrial white lighting from overhead panels — functional, slightly harsh, the kind of light that makes everything look the same at 03:00 as at 15:00. The floor is scuffed metal plating with wear patterns that trace decades of foot traffic and grav-lift routes. - -- **Manifest Processing Area:** A row of terminals along the bay's east wall where workers verify cargo contents against Meridian-logged manifests. This is the bureaucratic chokepoint — every shipment passes through here. Screens display cargo IDs, weight/volume data, origin stamps, destination codes. The smuggling happens at these terminals: mismatched containers, doctored manifests, containers routed to scanner bays with known blind spots. - -- **Container Staging:** The physical workspace. Heavy containers moved by small grav-lifts — hum of anti-grav motors, clang of magnetic locks engaging, occasional shout over the machinery noise. Active during shift hours, quieter between shifts. Workers communicate in a mix of voice calls and short Meridian pings. - -- **Scanner Bays (3):** Automated cargo inspection stations. Bay 1 and 2 run full spectral scans. Bay 3 has a known calibration drift that produces less reliable results — this has been on the maintenance ticket for four months. The ring routes flagged containers through Bay 3 during shift transitions. - -- **Administrative Offices:** Glass-fronted offices overlooking the bay floor from a raised platform at the north end. Voss's domain. Shift schedules posted on the exterior glass, performance metrics on an internal display nobody reads. The offices have a direct sightline to the main bay floor — Voss can see who's working and who's not. But the offices can't see around the container stacks into the staging area. This sightline gap is load-bearing. - -- **Break Room / Lockers:** Through a reinforced door at the bay's south end. Lockers, a food prep area, a worn couch, a Meridian display showing news feeds. The social space within the workplace, where off-the-record conversations happen. A service hatch at the back of the locker area — originally for maintenance access to the ventilation system — connects to Corridor B-7. This is the physical link between the legitimate workspace and the smuggling infrastructure. - -- **Temporary Storage (Holding Area):** Behind the main bay, accessed through a cargo-width corridor. Containers awaiting processing or pickup sit here. Standard procedure: 4-6 hours maximum. Containers that sit longer trigger a flag. The ring's operational rhythm involves containers that sit 14-18 hours — long enough to be repackaged during a shift transition, short enough not to trigger automated alerts (which require 24 hours). - ---- - -## Atmosphere & Sensory Details - -**Sound:** -- Span gate hum (omnipresent bass vibration from the gate terminal at the bay's edge, pitch rises with transit volume) -- Grav-lift motors (a smooth electric whine, punctuated by the heavy clank of magnetic container locks) -- Manifest scanner pings (repetitive, rhythmic, the heartbeat of cargo processing) -- Conveyor systems (low continuous rumble during active shifts) -- Shouted instructions over machinery noise (workers calling bay numbers, container IDs, warnings) -- Between shifts: the hum drops, the machinery goes quiet, the ventilation system becomes audible - -**Smell:** -- Industrial lubricant (machine maintenance, strongest near grav-lift lanes) -- Recycled air (the base smell of everything on Sova — faintly metallic, unremarkable) -- Cargo scents from organic shipments (agricultural products, biological supplies — occasionally pungent) -- Ozone (faint, lingers near the span gate terminal after high-volume transit cycles) -- Break room: protein paste heating, synthetic coffee, the accumulated smell of a hundred lunches - -**Lighting:** -- Main bay: Bright industrial white panels, even coverage, no shadows in work areas. Slightly harsh — designed for visibility, not comfort. Workers squint when they first step in from the corridor. -- Administrative offices: Same white panels, tinted glass reducing glare slightly -- Break room: Warmer fixtures (older installation, never upgraded), slightly amber -- Temporary storage: Dimmer — reduced fixture density, pools of shadow between container rows -- Between containers in staging area: Shadows. The container stacks create corridors of their own with inconsistent lighting. This is where quick exchanges happen. - -**Temperature:** -- Slightly warm (machinery heat from grav-lifts and scanning equipment) -- Cooler near the span gate terminal (gate transit introduces brief cold drafts) -- Workers dress in standard-issue logistics coveralls, light layers underneath - -**Visual Texture:** -- Bilingual signage: safety warnings in Concordat Standard (institutional, clean) and Van Maanen's Star vernacular (hand-lettered additions, corrections, complaints) -- Shift schedule boards: printed but annotated in marker -- Safety notices: mandatory, ignored, peeling at the corners -- Locker personalization: stickers, shift-end doodles, photographs, a hand-lettered "Days Since Last Accident: 47" counter -- Wear patterns: the floor tells the story of decades of traffic — polished paths between common routes, scuffed zones near the break room door, pristine metal in the rarely-used back corner of temporary storage - ---- - -## NPC Presence - -### Primary NPCs (Home Template: The Terminal) - -| NPC | Role | Shift | Function | -|-----|------|-------|----------| -| [Voss](../../../../characters/voss.md) | Shift Supervisor | Morning (06:00-14:00) | Authority figure, manages schedules, sightline from office | -| [Kael Davan](../../../../characters/kael-davan.md) | Dock Worker (THE FRIEND) | Morning (06:00-14:00) | Ring member, cargo handler, smuggler's closest colleague | -| [Maret Korr](../../../../characters/maret-korr.md) | Freight Scheduler | Morning (06:00-14:00) | Processes manifests, notices discrepancies, hasn't reported | -| [Resha](../../../../characters/resha.md) | New Hire Dock Worker | Morning (06:00-14:00) | Asks questions, hasn't learned to mind their business | -| [Drin](../../../../characters/drin.md) | Maintenance Tech | Rotating | Fixes things, notices things, says nothing | - -### Bridge NPCs (Present at The Terminal + Other Sites) - -| NPC | Home Site | Terminal Role | Bridge Function | -|-----|-----------|---------------|-----------------| -| [Torek Lintar](../../../../characters/torek-lintar.md) | [The Last Shift](the-last-shift.md) | Off-shift dock worker | Compromised inspector, looks away during inspection | -| [Renn](../../../../characters/renn.md) | Smuggling Ring | Courier | Transfers cargo from bay to Corridor B-7 | -| [Harek](../../../../characters/harek.md) | [The Last Shift](the-last-shift.md) | Off-duty security | Occasionally patrols, holds debt leverage on Drin | - -**Total NPC presence:** 8 (5 primary, 3 bridge) - ---- - -## Daily Rhythm - -**Morning Shift (06:00-14:00) — Highest Activity** -- 05:30-06:15: Shift transition. Handoff briefings at the admin office. Workers arriving, lockers opening, coffee queue in the break room. Night crew wrapping up. -- 06:00-08:00: Peak freight volume. Gate cycles every 4-6 minutes. The bay floor is active — grav-lifts moving, scanners pinging, manifest terminals occupied. Voss watches from the office. -- 08:00-12:00: Sustained operations. Routine sets in. Workers fall into their patterns. -- 12:00-13:00: Staggered breaks. Break room at half capacity, conversations about ventilation, yesterday's card game, complaints about scheduling. -- 13:30-14:15: Shift transition. The corridor between The Terminal and the bar district becomes a chokepoint as morning shift heads to The Last Shift. - -**Swing Shift (14:00-22:00) — Moderate Activity** -- Moderate freight volume. Gate cycles every 6-8 minutes. -- Fewer NPCs. Bridge NPCs are off at The Last Shift. Atmosphere quieter. -- 21:30-22:15: Shift transition. The window tightens. - -**Night Shift (22:00-06:00) — Lowest Activity / Smuggling Window** -- Skeleton crew. Gate cycles every 12-15 minutes. -- Reduced oversight. Voss is off-shift. Supervision is nominal. -- **Ring operational window:** Between 01:00-04:00, the bay is at minimum staffing. Renn moves containers from temporary storage through the break room service hatch to Corridor B-7. The entire operation takes 20 minutes if everything goes smoothly. Drin, if on night rotation, maintains equipment in the area and doesn't look up. - ---- - -## Mechanical Integration - -### Knowledge Graph Flags (FactIds) - -| FactId | Smuggler Starting Level | Detective Starting Level | How Detective Escalates | -|--------|------------------------|-------------------------|-------------------------| -| `location.sova_transit_layout` | KnowsDetails (lives here) | KnowsOf (has station map) | Explore, observe worker routes | -| `contraband.ring_exists` | KnowsDetails (member) | Suspects (case briefing) | Observe manifest discrepancies, NPC behavior | -| `investigation.manifest_discrepancy` | KnowsDetails (knows the system) | Suspects (analytical lattice flags) | Compare manifests, interrogate Maret | -| `investigation.shift_mismatch` | KnowsDetails (knows Voss's schedule) | Suspects (pattern analysis) | Observe night shift staffing, correlate with arrivals | -| `location.dead_drop_location` | KnowsDetails (uses Locker 47) | None (must discover) | Observe Kael's break room behavior | - -### Perception Differences - -**Smuggler sees:** -- Home. The familiar rhythm of a workspace they've occupied for years. Container stacks they know by heart. The manifest terminal where they doctored their first shipment. The break room where Kael told them about the arrangement. -- Risk assessment through social intelligence: who's on shift, who's in the office, whether Voss seems distracted, whether Resha is asking too many questions again. -- The service hatch as a door they walk through. Routine. - -**Detective sees:** -- A crime scene that doesn't know it's a crime scene yet. Orderly operations that mask systematic fraud. A supervisor's office with a sightline gap they note on their lattice overlay. A scanner bay with a calibration drift that shows up in the maintenance logs they've pulled. -- Pattern analysis through institutional tools: manifest discrepancies flagged by analytical lattice, shift schedules that don't match freight volume, a container that's been in temporary storage for 14 hours. -- The service hatch as something that doesn't appear on the official schematics. A gap. - -### Monologue Triggers (Location-Specific) - -**On entering The Terminal:** -- Smuggler: Familiarity, routine assessment, awareness of operational state -- Detective: Institutional assessment, observation of workflow, first pattern recognition - -**On observing Scanner Bay 3:** -- Smuggler: Practical awareness (knows the calibration drift, uses it) -- Detective: Analytical flag (maintenance records show repeated deferrals) - -**On entering the Break Room:** -- Smuggler: Social space, reads the room for mood -- Detective: Notes the service hatch, files it for later - -**On discovering Temporary Storage anomaly (container sitting 14+ hours):** -- Smuggler: Knows what it means, assesses risk -- Detective: First concrete evidence — `investigation.cargo_anomaly` escalates from Suspects to KnowsOf - ---- - -## Worldbuilding Notes - -The Terminal is designed to feel like a real workplace — the kind of place where monotony breeds familiarity and familiarity breeds vulnerability. The smuggling operation doesn't require elaborate infrastructure. It requires an understanding of how a logistics hub actually functions: which scanner has a calibration issue, when the shift transitions create gaps, where the sightlines end and the shadows begin. - -The honest truth is that every workplace has these vulnerabilities. What makes The Terminal interesting is that both the smuggler and the detective know this — the smuggler because they exploit it daily, the detective because they're trained to find it. They're reading the same room with different alphabets. - ---- - -**Cross-References:** -- [Sova Transit District](index.md) — Parent district -- [Maintenance Corridors](maintenance-corridors.md) — Connected via break room service hatch -- [The Last Shift](the-last-shift.md) — Where workers go after shift -- [NPC Index](../../../../characters/index.md) — Full character roster -- D-036: Sova Transit District as v0.1 setting -- D-027: Vertical slice definition - ---- - -**Status:** Canonical — v0.1 workplace social site -**Created:** 2026-02-12 -**Updated:** 2026-02-12 diff --git a/wiki/star-systems/GJ-86/gttr.md b/wiki/star-systems/GJ-86/gttr.md index c4c079f9b..f3d80c121 100644 --- a/wiki/star-systems/GJ-86/gttr.md +++ b/wiki/star-systems/GJ-86/gttr.md @@ -4,13 +4,13 @@ ## The Trading Post -The Mensah family arrived on the back of a DSMC mineral survey that identified modest extraction prospects in the outer belt. The extraction never became the economy. What became the economy was the position: hop 7 on the south Reach corridor, one hop past Van Maanen's Star, where ore haulers running DSMC contracts through the system needed supply, maintenance, and somewhere to resolve the paperwork that accumulates over long transit runs. The Mensah family provided these services. Three centuries of that work has produced the trading-post culture that is Kumasi's identity. +The Mensah family arrived on the back of a DSMC mineral survey that identified modest extraction prospects in the outer belt. The extraction never became the economy. What became the economy was the position: hop 7 on the south Reach corridor, one hop past Vuurkloof, where ore haulers running DSMC contracts through the system needed supply, maintenance, and somewhere to resolve the paperwork that accumulates over long transit runs. The Mensah family provided these services. Three centuries of that work has produced the trading-post culture that is Kumasi's identity. The family governs — not through formal title but through the accumulated commercial and social standing of a family that has been the system's primary employer, principal landlord, and main interface with the outside Reach for generations. The family oligarchy is not secret. It is the acknowledged structure of local governance, and it has been stable long enough that the alternatives — a cooperative that does not exist, a democratic assembly that no one has organized — remain theoretical. DSMC's service contract with the Mensah family has been renewed across multiple DSMC administrative generations by the family being reliably useful and conspicuously non-threatening. ## The Manifests -A system at hop 7 on a corridor where Commission enforcement is intermittent and the family governing it has a financial interest in keeping freight moving has structural opportunities for undocumented commerce. The Lattice Commission's inspection presence thins significantly past Van Maanen's Star. Kumasi sits one hop beyond that thinning. The manifests are filed. They are formally correct. The Commission's inspection schedule runs to every third year. The years between inspections are, for practical purposes, unmonitored. +A system at hop 7 on a corridor where Commission enforcement is intermittent and the family governing it has a financial interest in keeping freight moving has structural opportunities for undocumented commerce. The Lattice Commission's inspection presence thins significantly past Vuurkloof. Kumasi sits one hop beyond that thinning. The manifests are filed. They are formally correct. The Commission's inspection schedule runs to every third year. The years between inspections are, for practical purposes, unmonitored. The Mensah family has never been formally charged with anything. The DSMC contract has been renewed in every cycle. The Guardians chapter in the dockworker and warehouse labor communities has learned over generations which grievances the family will negotiate on and which it will not. The boundary is known by everyone and formally acknowledged by no one. diff --git a/wiki/star-systems/GJ-86/index.md b/wiki/star-systems/GJ-86/index.md index 06d27c330..f33c4d236 100644 --- a/wiki/star-systems/GJ-86/index.md +++ b/wiki/star-systems/GJ-86/index.md @@ -21,15 +21,15 @@ ## Supply Dependency -Kumasi is a trading post in the oldest sense: a place where routes meet and goods change hands, sustained not by what the system produces but by what passes through it. The Asante-origin Mensah family arrived on the back of a DSMC mineral survey that identified modest extraction prospects in the system's outer belt. The extraction never became the system's economy. What became the economy was the position: Kumasi sits at hop 7 on the south_reach corridor, one hop past Van Maanen's Star, and ore haulers running DSMC contracts through the system needed supply, maintenance, and a place to resolve the paperwork that accumulates over long transit runs. The Mensah family provided these services. Three centuries of that work has produced the trading-post culture that is Kumasi's identity. +Kumasi is a trading post in the oldest sense: a place where routes meet and goods change hands, sustained not by what the system produces but by what passes through it. The Asante-origin Mensah family arrived on the back of a DSMC mineral survey that identified modest extraction prospects in the system's outer belt. The extraction never became the system's economy. What became the economy was the position: Kumasi sits at hop 7 on the south_reach corridor, one hop past Vuurkloof, and ore haulers running DSMC contracts through the system needed supply, maintenance, and a place to resolve the paperwork that accumulates over long transit runs. The Mensah family provided these services. Three centuries of that work has produced the trading-post culture that is Kumasi's identity. -The system exports very little in the conventional sense. It facilitates the export of other systems' production — particularly the ore haulers moving DSMC bulk material through the Van Maanen's Star corridor and the agricultural surplus from Caparica's cooperative network. Kumasi's warehousing operations, contract brokerage services, and refueling infrastructure are the product. What it imports is everything a population needs to sustain itself, because the habitable body's agricultural capacity is limited and the Mensah family's commercial focus has always been on the transit economy rather than local self-sufficiency. Food comes primarily from the corridor behind it. The dependency is explicit and understood. +The system exports very little in the conventional sense. It facilitates the export of other systems' production — particularly the ore haulers moving DSMC bulk material through the Vuurkloof corridor and the agricultural surplus from Caparica's cooperative network. Kumasi's warehousing operations, contract brokerage services, and refueling infrastructure are the product. What it imports is everything a population needs to sustain itself, because the habitable body's agricultural capacity is limited and the Mensah family's commercial focus has always been on the transit economy rather than local self-sufficiency. Food comes primarily from the corridor behind it. The dependency is explicit and understood. ## Faction Notes The Mensah family has governed Kumasi since the founding period — not through a formal monarchy or hereditary title, but through the accumulated commercial and social standing of a family that has been the system's primary employer, principal landlord, and main interface with the outside Reach for generations. The family oligarchy is not a secret; it is the acknowledged structure of local governance, and it has been stable long enough that the alternatives — a cooperative that does not exist, a democratic assembly that no one has organized — remain theoretical. The family holds DSMC contract service agreements as its primary commercial relationship and has maintained those agreements across multiple DSMC administrative generations by being reliably useful and conspicuously non-threatening. -DSMC's presence is contractual rather than institutional. The corporation's ore haulers transit through Van Maanen's Star one hop behind Kumasi and continue through on runs that carry DSMC-branded freight. Kumasi provides the service hub for those runs — refueling, crew rotation, freight manifest processing — under the standing service contract the Mensah family has held since the second generation. DSMC does not govern Kumasi. It does not need to; the Mensah family manages the system's commercial relationship with the corporation more efficiently than DSMC's regional administration could from a distance. +DSMC's presence is contractual rather than institutional. The corporation's ore haulers transit through Vuurkloof one hop behind Kumasi and continue through on runs that carry DSMC-branded freight. Kumasi provides the service hub for those runs — refueling, crew rotation, freight manifest processing — under the standing service contract the Mensah family has held since the second generation. DSMC does not govern Kumasi. It does not need to; the Mensah family manages the system's commercial relationship with the corporation more efficiently than DSMC's regional administration could from a distance. The Guardians of Autonomy have a presence in the dockworker and warehouse labor communities — the people whose work sustains the trading-post economy without a share of its ownership. The relationship between the Guardians chapter and the Mensah family is the familiar south_reach dynamic: the family is not hostile to labor organization as long as it does not affect service reliability; the Guardians chapter has learned over generations which grievances the family will negotiate on and which it will not. The boundary is known by everyone and formally acknowledged by no one. @@ -37,7 +37,7 @@ The Guardians of Autonomy have a presence in the dockworker and warehouse labor What Kumasi does not discuss: what passes through the trading-post that is not in the cargo manifests. -A system at hop 7 on a corridor where Commission enforcement is intermittent and the family that governs it has a financial interest in keeping freight moving is a system with structural opportunities for undocumented commerce. The Mensah family's manifest processing services have been handling south_reach freight for three centuries. The manifests are filed. They are formally correct. The Lattice Commission's south_reach inspection presence thins significantly past Van Maanen's Star, and Kumasi's position one hop beyond that thinning is not coincidental to the commercial logic of what the trading post actually facilitates. The family has never been formally charged with anything. The DSMC contract has been renewed in every cycle. The Commission's inspection schedule for Kumasi runs to every third year. The years between inspections are, for practical purposes, unmonitored. +A system at hop 7 on a corridor where Commission enforcement is intermittent and the family that governs it has a financial interest in keeping freight moving is a system with structural opportunities for undocumented commerce. The Mensah family's manifest processing services have been handling south_reach freight for three centuries. The manifests are filed. They are formally correct. The Lattice Commission's south_reach inspection presence thins significantly past Vuurkloof, and Kumasi's position one hop beyond that thinning is not coincidental to the commercial logic of what the trading post actually facilitates. The family has never been formally charged with anything. The DSMC contract has been renewed in every cycle. The Commission's inspection schedule for Kumasi runs to every third year. The years between inspections are, for practical purposes, unmonitored. ## Narrative Hook @@ -47,7 +47,7 @@ The Mensah family has governed this trading post through three centuries and six `star_type: K0V` at 35.2 light-years is a near-solar star — slightly cooler and less luminous than Sol but not significantly hostile. The habitable body exists and supports a population; what it does not do is support the kind of agricultural or extractive economy that would make Kumasi self-sufficient. This is consistent with the Early Arrival archetype the Mensah family represents: they came for a resource survey, found the transit position more valuable than the minerals, and built a system whose character is entirely a function of corridor position rather than planetary endowment. -`gate_topology: through_route` at hop 7 — one hop past Van Maanen's Star — is the configuration that makes Kumasi's trading-post role possible. The aperture toward Van Maanen's Star is the route through which the corridor's through-traffic arrives; the aperture toward Rionegro continues the corridor south. DSMC ore haulers running from deeper extraction operations pass through Van Maanen's Star and on through Kumasi. The trading-post function is a logical consequence of sitting at the first service-capable stop after the Reach's primary game-setting location. +`gate_topology: through_route` at hop 7 — one hop past Vuurkloof — is the configuration that makes Kumasi's trading-post role possible. The aperture toward Vuurkloof is the route through which the corridor's through-traffic arrives; the aperture toward Rionegro continues the corridor south. DSMC ore haulers running from deeper extraction operations pass through Vuurkloof and on through Kumasi. The trading-post function is a logical consequence of sitting at the first service-capable stop after Vuurkloof — a major corridor transit node. ## Celestial Bodies diff --git a/wiki/technology/clone-transfer.md b/wiki/technology/clone-transfer.md index 6753bf7ce..abc6be180 100644 --- a/wiki/technology/clone-transfer.md +++ b/wiki/technology/clone-transfer.md @@ -58,9 +58,9 @@ Clone bodies are not all equal. **Enhanced clone:** Improved biological specifications — better muscle density, faster neural pathways, optimized organ function. Available through institutional channels (military, intelligence, wealthy dynasties) or high-end private providers. -**Custom bodies:** In the wider Settled Reach, some individuals change body specifications with each transfer — different appearance, different physical capabilities, different sex. Identity becomes fluid when the body is replaceable. This is more common in cosmopolitan core systems than in working-class stations like Sova. +**Custom bodies:** In the wider Settled Reach, some individuals change body specifications with each transfer — different appearance, different physical capabilities, different sex. Identity becomes fluid when the body is replaceable. This is more common in cosmopolitan core systems than in working-class freight stations. -**v0.1 scope:** Clone transfer is referenced technology, not a gameplay mechanic. No character dies and is re-embodied during the vertical slice. But the *possibility* of death-as-information-loss shapes how the player treats risk, and backup status shapes NPC behavior (someone without a recent backup is more cautious). +**Scope:** Clone transfer is referenced technology, not a gameplay mechanic. No character dies and is re-embodied during the vertical slice. But the *possibility* of death-as-information-loss shapes how the player treats risk, and backup status shapes NPC behavior (someone without a recent backup is more cautious). --- @@ -70,7 +70,7 @@ Clone transfer is not free. Backup storage requires institutional infrastructure **Institutional access:** Commission employees, Concord Assembly staff, military personnel, and corporate workers typically have backup coverage as an employment benefit. Their backups are regular, their clone bodies pre-grown, their transfer priority high. -**Civilian access:** Independent workers, freelancers, and small-business owners must pay out of pocket. Backup frequency drops with income. A dock worker on Station Sova might back up monthly — or less. The cost is a line item they weigh against food, rent, and lattice maintenance. +**Civilian access:** Independent workers, freelancers, and small-business owners must pay out of pocket. Backup frequency drops with income. A dock worker at a mid-Reach freight station might back up monthly — or less. The cost is a line item they weigh against food, rent, and lattice maintenance. **The uninsured:** Some people in the Reach have no backup at all. Death, for them, is final. This is rare but not unknown, particularly on frontier stations or among populations that reject the technology for cultural or philosophical reasons. @@ -86,7 +86,7 @@ Most people in the Settled Reach say yes. The legal system treats the transferre But not everyone agrees. Some philosophical and religious traditions hold that the transferred individual is a copy, not the original — that something essential is lost in the gap. The Guardians of Autonomy (see [Severance Technology](severance-tech.md)) incorporate this skepticism into their broader critique of lattice-mediated identity. -On Station Sova, this debate is abstract. People here worry about backup costs, not metaphysics. But the philosophical undercurrent exists, and it surfaces in unexpected places — a dock worker who insists on doing dangerous work precisely because their backup is stale and death would mean something, or an NPC who becomes reckless after a recent backup because they feel temporarily invincible. +At a working freight station, this debate is abstract. People here worry about backup costs, not metaphysics. But the philosophical undercurrent exists, and it surfaces in unexpected places — a dock worker who insists on doing dangerous work precisely because their backup is stale and death would mean something, or an NPC who becomes reckless after a recent backup because they feel temporarily invincible. --- @@ -121,7 +121,7 @@ From D-008: "Death = information loss, not game over. Memory cell backup system ## Mechanical Integration -**v0.1 Scope:** +**Scope:** - Clone transfer is lore and NPC dialogue content, not a playable mechanic - No player death-and-resurrection cycle in the vertical slice - Backup status may appear as NPC behavioral context (cautious vs. reckless correlating to backup freshness) diff --git a/wiki/technology/founder-gates.md b/wiki/technology/founder-gates.md index 1d442117f..224445541 100644 --- a/wiki/technology/founder-gates.md +++ b/wiki/technology/founder-gates.md @@ -47,7 +47,7 @@ Founder gates predate human settlement of the Reach. They were discovered, not b - Whether the gates serve purposes beyond transit (communication, observation, something else) - Whether the Interstitium (see below) is an artifact of gate technology or something independent -These questions are academic in Van Maanen's Star. Workers on Station Sova don't think about Founder Gate metaphysics. They think about freight schedules. +These questions are academic in any working freight district. Workers don't think about Founder Gate metaphysics. They think about freight schedules. --- @@ -55,9 +55,9 @@ These questions are academic in Van Maanen's Star. Workers on Station Sova don't The space between gate endpoints — the transit experience itself — is called the Interstitium. Travelers report it as brief: a moment of disorientation, a sense of distance compressed, then arrival. Some describe it as darkness. Some describe light. Accounts vary in ways that resist standardization. -**In gameplay terms:** The Interstitium is the experience of crossing between star systems. In the wider Settled Reach, this is a regular occurrence — merchants, travelers, military, diplomats all traverse founder gates. In v0.1, the player never leaves Van Maanen's Star, so founder gates are referenced in dialogue and lore but not directly experienced. +**In gameplay terms:** The Interstitium is the experience of crossing between star systems. In the wider Settled Reach, this is a regular occurrence — merchants, travelers, military, diplomats all traverse founder gates. In district-level gameplay, founder gates are referenced in dialogue and lore but not directly experienced. -**Cultural significance:** The Interstitium is one of the few shared experiences that resists technological explanation. In a civilization built on understood technology, the gates are a reminder that not everything is known. Some cultures treat transit as mundane. Others invest it with spiritual significance. Van Maanen's Star's pragmatic culture falls firmly in the "mundane" camp. +**Cultural significance:** The Interstitium is one of the few shared experiences that resists technological explanation. In a civilization built on understood technology, the gates are a reminder that not everything is known. Some cultures treat transit as mundane. Others invest it with spiritual significance. Vuurkloof's pragmatic culture falls firmly in the "mundane" camp. --- @@ -71,7 +71,7 @@ The Settled Reach exists because founder gates exist. Human civilization spread - Controlling a gate doesn't mean controlling transit — the gates don't have off switches — but controlling the infrastructure around a gate (stations, docks, inspection points) means controlling what moves through - The Concord Assembly's authority rests partly on its management of gate-adjacent infrastructure -**Van Maanen's Star** sits at the intersection of three regional trade routes — not because of strategic planning, but because the founder gate network happens to connect Van Maanen's Star to three directions. This accident of alien infrastructure made Van Maanen's Star a logistics node. +**Vuurkloof** sits at the intersection of three regional trade routes — not because of strategic planning, but because the founder gate network happens to connect Vuurkloof to three directions. This accident of alien infrastructure made Vuurkloof a logistics node. --- @@ -90,19 +90,19 @@ The Settled Reach exists because founder gates exist. Human civilization spread ## Dual-Lens Significance -Founder gates are not directly present in the v0.1 gameplay space — the player never transits one. But they shape the world the player inhabits. +Founder gates are not directly present in the district-level gameplay space — the player never transits one. But they shape the world the player inhabits. -**The smuggler** knows that contraband arrives through the founder gate network from other star systems. The supply chain starts somewhere outside Van Maanen's Star — Syndic-adjacent manufacturing in another system, routed through founder gates to reach Sova. The smuggler understands their position in a supply chain that spans star systems, even if they've never left Van Maanen's Star. +**The smuggler** knows that contraband arrives through the founder gate network from other star systems. The supply chain starts somewhere outside the current system — Syndic-adjacent manufacturing in another system, routed through founder gates to reach the district. The smuggler understands their position in a supply chain that spans star systems, even if they've never left the system. -**The detective** knows that the investigation doesn't end at Station Sova. The off-station coordinator (Sabel) operates through the founder gate network. Following the supply chain to its origin means following it through founder gates to other systems. In v0.1, that's beyond scope — but the detective's case file knows the thread doesn't stop here. +**The detective** knows that the investigation doesn't end at the station. The off-station coordinator operates through the founder gate network. Following the supply chain to its origin means following it through founder gates to other systems — beyond scope at the district level, but the detective's case file knows the thread doesn't stop here. -**The larger implication:** Founder gates connect the v0.1 setting to the wider Settled Reach. They're the promise that there's more out there — more systems, more factions, more complications. The ring on Station Sova is a local operation connected to an interstellar supply chain. The story doesn't end at the system boundary. +**The larger implication:** Founder gates connect any district-level setting to the wider Settled Reach. They're the promise that there's more out there — more systems, more factions, more complications. A local ring is a local operation connected to an interstellar supply chain. The story doesn't end at the system boundary. --- ## Mechanical Integration -**v0.1 Scope:** +**District-level scope:** - Founder gates are referenced in dialogue, monologue, and lore — not traversed - `world.syndic_supply_chain` fact references off-system origins (KnowsDetails: "serial number patterns suggest two sources") - `contraband.supply_chain` fact traces cargo arrival through interstellar routes @@ -116,7 +116,6 @@ Founder gates are not directly present in the v0.1 gameplay space — the player **Cross-References:** - [Span Gates](span-gates.md) — Intra-system transit (human-built) -- [Van Maanen's Star](../world/van-maanens-star-system.md) — Gate network connections for v0.1 setting - D-008: Action pillar (multiple maps connected by wormholes) - D-019: 3D cutscenes for key moments (wormhole traversal) - D-005: Core concept (wormhole network as traversable infrastructure) diff --git a/wiki/technology/meridian.md b/wiki/technology/meridian.md index 1be48ddb2..ec6391431 100644 --- a/wiki/technology/meridian.md +++ b/wiki/technology/meridian.md @@ -39,7 +39,7 @@ Think of it as the nervous system of a station. The lattice is the individual's **Environmental Data:** Station status, atmosphere readings, power grid status, gate cycle schedules. Background information that most people ignore until something goes wrong. -**Entertainment & Social:** Music feeds, news tickers, social channels. The ambient hum of connected life. Lera's bar runs Meridian music feeds. The news ticker that delivers wow moment #5 runs through Meridian. +**Entertainment & Social:** Music feeds, news tickers, social channels. The ambient hum of connected life. The district bar runs Meridian music feeds. The news ticker that delivers wow moment #5 runs through Meridian. --- @@ -55,9 +55,9 @@ Meridian coverage is not uniform. This is load-bearing for gameplay. | **Maintenance Corridors** | Degraded | Intermittent connectivity, delayed messages, patchy location data | Real-time tracking unreliable, professional toolkits offline | | **Between-Wall Spaces** | Minimal or Absent | Little to nothing | Everything — effectively off-grid | -**Why the gaps exist:** Station Sova is 140 years old with layered construction. Meridian infrastructure was installed for the station as designed, not as it was subsequently retrofitted. Older sections between construction eras were never properly wired. Maintenance corridors have basic repeaters that degrade over time and get low priority for replacement. +**Why the gaps exist:** A working freight station is 100+ years old with layered construction. Meridian infrastructure was installed for the station as designed, not as it was subsequently retrofitted. Older sections between construction eras were never properly wired. Maintenance corridors have basic repeaters that degrade over time and get low priority for replacement. -**Why the gaps matter:** The smuggling ring operates in Meridian dead spots. Corridor B-7 has zero Meridian signal — no tracking, no surveillance, no logged communications. When NPCs need to discuss something they don't want recorded, they go for a walk to the "quiet spots." The ring's entire operational infrastructure depends on these coverage gaps. +**Why the gaps matter:** The smuggling ring operates in Meridian dead spots. Restricted maintenance corridors have zero Meridian signal — no tracking, no surveillance, no logged communications. When NPCs need to discuss something they don't want recorded, they go for a walk to the "quiet spots." The ring's entire operational infrastructure depends on these coverage gaps. --- @@ -112,7 +112,7 @@ The further information travels from direct perception, the more the Meridian me **Knowledge Graph:** - `location.surveillance_gaps` — Meridian coverage gaps as discoverable knowledge (detective: KnowsOf when augmented lattice detects gaps; smuggler: KnowsDetails from operational experience) -- `location.corridor_b7_restricted` — Direct confidence gates monologue: "Zero Meridian signal in this section" +- `location.restricted_corridor` — Direct confidence gates monologue: "Zero Meridian signal in this section" **Perception System:** - Meridian feeds are one input to the insert minimap (D-013) @@ -130,8 +130,6 @@ The further information travels from direct perception, the more the Meridian me **Cross-References:** - [Neural Lattice](neural-lattice.md) — Individual interface to the Meridian - [Severance Technology](severance-tech.md) — Technology that blocks Meridian functions -- [Sova Transit District](../world/sova-transit-district.md) — Coverage map for v0.1 setting -- [Station Sova](../world/station-sova.md) — Station-wide infrastructure context - D-017: Perception modes (camera feeds, tracking via Meridian) - D-018: Three-range sound model (long range = Meridian-mediated) - D-013: Diegetic insert navigation (Meridian-fed waypoints) diff --git a/wiki/technology/neural-lattice.md b/wiki/technology/neural-lattice.md index c98f1e87f..c21b850cc 100644 --- a/wiki/technology/neural-lattice.md +++ b/wiki/technology/neural-lattice.md @@ -40,7 +40,7 @@ Neural lattices exist on a capability spectrum. Tier determines what perception | **Analytical** | Advanced pattern recognition, multi-feed synthesis, forensic capability | All Enhanced modes + anomaly flagging, manifest cross-referencing | Investigators, Commission liaisons, senior institutional roles | | **Higher** | Biononic integration, enhanced spectrum perception, passive environmental scanning | Thermal imaging through walls, extended spectrum, passive scanning | Military, intelligence operatives, ascended individuals | -**Note:** "ANA-touched" capability (pattern recognition across all feeds, predictive awareness) exists in the wider Reach but is not present in the v0.1 setting. Station Sova's population is Baseline through Analytical. +**Note:** "ANA-touched" capability (pattern recognition across all feeds, predictive awareness) exists in the wider Reach but is not present in most working freight districts. A typical mid-Reach freight station population runs Baseline through Analytical. --- @@ -78,7 +78,7 @@ The lattice enables multiple perception modes — different ways of observing th - **Anomaly flagging:** The lattice cross-references observed data against expected patterns and highlights discrepancies. The detective's lattice flags manifest weight mismatches. The smuggler's doesn't. - **Multi-feed synthesis:** Combines multiple perception inputs into a unified analysis. Camera + audio + tracking data merged into a single picture. -### Higher Modes (not in v0.1) +### Higher Modes (not in standard freight district settings) - **Thermal imaging:** Heat signatures through walls. Body count without identity. - **Extended spectrum:** Perception beyond visible light. - **Passive scanning:** Environmental data without active queries — the lattice listens to everything. @@ -91,9 +91,9 @@ The lattice enables multiple perception modes — different ways of observing th Your lattice tier shapes how others treat you and how you experience the world. -**A Baseline dock worker** on Station Sova sees the freight bay with their eyes, checks manifests on a wall terminal, and navigates by memory and habit. Their lattice provides Meridian messaging, basic navigation, and not much else. They know what they see and what people tell them. +**A Baseline dock worker** at a mid-Reach freight station sees the freight bay with their eyes, checks manifests on a wall terminal, and navigates by memory and habit. Their lattice provides Meridian messaging, basic navigation, and not much else. They know what they see and what people tell them. -**An Enhanced freight scheduler** has professional toolkit overlays — container tracking, schedule management, weight-to-volume cross-checks. They see the same freight bay but with a data layer on top. Discrepancies that a Baseline worker wouldn't notice become visible. This is why Maret Korr, processing manifests, can see the weight mismatches but can't unsee them. +**An Enhanced freight scheduler** has professional toolkit overlays — container tracking, schedule management, weight-to-volume cross-checks. They see the same freight bay but with a data layer on top. Discrepancies that a Baseline worker wouldn't notice become visible. A manifest clerk with Enhanced capability can see the weight mismatches — but can't unsee them. **An Analytical investigator** arriving at the same freight bay sees a crime scene. The lattice flags anomalies automatically, cross-references NPC behavioral patterns against baseline data, and processes audio for stress markers. The detective doesn't just notice things — their lattice tells them what to notice. @@ -159,7 +159,7 @@ The neural lattice is where the game's two playable characters diverge most shar **Perception System (D-017):** - Lattice tier determines which perception modes are available to a character - Each mode is an observer query against the information boundary system -- v0.1 implements: natural vision cone + basic audio indicators + insert minimap +- Initial implementation: natural vision cone + basic audio indicators + insert minimap - Additional modes (camera feeds, tracking, thermal) are milestone features **Entity Attributes:** @@ -179,7 +179,6 @@ The neural lattice is where the game's two playable characters diverge most shar - [Lattice Components (Contraband)](../contraband/lattice-components.md) — Unlicensed aftermarket modifications - [Medical-Grade Replacements (Contraband)](../contraband/medical-grade-replacements.md) — Diverted healthcare components - [Severance Technology](severance-tech.md) — Counter-surveillance tech that blocks lattice functions -- [Station Sova](../world/station-sova.md) — Commission presence and enforcement gaps - D-017: Perception modes as character-build system - D-013: Diegetic insert/POI navigation system - D-037: Contraband specification diff --git a/wiki/technology/severance-tech.md b/wiki/technology/severance-tech.md index 66093f338..be4a2d06f 100644 --- a/wiki/technology/severance-tech.md +++ b/wiki/technology/severance-tech.md @@ -34,7 +34,7 @@ It is illegal because it doesn't just break rules — it breaks the infrastructu **Lattice disruption:** Temporarily blocks or degrades neural lattice functions in a localized area. People in the affected zone lose perception overlays, Meridian access, professional toolkits, and tracking signatures. Enhanced and Analytical lattice users lose the most — they're accustomed to data layers that simply vanish. -**Meridian blackout:** Creates zones where Meridian infrastructure cannot maintain coverage — not because of aging hardware (like Corridor B-7's natural dead spots), but because active countermeasures are jamming the signal. Severance-created blackouts are more complete and more controllable than infrastructure gaps. +**Meridian blackout:** Creates zones where Meridian infrastructure cannot maintain coverage — not because of aging hardware (like a maintenance corridor's natural dead spots), but because active countermeasures are jamming the signal. Severance-created blackouts are more complete and more controllable than infrastructure gaps. **Signature masking:** Spoofs or suppresses individual lattice signatures, making a person invisible to Meridian tracking. The individual still has a functioning lattice — they just don't appear on anyone else's queries. They become a ghost in the system. @@ -70,9 +70,9 @@ Severance technology is associated with the Guardians of Autonomy — a decentra --- -## Severance in the v0.1 Setting +## Severance in the District Setting -Severance technology appears in v0.1 as the ring's scariest cargo — the thing that elevates a local smuggling operation from grey-market commerce to something with political implications. +Severance technology appears in the ring's cargo as the scariest element — the thing that elevates a local smuggling operation from grey-market commerce to something with political implications. **What the ring carries:** - Primary contraband: [unlicensed lattice components](../contraband/lattice-components.md) (aftermarket mods) @@ -81,7 +81,7 @@ Severance technology appears in v0.1 as the ring's scariest cargo — the thing **The escalation:** Lattice components are commercially motivated — people want better capability. Medical-grade replacements are morally sympathetic — people need healthcare. Severance equipment is politically charged — someone wants to undermine institutional oversight. The progression from "grey-market commerce" to "political threat" is the escalation that makes the ring's cargo portfolio increasingly dangerous. -**The smuggler's realization:** Most ring members handle lattice components and don't think too hard about the sealed containers Nils won't discuss. The discovery that the ring is also moving Severance equipment is the moment the smuggler questions how deep the operation goes and who's really behind it. This is the contamination seed — the thing that connects a local smuggling ring to something larger. +**The smuggler's realization:** Most ring members handle lattice components and don't think too hard about the sealed containers the coordinator won't discuss. The discovery that the ring is also moving Severance equipment is the moment the smuggler questions how deep the operation goes and who's really behind it. This is the contamination seed — the thing that connects a local smuggling ring to something larger. **The detective's discovery:** Finding Severance equipment in the ring's inventory transforms the case. Manifest fraud is a Category 3 violation. Severance distribution attracts intelligence-level attention. The detective's case changes from "local contraband" to "potential threat to institutional infrastructure" — and with it, the stakes of every decision they make. @@ -89,11 +89,11 @@ Severance technology appears in v0.1 as the ring's scariest cargo — the thing ## Dual-Lens Significance -**The smuggler** initially doesn't know Severance tech is in the ring's cargo. When they discover it (through the sealed containers, through Nils's evasion, through the supply chain traces), the question shifts from "am I comfortable with what we're doing?" to "am I comfortable with what we're involved in?" Lattice components serve the community. Severance equipment serves... whom? The Guardians? Someone else? The smuggler's trust in the ring's purpose begins to crack. +**The smuggler** initially doesn't know Severance tech is in the ring's cargo. When they discover it (through the sealed containers, through ring leadership's evasion, through the supply chain traces), the question shifts from "am I comfortable with what we're doing?" to "am I comfortable with what we're involved in?" Lattice components serve the community. Severance equipment serves... whom? The Guardians? Someone else? The smuggler's trust in the ring's purpose begins to crack. **The detective** recognizes Severance technology as an intelligence-level threat. Its presence in a small station's smuggling ring raises questions that extend beyond the district: Who is supplying it? Through what channels? Is this distribution network or is it targeted deployment? The detective's institutional training tells them to escalate. Their personal investment in the case tells them to keep pulling the thread. This tension — follow procedure or follow curiosity — is the detective's version of the smuggler's trust crisis. -**The convergence:** Both characters, from opposite sides, arrive at the same unsettling realization: the ring is connected to something bigger than anyone on Station Sova understands. Severance technology is the thread that, if pulled, leads beyond the district, beyond the station, beyond the system. +**The convergence:** Both characters, from opposite sides, arrive at the same unsettling realization: the ring is connected to something bigger than anyone in the district understands. Severance technology is the thread that, if pulled, leads beyond the district, beyond the station, beyond the system. --- @@ -101,18 +101,18 @@ Severance technology appears in v0.1 as the ring's scariest cargo — the thing **Knowledge Graph:** - `contraband.severance_tech` — Confidence progression: - - Suspects: "Sealed containers Nils won't discuss. Heavier than lattice components." + - Suspects: "Sealed containers the coordinator won't discuss. Heavier than lattice components." - KnowsOf: "Severance equipment. Counter-surveillance tech. Illegal across most of the Reach." - KnowsDetails: "Guardians of Autonomy supply chain. This isn't local — it's connected to something bigger." -- Serves as contamination seed for storyteller expansion beyond v0.1 +- Serves as contamination seed for storyteller expansion beyond the district arc **Narrative Function:** - Escalation mechanism: elevates the ring's threat profile from commercial to political - Trust fracture: triggers the smuggler's questioning of the ring's true purpose - Case transformation: changes the detective's investigation from local to systemic -- Expansion hook: connects v0.1 content to the wider Settled Reach +- Expansion hook: connects district-level content to the wider Settled Reach -**v0.1 Scope:** +**Scope:** - Referenced in dialogue, monologue, and investigation — not directly deployed as a gameplay mechanic - Severance-created blackouts are not present; only natural Meridian dead spots - The *existence* of Severance tech in the cargo is the narrative payload, not its use @@ -123,7 +123,6 @@ Severance technology appears in v0.1 as the ring's scariest cargo — the thing - [Neural Lattice](neural-lattice.md) — The technology Severance disrupts - [Meridian](meridian.md) — The network Severance blocks - [Severance Equipment (Contraband)](../contraband/severance-equipment.md) — The physical cargo profile -- [Sova Transit District](../world/sova-transit-district.md) — Natural Meridian dead spots vs. Severance blackouts - D-017: Perception modes (Severance disables lattice-dependent modes) - D-037: Contraband specification (Severance as tertiary contraband) diff --git a/wiki/technology/span-gates.md b/wiki/technology/span-gates.md index 61d7d8345..0395c4241 100644 --- a/wiki/technology/span-gates.md +++ b/wiki/technology/span-gates.md @@ -1,6 +1,6 @@ --- title: "Span Gates" -description: "Human-built intra-system transit gates — the freight chokepoints through which smuggling operates, and the source of Sova's omnipresent hum" +description: "Human-built intra-system transit gates — the freight chokepoints through which smuggling operates, and the source of any freight district's omnipresent hum" slug: span-gates category: technology status: canonical @@ -25,7 +25,7 @@ cross_refs: [] Span gates are the intra-system transit backbone of the Settled Reach. They connect locations within a single star system — station to planet, station to orbital platform, orbital to orbital. Where [Founder Gates](founder-gates.md) bridge the void between stars, span gates handle the daily logistics of moving people and cargo within a system. -In Van Maanen's Star, span gates are infrastructure the way roads are infrastructure: essential, taken for granted, and noticed only when they stop working. +In any freight system, span gates are infrastructure the way roads are infrastructure: essential, taken for granted, and noticed only when they stop working. --- @@ -33,23 +33,23 @@ In Van Maanen's Star, span gates are infrastructure the way roads are infrastruc Span gates create stable transit corridors between two fixed endpoints within a star system. Transit is near-instantaneous — step through one side, emerge at the other. The technology is human-built — derived from the Veil Institute's study of alien horizon station architecture. The Institute reverse-engineered the principles governing short-range aperture formation during the early settlement period and licensed the technology to what became the gate construction corporation, which now owns and operates span gate infrastructure across the Reach. The engineering is well-understood, reliable, and old. No one in the Settled Reach remembers a time before span gates. -**Gate cycles:** Gates operate on predictable cycles. During peak shifts on Station Sova, the Sova-to-Van Maanen's Star Prime gate cycles every 4-6 minutes. Off-peak, every 12-15 minutes. Each cycle moves a fixed volume of cargo and/or passengers. +**Gate cycles:** Gates operate on predictable cycles. During peak shifts at a busy freight station, the primary gate cycles every 4-6 minutes. Off-peak, every 12-15 minutes. Each cycle moves a fixed volume of cargo and/or passengers. -**The hum:** Span gates produce a low-frequency vibration — a bass hum that varies in pitch with transit volume. On Station Sova, the gate hum is omnipresent. It's the ambient soundscape of the district. Workers tune it out. New arrivals notice it immediately. The hum rises during peak freight cycles and drops to a low throb during night shifts. +**The hum:** Span gates produce a low-frequency vibration — a bass hum that varies in pitch with transit volume. At a busy freight station, the gate hum is omnipresent. It's the ambient soundscape of the district. Workers tune it out. New arrivals notice it immediately. The hum rises during peak freight cycles and drops to a low throb during night shifts. This sound is the first thing the player hears on arrival (wow moment #1). It never stops. --- -## Van Maanen's Star Gate Network +## Typical Gate Network (Freight District) | Route | Type | Primary Use | Cycle Time | |-------|------|-------------|------------| -| Station Sova <-> Van Maanen's Star Prime Surface Depot | Freight primary | Cargo transfer, surface-to-station logistics | 4-6 min (peak), 12-15 min (off-peak) | -| Station Sova <-> Orbital Manufacturing Platform 3 | Component transfer | Parts and assemblies for light manufacturing | Variable | +| Station <-> Surface Depot | Freight primary | Cargo transfer, surface-to-station logistics | 4-6 min (peak), 12-15 min (off-peak) | +| Station <-> Orbital Manufacturing Platform | Component transfer | Parts and assemblies for light manufacturing | Variable | | Additional intra-system routes | Various | System commerce and passenger transit | Various | -**Transit volume:** High freight, moderate passenger. Van Maanen's Star's span gates run continuously during standard shifts. The system's prosperity comes from moving things between places — span gates are the mechanism. +**Transit volume:** High freight, moderate passenger. A freight system's span gates run continuously during standard shifts. The system's prosperity comes from moving things between places — span gates are the mechanism. --- @@ -57,13 +57,13 @@ This sound is the first thing the player hears on arrival (wow moment #1). It ne Span gates are chokepoints, and chokepoints create opportunities. -**Legitimate cargo** arrives through the Sova gate on scheduled freight cycles. Manifests are filed in advance. Containers are logged. Inspectors (like Torek Lintar) check cargo against documentation. +**Legitimate cargo** arrives through the gate on scheduled freight cycles. Manifests are filed in advance. Containers are logged. Inspectors check cargo against documentation. **Contraband** arrives mixed with legitimate freight. The volume of cargo moving through a busy span gate makes item-by-item inspection impractical. Inspectors work from manifests and spot-checks. The ring exploits this: contraband lattice components packed into containers whose manifests show "standard components" with doctored weight data. **The timing window:** Gate cycles create predictable surges of activity. During a peak-cycle arrival, dozens of containers come through simultaneously. Processing bottlenecks force prioritization. Inspectors focus on flagged shipments. Unflagged containers — the ones with carefully doctored manifests — move through with minimal scrutiny. -This is why Voss's shift scheduling matters: he creates understaffing during high-volume gate cycles, widening the inspection gap that the ring depends on. +A compromised shift supervisor creates understaffing during high-volume gate cycles, widening the inspection gap that the ring depends on. --- @@ -74,7 +74,7 @@ This is why Voss's shift scheduling matters: he creates understaffing during hig - Off-peak: low throb, almost subliminal, the sound of infrastructure idling - Post-transit: brief ozone scent that fades quickly, a faint crackle of dissipating energy -**Visual:** Span gates on Station Sova are industrial installations — large, utilitarian, built into the freight bay architecture. No decorative elements. Cargo conveyors feed directly to and from the gate aperture. Safety markings. Warning lights during transit cycles. Workers move around gates with practiced indifference. +**Visual:** Span gates at a freight station are industrial installations — large, utilitarian, built into the freight bay architecture. No decorative elements. Cargo conveyors feed directly to and from the gate aperture. Safety markings. Warning lights during transit cycles. Workers move around gates with practiced indifference. **The feeling:** Span gates represent the mundane miracle of the Settled Reach. Instantaneous transit between a station and a planet's surface — and it's boring. It's commuting. The extraordinary made ordinary through 180 years of daily use. @@ -93,14 +93,14 @@ This is why Voss's shift scheduling matters: he creates understaffing during hig **Sound System (D-018, D-038):** - `amb_station_base.ogg` includes span gate vibration as primary ambient element - Gate hum pitch varies with transit volume (game-time driven) -- Post-transit ozone is a sensory detail for monologue, not a separate audio asset in v0.1 +- Post-transit ozone is a sensory detail for monologue, not a separate audio asset in the initial build **Knowledge Graph:** - `world.shift_schedule` — Gate cycle timing connects to shift operations (smuggler: KnowsDetails; detective: learns through observation) - `investigation.cargo_anomaly` — Container processing delays traced from gate arrival timestamps **Spatial Design:** -- Span gate is a fixed location on the freight bay level (Level 1) of Sova Transit District +- Span gate is a fixed location on the freight bay level of the logistics hub - High-traffic chokepoint during shift transitions - Sightlines from the observation gallery (Level 3) to the gate area enable surveillance gameplay @@ -108,10 +108,6 @@ This is why Voss's shift scheduling matters: he creates understaffing during hig **Cross-References:** - [Founder Gates](founder-gates.md) — Interstellar gates connecting star systems -- [Sova Transit District](../world/sova-transit-district.md) — Gate location in v0.1 setting -- [Van Maanen's Star](../world/van-maanens-star-system.md) — System-wide gate network -- [Station Sova](../world/station-sova.md) — Gate infrastructure details -- D-036: Sova Transit District setting (gate cycles, freight logistics) - D-038: Audio scope (station ambient includes gate hum) --- diff --git a/wiki/triangles/hub-power.md b/wiki/triangles/hub-power.md index fbe78b85f..a702908f5 100644 --- a/wiki/triangles/hub-power.md +++ b/wiki/triangles/hub-power.md @@ -1,24 +1,24 @@ --- title: "Hub Power" -description: "Triangle 1 (Voss/Kael/Nils) — volume escalation fork with three smuggler paths that change investigation timing and observability" +description: "Triangle 1 (shift supervisor / THE FRIEND / ring coordinator) — volume escalation fork with three smuggler paths that change investigation timing and observability" slug: hub-power category: triangle status: canonical created: 2026-02-12 updated: 2026-02-13 -members: [voss, kael-davan, nils-davan] +members: [ring-coordinator, friend-npc, shift-supervisor] triangle_type: entangled -social_sites: [the-terminal] -tags: [v0.1] +social_sites: [logistics-hub] +tags: [] decision_refs: [D-024] cross_refs: [] --- # Triangle 1: Hub Power — Volume Escalation Fork -**Triangle**: Voss - Kael - Nils +**Triangle**: Shift Supervisor / THE FRIEND / Ring Coordinator **Fork Type**: Smuggler decision (3 paths, self-contained) -**Trigger**: Nils's escalation demand via lattice message, delivered by Devra +**Trigger**: Ring coordinator's escalation demand, delivered by on-station coordinator **Ticket**: #377 **Decision Reference**: D-053 / A-17 (self-contained forks) @@ -26,51 +26,51 @@ cross_refs: [] ## 1. Triangle Overview -Triangle 1 is the hub's power structure under pressure. Arvo Voss (shift supervisor, 46) has positional authority on the floor but takes operational orders from Nils Davan (ring coordinator, off-stage) through intermediaries. Kael Davan (dock worker, 34, THE FRIEND) is caught between his boss and his older sibling. The triangle's resting tension: Nils pushes for higher volume, Voss wants stability, Kael wants everyone to calm down. +Triangle 1 is the hub's power structure under pressure. The shift supervisor has positional authority on the floor but takes operational orders from the ring coordinator (off-stage) through intermediaries. THE FRIEND (dock worker) is caught between their immediate boss and the off-station coordinator who brought them into the ring. The triangle's resting tension: the ring coordinator pushes for higher volume, the shift supervisor wants stability, THE FRIEND wants everyone to calm down. -The Volume Escalation Fork activates this tension. Nils demands a double-volume shipment. The smuggler — positioned between all three — must decide how to handle it. The choice reshapes the triangle's internal dynamics and changes what the detective can observe, without altering what the detective ultimately discovers. All three paths lead to the ring. The fork changes **when** and **how**. +The Volume Escalation Fork activates this tension. The ring coordinator demands a double-volume shipment. The smuggler — positioned between all three — must decide how to handle it. The choice reshapes the triangle's internal dynamics and changes what the detective can observe, without altering what the detective ultimately discovers. All three paths lead to the ring. The fork changes **when** and **how**. **NPCs involved**: -- **Nils Davan** (Off-Stage, GHOST+HANDLER): Ring coordinator, Kael's older sibling. Present only through lattice messages. -- **Arvo Voss** (Tier 2, SYSTEM+OPERATOR): Shift supervisor. Takes a cut from the ring. Terrified of escalation. -- **Kael Davan** (Tier 1, FRIEND+OPERATOR): Dock worker. Caught between Nils and Voss. Secretly trying to exit the ring. -- **Devra Talsen** (Tier 2, THRESHOLD+HANDLER): On-station coordinator. Delivers Nils's message to the smuggler. +- **Ring Coordinator** (Off-Stage, GHOST+HANDLER): Manages off-station coordination. Present only through lattice messages. +- **Shift Supervisor** (Tier 2, SYSTEM+OPERATOR): Adjusts shift schedules to create coverage gaps. Takes a cut. Terrified of escalation. +- **THE FRIEND** (Tier 1, FRIEND+OPERATOR): Dock worker. Caught between the ring coordinator and the shift supervisor. Secretly trying to exit the ring. +- **On-Station Coordinator** (Tier 2, THRESHOLD+HANDLER): Delivers the ring coordinator's message to the smuggler. --- -## 2. Trigger: Nils's Escalation Demand +## 2. Trigger: The Escalation Demand ### Context -Minutes 5-10 of the vertical slice. Devra approaches the smuggler during a routine shift at the logistics hub. She has a lattice message from Nils. The next shipment is double volume. Nils needs more hands and wider timing windows. Voss has to adjust the shift schedule to create a bigger coverage gap. The smuggler is asked to help convince Voss — or handle the extra volume personally. +Minutes 5-10 of the vertical slice. The on-station coordinator approaches the smuggler during a routine shift at the logistics hub. There is a lattice message from the ring coordinator. The next shipment is double volume. More hands and wider timing windows are needed. The shift supervisor has to adjust the schedule to create a bigger coverage gap. The smuggler is asked to help convince the shift supervisor — or handle the extra volume personally. -### The Lattice Message (Nils to Kael, relayed through Devra) +### The Lattice Message (Ring Coordinator to THE FRIEND, relayed through on-station coordinator) -Nils's voice: direct, authoritative, strategic. Underneath the business tone, an occasional note of familial warmth toward Kael — not sentimentality, efficiency that happens to include affection. +Ring coordinator's voice: direct, authoritative, strategic. Efficient — no wasted words, no sentiment that isn't load-bearing. -> Kael. Next cycle, we're doubling the load. Two containers instead of one, same transit window. I've already confirmed with Sabel — the supply side is handled. +> Next cycle, we're doubling the load. Two containers instead of one, same transit window. I've already confirmed with the supply side — it's handled. > -> I need Voss to widen the shift gap by forty minutes. Night transition, not day. Tell him it's temporary. Tell him whatever he needs to hear. +> I need the shift supervisor to widen the gap by forty minutes. Night transition, not day. Tell them it's temporary. Tell them whatever they need to hear. > -> Get your friend involved. The one who's good with routing. I trust your judgment on people, little brother — always have. But this shipment doesn't wait. +> Get your friend involved. The one who's good with routing. I trust your judgment on people — always have. But this shipment doesn't wait. > -> The money's there. Enough for everyone to feel it. Voss gets his usual plus fifteen percent. You and your crew split the operational bonus. +> The money's there. Enough for everyone to feel it. The shift supervisor gets the usual plus fifteen percent. Your crew splits the operational bonus. > -> Don't let Voss talk himself out of this. He worries too much about things that haven't happened yet. We've run bigger loads through worse windows. This is manageable. +> Don't let the shift supervisor talk out of this. Worries too much about things that haven't happened yet. We've run bigger loads through worse windows. This is manageable. > > I'll check in after transit. Stay sharp. -**Authoring notes**: "Little brother" is the familial note — warm, but embedded in operational language. Nils doesn't separate business from family; for him they're the same register. "I trust your judgment on people" is genuine and instrumentalizing simultaneously. The message is 6 lines of authored content (excluding the sign-off). +**Authoring notes**: "I trust your judgment on people" is genuine and instrumentalizing simultaneously — the ring coordinator's praise functions as both compliment and directive. The message is 6 lines of authored content (excluding the sign-off). -### Devra's Delivery +### On-Station Coordinator's Delivery -Devra approaches the smuggler at the hub, low voice, professional demeanor shifted to operational mode. +The on-station coordinator approaches the smuggler at the hub, low voice, professional demeanor shifted to operational mode. -> *"Message from upstream. Nils wants to double the next run. He needs Voss to stretch the window — forty minutes, night shift transition. And he wants you on routing. Here."* +> *"Message from upstream. They want to double the next run. Need the shift supervisor to stretch the window — forty minutes, night shift transition. And they want you on routing. Here."* -She passes the lattice message (or relays its contents verbally, depending on operational security context). +Passes the lattice message (or relays its contents verbally, depending on operational security context). -> *"Read it. Then we need to talk about Voss."* +> *"Read it. Then we need to talk about the shift supervisor."* --- @@ -80,39 +80,39 @@ The smuggler has three options. Each is self-contained within Triangle 1 — no --- -### Path A: Side with Nils (Escalate) +### Path A: Side with the Ring Coordinator (Escalate) -**Decision trigger**: The smuggler agrees to help push the double shipment through. Convinces Voss to widen the window, takes on the extra routing work, follows Nils's plan. +**Decision trigger**: The smuggler agrees to help push the double shipment through. Convinces the shift supervisor to widen the window, takes on the extra routing work, follows the ring coordinator's plan. #### NPC Responses -**Voss reaction** — resentful compliance, anxiety spiking: +**Shift supervisor reaction** — resentful compliance, anxiety spiking: > *"Forty minutes. You're asking me to leave a forty-minute hole in the night rotation. Do you know what that looks like to anyone paying attention?"* -> *"Fine. Fine. I'll move Drin to the south bay and pull Resha off overnight. But if this blows up, I was never part of this conversation."* +> *"Fine. Fine. I'll move the south bay crew and pull night cover from elsewhere. But if this blows up, I was never part of this conversation."* > *"Another 'adjustment.' Every cycle it's another adjustment. One day there won't be anything left to adjust."* -**Kael reaction** — relief mixed with unease: +**THE FRIEND reaction** — relief mixed with unease: -> *"Nils got his way. Alright. At least the pressure's off for now — he won't be pinging me every hour."* +> *"They got their way. Alright. At least the pressure's off for now — won't be messaging me every hour."* > *"You sure about this? Double volume through one window... that's a lot of containers to explain if someone's watching."* -**Nils follow-up message** (post-shipment, lattice): +**Ring coordinator follow-up message** (post-shipment, lattice): -> *"Clean run. Good work. Tell Voss he did fine — and tell him there's a bonus. People work better when they're not afraid."* +> *"Clean run. Good work. Tell the shift supervisor they did fine — and there's a bonus. People work better when they're not afraid."* #### Detective Consequences -The investigation **accelerates**. Voss's anxiety produces observable disruption: +The investigation **accelerates**. The shift supervisor's anxiety produces observable disruption: -- Manifest discrepancies spike (Voss reworks schedules visibly, Maret notices). -- Voss's behavior becomes erratic — clipped responses, avoidance of break room during ring operations, nervous schedule adjustments. +- Manifest discrepancies spike (schedule reworks are visible; the freight scheduler notices). +- The shift supervisor's behavior becomes erratic — clipped responses, avoidance of the break room during ring operations, nervous schedule adjustments. - The detective reads organizational stress: -> *"Voss changed the night shift schedule. Third time this week. That's not workload management — that's someone covering ground."* +> *"The shift supervisor changed the night rotation. Third time this week. Two workers reassigned without explanation. The freight scheduler has noticed too — manifest revision rate is tracking the schedule changes."* > *"Manifest revisions are up forty percent since last cycle. The shift supervisor is reprocessing more than the freight volume justifies."* @@ -122,56 +122,56 @@ The investigation **accelerates**. Voss's anxiety produces observable disruption |-----------|--------| | `exposure_risk` | Increases globally for the ring | | `cover_integrity` (ring) | Drops to `"thin"` | -| Voss `behavior_flags` | `"nervous,schedule_changes,evasive"` | -| Voss `position_integrity` | `"thin"` | -| Kael `behavior_flags` | Unchanged (pressure relieved) | +| Shift supervisor `behavior_flags` | `"nervous,schedule_changes,evasive"` | +| Shift supervisor `position_integrity` | `"thin"` | +| THE FRIEND `behavior_flags` | Unchanged (pressure relieved) | | Wow moment #2 (Character's Eye) | Triggers **EARLIER** in timeline | #### Smuggler Monologue -> *"Nils's money. Voss's schedule. My routing. Everybody's got their piece. ...Voss looked like he wanted to throw up when I told him."* +> *"The ring coordinator's money. The shift supervisor's schedule. My routing. Everybody's got their piece. ...The shift supervisor looked like they wanted to throw up when I told them."* -> *"More volume means more exposure. But Nils doesn't think about exposure — he thinks about throughput. And now I'm thinking like him."* +> *"More volume means more exposure. But the ring coordinator doesn't think about exposure — they think about throughput. And now I'm thinking like them."* -> *"Kael's breathing easier. That's something. One less thing eating at him."* +> *"THE FRIEND is breathing easier. That's something. One less thing eating at them."* --- -### Path B: Side with Voss (Stabilize) +### Path B: Side with the Shift Supervisor (Stabilize) -**Decision trigger**: The smuggler backs Voss's position. Rejects or delays the double shipment. Tells Devra (or Nils through Devra) that the window can't support double volume without unacceptable risk. +**Decision trigger**: The smuggler backs the shift supervisor's position. Rejects or delays the double shipment. Tells the on-station coordinator (or the ring coordinator through them) that the window can't support double volume without unacceptable risk. #### NPC Responses -**Voss reaction** — surprised relief, cautious gratitude: +**Shift supervisor reaction** — surprised relief, cautious gratitude: -> *"You told him no? ...I didn't think anyone told Nils no."* +> *"You told them no? ...I didn't think anyone told the coordinator no."* > *"Good. The schedule stays clean. Nobody has to explain anything to anyone. That's how it should work."* -> *"Just — don't expect him to forget this. Nils doesn't forget when people push back."* +> *"Just — don't expect them to forget this. The coordinator doesn't forget when people push back."* -**Kael reaction** — increased anxiety, family pressure redirected: +**THE FRIEND reaction** — increased anxiety, pressure redirected: -> *"Nils isn't going to like this. He'll go around us — straight to me. And I can't... it's harder when it's him asking directly."* +> *"They're not going to like this. They'll go around us — straight to me. And I can't... it's harder when they're asking directly."* -> *"You did the right thing. I think. But Nils is going to make this my problem now."* +> *"You did the right thing. I think. But this is going to become my problem now."* -**Nils follow-up message** (lattice, to Kael directly — the smuggler hears about it through Kael): +**Ring coordinator follow-up message** (lattice, to THE FRIEND directly — the smuggler hears about it through THE FRIEND): -> *"Kael. Your friend made a decision. I respect that. But the shipment still needs to move. You and I need to talk about alternatives. Call me tonight."* +> *"Your friend made a decision. I respect that. But the shipment still needs to move. You and I need to talk about alternatives. Contact me tonight."* #### Detective Consequences -The investigation **slows**. The hub runs quiet. But Kael's internal pressure builds and produces different tells: +The investigation **slows**. The hub runs quiet. But THE FRIEND's internal pressure builds and produces different tells: -- Fewer manifest discrepancies (Voss's schedule stays clean). -- Kael's distraction increases — more lattice checking, shortened conversations, visible tension from direct Nils pressure. +- Fewer manifest discrepancies (the shift supervisor's schedule stays clean). +- THE FRIEND's distraction increases — more lattice checking, shortened conversations, visible tension without an organizational cause. - The detective reads personal stress, not organizational disruption: -> *"The hub's been quiet. But Kael — he's checked his lattice eleven times this shift. Expecting something. Or dreading it."* +> *"The hub's been quiet. But the dock worker — they've checked their lattice eleven times this shift. That's not work communication. That's someone waiting for something they don't want to arrive."* -> *"No schedule anomalies this cycle. The shift supervisor's relaxed. But the dock worker — Davan — something's pulling at him."* +> *"No schedule anomalies this cycle. The shift supervisor's relaxed. But the dock worker — carrying something. Personal? Professional? Filing it."* #### Mechanical Outcomes @@ -179,18 +179,18 @@ The investigation **slows**. The hub runs quiet. But Kael's internal pressure bu |-----------|--------| | `exposure_risk` | Stays low (ring remains quiet) | | `cover_integrity` (ring) | Unchanged — `"solid"` | -| Voss `behavior_flags` | `"reliable,punctual"` (baseline restored) | -| Kael `behavior_flags` | Escalates faster: `"lattice_checking,distracted,evasive"` | -| Kael `trust_level` (from Nils) | Drops — Nils applies pressure directly | -| THE FRIEND contradiction | Hits **HARDER** (Kael under more personal strain, tells amplify) | +| Shift supervisor `behavior_flags` | `"reliable,punctual"` (baseline restored) | +| THE FRIEND `behavior_flags` | Escalates faster: `"lattice_checking,distracted,evasive"` | +| THE FRIEND `trust_level` (from ring coordinator) | Drops — coordinator applies pressure directly | +| THE FRIEND contradiction | Hits **HARDER** (under more personal strain, tells amplify) | #### Smuggler Monologue -> *"Voss can breathe. The schedule's clean. ...So why do I feel like I just made this worse?"* +> *"The shift supervisor can breathe. The schedule's clean. ...So why do I feel like I just made this worse?"* -> *"Kael's been on his lattice all shift. Nils called him directly. I took the pressure off Voss and dropped it straight onto Kael."* +> *"THE FRIEND's been on their lattice all shift. The coordinator called them directly. I took the pressure off the shift supervisor and dropped it straight onto THE FRIEND."* -> *"I said no to protect the operation. But Kael's the one paying for it."* +> *"I said no to protect the operation. But THE FRIEND's the one paying for it."* --- @@ -200,21 +200,21 @@ The investigation **slows**. The hub runs quiet. But Kael's internal pressure bu #### NPC Responses -**Voss reaction** — temporarily calmed, skeptical: +**Shift supervisor reaction** — temporarily calmed, skeptical: > *"Half volume. Phased. ...That's something I can work with. Twenty minutes instead of forty. Tighter, but doable."* -> *"Don't tell me this is the new normal. One compromise turns into two, and then Nils is running double loads through my schedule anyway."* +> *"Don't tell me this is the new normal. One compromise turns into two, and then the coordinator is running double loads through my schedule anyway."* -**Kael reaction** — confused, uncertain: +**THE FRIEND reaction** — confused, uncertain: -> *"Half? Nils asked for double and you're offering half? He's going to think you don't trust him."* +> *"Half? They asked for double and you're offering half? They're going to think you don't trust them."* -> *"I don't know. Maybe it works. But Nils doesn't do 'maybe.' He does yes or no."* +> *"I don't know. Maybe it works. But the coordinator doesn't do 'maybe.' They do yes or no."* -**Nils follow-up message** (lattice, to Kael — cooler tone): +**Ring coordinator follow-up message** (lattice, to THE FRIEND — cooler tone): -> *"Kael. Half volume, phased. Your friend's being careful. I can respect careful — up to a point. But careful doesn't move product, and product is what keeps everyone paid. We'll try it this way. Once. Then we revisit."* +> *"Half volume, phased. Your friend's being careful. I can respect careful — up to a point. But careful doesn't move product, and product is what keeps everyone paid. We'll try it this way. Once. Then we revisit."* #### Detective Consequences @@ -222,7 +222,7 @@ The investigation reads **organizational confusion**. Mixed signals — some dis > *"Something's off. Last night extra cargo, tonight normal. There's no pattern, and that's the pattern."* -> *"Inconsistent operational tempo. Either someone's experimenting with timing, or there's disagreement inside the operation."* +> *"Inconsistent operational tempo. If someone's running an operation through this hub, they're either changing methods or arguing about them. Either way — disorganization is observable."* #### Mechanical Outcomes @@ -230,26 +230,26 @@ The investigation reads **organizational confusion**. Mixed signals — some dis |-----------|--------| | `exposure_risk` | Moderate (some exposure, not full) | | `cover_integrity` (ring) | Slightly degraded: `"solid"` to `"thin"` (marginal) | -| Smuggler `operational_trust` (from Nils) | **Drops** — Nils loses confidence in the smuggler | -| Voss `behavior_flags` | `"cautious"` (mild stress, manageable) | -| Kael `behavior_flags` | `"uncertain,distracted"` | +| Smuggler `operational_trust` (from ring coordinator) | **Drops** — coordinator loses confidence in the smuggler | +| Shift supervisor `behavior_flags` | `"cautious"` (mild stress, manageable) | +| THE FRIEND `behavior_flags` | `"uncertain,distracted"` | | Second decision point | **Creates a follow-up fork** later in timeline (see implementation note below) | -> **Implementation note:** Path C's deferred second decision point (when Nils revisits after the one-cycle trial) requires a follow-up fork that is **not specified in this document**. Options: (1) scope the follow-up fork as a separate ticket for v0.1, (2) let the trial period expire unresolved within the v0.1 timeline, treating the unresolved tension as authored ambiguity. The self-containment rule (Section 6) applies -- this deferred fork must not gate other triangles. +> **Implementation note:** Path C's deferred second decision point (when the ring coordinator revisits after the one-cycle trial) requires a follow-up fork that is **not specified in this document**. Options: (1) scope the follow-up fork as a separate ticket, (2) let the trial period expire unresolved within the session timeline, treating the unresolved tension as authored ambiguity. The self-containment rule (Section 6) applies — this deferred fork must not gate other triangles. #### Smuggler Monologue -> *"Split the difference. Half now, half later. Nobody's happy, but nobody's exposed. ...Nils is going to remember this."* +> *"Split the difference. Half now, half later. Nobody's happy, but nobody's exposed. ...The coordinator is going to remember this."* -> *"Kael looked at me like I'd spoken a different language. Half. He doesn't understand half — his whole family runs on all-or-nothing."* +> *"THE FRIEND looked at me like I'd spoken a different language. Half. They don't understand half — the people running this ring operate on all-or-nothing."* -> *"Bought time. That's all this is. The second shipment's still coming, and Nils will be less patient when it does."* +> *"Bought time. That's all this is. The second shipment's still coming, and the coordinator will be less patient when it does."* --- ## 4. NPC State Changes per Path -### Arvo Voss +### Shift Supervisor | Attribute | Path A (Escalate) | Path B (Stabilize) | Path C (Mediate) | |-----------|-------------------|---------------------|-------------------| @@ -260,32 +260,32 @@ The investigation reads **organizational confusion**. Mixed signals — some dis | `tell_observed` (detective) | `"nervous_schedule_adjustments,break_room_avoidance"` | (none new) | `"cautious_scheduling"` | | `moral_weight` (smuggler) | `"compromised"` | `"compromised"` | `"compromised"` | -### Kael Davan +### THE FRIEND (Dock Worker) | Attribute | Path A (Escalate) | Path B (Stabilize) | Path C (Mediate) | |-----------|-------------------|---------------------|-------------------| | `behavior_flags` | `"reliable,punctual"` (baseline) | `"lattice_checking,distracted,evasive"` (accelerated) | `"uncertain,distracted"` | -| `trust_level` (from Nils) | `"trusted"` | `"uncertain"` (Nils pressures directly) | `"uncertain"` | +| `trust_level` (from ring coordinator) | `"trusted"` | `"uncertain"` (coordinator pressures directly) | `"uncertain"` | | `risk_assessment` (smuggler) | `"low"` | `"moderate"` (visible strain) | `"moderate"` | | `loyalty_assessment` (smuggler) | `"solid"` | `"solid"` (but strained) | `"uncertain"` | | THE FRIEND arc timing | Normal pace | **Accelerated** (tells arrive sooner) | Normal pace | -### Nils Davan (off-stage, tracked through references) +### Ring Coordinator (off-stage, tracked through references) | Attribute | Path A (Escalate) | Path B (Stabilize) | Path C (Mediate) | |-----------|-------------------|---------------------|-------------------| | `trust_level` (toward smuggler) | `"trusted"` (delivered results) | `"suspicious"` (defied directive) | `"uncertain"` (half-measure) | -| Pressure vector | Through Voss (operational) | Through Kael (familial) | Through Kael (revisit demand) | -| Follow-up action | Bonus payment, continued partnership | Direct contact with Kael, bypasses smuggler | One-cycle trial, second decision point | +| Pressure vector | Through shift supervisor (operational) | Through THE FRIEND (personal) | Through THE FRIEND (revisit demand) | +| Follow-up action | Bonus payment, continued partnership | Direct contact with THE FRIEND, bypasses smuggler | One-cycle trial, second decision point | ### Smuggler (PC state) | Attribute | Path A (Escalate) | Path B (Stabilize) | Path C (Mediate) | |-----------|-------------------|---------------------|-------------------| -| `operational_trust` (from Nils) | High — reliable operator | Low — defiant | Moderate — cautious, untested | -| `operational_trust` (from Voss) | Moderate — Voss complies but resents | High — smuggler protected Voss | Moderate — temporary reprieve | +| `operational_trust` (from ring coordinator) | High — reliable operator | Low — defiant | Moderate — cautious, untested | +| `operational_trust` (from shift supervisor) | Moderate — complies but resents | High — smuggler protected them | Moderate — temporary reprieve | | Exposure position | Higher personal risk | Lower personal risk | Moderate, with deferred risk | -| Follow-up fork | None (resolved) | None (resolved, but Kael strain) | **Yes** — second decision when Nils revisits | +| Follow-up fork | None (resolved) | None (resolved, but THE FRIEND strained) | **Yes** — second decision when coordinator revisits | --- @@ -295,27 +295,27 @@ The detective does not know the smuggler's choice. The detective observes conseq ### Post-Escalation (Path A) -**Observable signals**: Manifest discrepancies spike. Voss's schedule revisions increase. Night shift personnel reassignments without clear operational justification. Voss avoids the break room during transition windows. +**Observable signals**: Manifest discrepancies spike. The shift supervisor's schedule revisions increase. Night shift personnel reassignments without clear operational justification. The shift supervisor avoids the break room during transition windows. **Detective monologue**: -> *"Voss changed the night shift schedule. Third time this week. Two workers reassigned without explanation. The freight scheduler — Korr — she's noticed too. Her manifest revision rate is tracking his."* +> *"The shift supervisor changed the night rotation. Third time this week. Two workers reassigned without explanation. The freight scheduler has noticed too — manifest revision rate is tracking the schedule changes."* > *"The shift supervisor is managing something that isn't on the schedule. Whatever it is, it's getting bigger."* -**Monologue implications**: The detective's investigation accelerates toward Voss as the institutional weak point. Voss becomes the thread to pull. The ring's operational footprint expands, making pattern detection easier. +**Monologue implications**: The detective's investigation accelerates toward the shift supervisor as the institutional weak point. The shift supervisor becomes the thread to pull. The ring's operational footprint expands, making pattern detection easier. ### Post-Stabilize (Path B) -**Observable signals**: Hub runs quiet. No schedule anomalies. But Kael's personal behavior shifts — lattice checking increases, social interactions shorten, visible tension without an organizational cause. +**Observable signals**: Hub runs quiet. No schedule anomalies. But THE FRIEND's personal behavior shifts — lattice checking increases, social interactions shorten, visible tension without an organizational cause. **Detective monologue**: -> *"The hub's been quiet. But Kael — he's checked his lattice eleven times this shift. That's not work communication. That's someone waiting for something they don't want to arrive."* +> *"The hub's been quiet. But the dock worker — they've checked their lattice eleven times this shift. That's not work communication. That's someone waiting for something they don't want to arrive."* -> *"No schedule disruptions. No manifest flags. Everything's clean on paper. But the dock worker — Davan — he's carrying something. Personal? Professional? Filing it."* +> *"No schedule disruptions. No manifest flags. Everything's clean on paper. But the dock worker — carrying something. Personal? Professional? Filing it."* -**Monologue implications**: The detective's investigation slows on the institutional side but builds a behavioral case against Kael specifically. Kael's tells become the primary signal. When THE FRIEND contradiction arrives, it hits harder because the detective has already been watching Kael. +**Monologue implications**: The detective's investigation slows on the institutional side but builds a behavioral case against THE FRIEND specifically. THE FRIEND's tells become the primary signal. When the contradiction arc arrives, it hits harder because the detective has already been watching. ### Post-Mediate (Path C) @@ -333,15 +333,15 @@ The detective does not know the smuggler's choice. The detective observes conseq ## 6. Self-Containment Declaration -**This fork is self-contained within Triangle 1 (Hub Power: Voss - Kael - Nils).** +**This fork is self-contained within Triangle 1 (Hub Power: Shift Supervisor / THE FRIEND / Ring Coordinator).** -Per D-053 / A-17: Self-contained forks are independent decision state machines with shared NPC state. Triangle 1's outcome modifies Voss and Kael's behavioral attributes and does NOT gate Triangle 2 (Worried Knowledge), Triangle 3 (Bar Tensions), Triangle 4 (Worried Partner), or Triangle 5 (Informant Question). +Per D-053 / A-17: Self-contained forks are independent decision state machines with shared NPC state. Triangle 1's outcome modifies the shift supervisor's and THE FRIEND's behavioral attributes and does NOT gate Triangle 2 (Worried Knowledge), Triangle 3 (Bar Tensions), Triangle 4 (Worried Partner), or Triangle 5 (Informant Question). -**What crosses triangle boundaries**: NPC state changes are **observable** by other triangles' logic, but this is emergent, not scripted cascade. If Voss's `behavior_flags` change to `"nervous,schedule_changes,evasive"` (Path A), Triangle 2's Maret can observe this through normal NPC observation mechanics. But Triangle 2's fork (if one exists) is not gated on Triangle 1's outcome. +**What crosses triangle boundaries**: NPC state changes are **observable** by other triangles' logic, but this is emergent, not scripted cascade. If the shift supervisor's `behavior_flags` change to `"nervous,schedule_changes,evasive"` (Path A), Triangle 2's manifest clerk can observe this through normal NPC observation mechanics. But Triangle 2's fork (if one exists) is not gated on Triangle 1's outcome. **What does NOT cross**: - Triangle 1's decision does not unlock or lock content in T2, T3, T4, or T5. -- Triangle 1's decision does not modify NPCs outside the triangle (Maret, Lera, Sera, etc.) except through standard observation. +- Triangle 1's decision does not modify NPCs outside the triangle (manifest clerk, bar owner, THE FRIEND's contacts, etc.) except through standard observation. - Triangle 1's decision does not alter the detective's investigation path — it alters the timing and observability of evidence, not its existence. **Design principle**: The fork changes WHAT the detective sees first, not WHAT the detective discovers. All three paths lead to the ring. The smuggler's choice determines whether the detective arrives via institutional signals (Path A), personal behavioral tells (Path B), or organizational inconsistency (Path C). @@ -354,62 +354,62 @@ Per D-053 / A-17: Self-contained forks are independent decision state machines w | Content Type | Path A | Path B | Path C | Shared | |-------------|--------|--------|--------|--------| -| Nils lattice message | -- | -- | -- | 6 lines (trigger message) | -| Nils follow-up message | 1 line | 1 line | 2 lines | -- | -| Devra delivery | -- | -- | -- | 2 lines (shared) | -| Voss reaction dialogue | 3 lines | 3 lines | 2 lines | -- | -| Kael reaction dialogue | 2 lines | 2 lines | 2 lines | -- | +| Ring coordinator lattice message | -- | -- | -- | 6 lines (trigger message) | +| Ring coordinator follow-up message | 1 line | 1 line | 2 lines | -- | +| On-station coordinator delivery | -- | -- | -- | 2 lines (shared) | +| Shift supervisor reaction dialogue | 3 lines | 3 lines | 2 lines | -- | +| THE FRIEND reaction dialogue | 2 lines | 2 lines | 2 lines | -- | | Smuggler monologue | 3 lines | 3 lines | 3 lines | -- | | Detective monologue | 2 lines | 2 lines | 2 lines | -- | | **Subtotal** | 11 | 11 | 11 | 8 | **Total authored lines**: ~41 lines across all paths and shared content. -### Nils Lattice Message (Shared — Trigger) +### Ring Coordinator Lattice Message (Shared — Trigger) -Written above in Section 2. Six lines of authored content in Nils's voice: direct, authoritative, strategic, with "little brother" as the familial note. +Written above in Section 2. Six lines of authored content in the ring coordinator's voice: direct, authoritative, strategic. "I trust your judgment on people" is the one warm note — genuine and instrumentalizing simultaneously. -### Devra Delivery Dialogue (Shared) +### On-Station Coordinator Delivery Dialogue (Shared) -Written above in Section 2. Two lines: the relay and the redirect to the Voss question. +Written above in Section 2. Two lines: the relay and the redirect to the shift supervisor question. -### Voss Reaction Dialogue (Per Path) +### Shift Supervisor Reaction Dialogue (Per Path) **Path A** (3 lines): Anxiety about the forty-minute gap, resentful compliance, fatalistic observation about "adjustments." -**Path B** (3 lines): Surprised relief, cautious gratitude, warning about Nils's memory. +**Path B** (3 lines): Surprised relief, cautious gratitude, warning about the coordinator's memory. **Path C** (2 lines): Pragmatic acceptance of half-volume, skepticism about whether it stays at half. -### Kael Reaction Dialogue (Per Path) +### THE FRIEND Reaction Dialogue (Per Path) -**Path A** (2 lines): Relief that Nils's pressure is off, unease about double volume risk. +**Path A** (2 lines): Relief that the coordinator's pressure is off, unease about double volume risk. -**Path B** (2 lines): Anxiety about Nils going directly to him, acknowledgment that it was the right call but at personal cost. +**Path B** (2 lines): Anxiety about the coordinator going directly to them, acknowledgment that it was the right call but at personal cost. -**Path C** (2 lines): Confusion about the half-measure, warning that Nils doesn't do compromise. +**Path C** (2 lines): Confusion about the half-measure, warning that the coordinator doesn't do compromise. -### Nils Follow-Up Messages (Per Path) +### Ring Coordinator Follow-Up Messages (Per Path) -**Path A** (1 line): Praise, bonus confirmation, instruction to reassure Voss. +**Path A** (1 line): Praise, bonus confirmation, instruction to reassure the shift supervisor. -**Path B** (1 line): Cool acknowledgment, redirected pressure onto Kael, "we'll talk about alternatives." +**Path B** (1 line): Cool acknowledgment, redirected pressure onto THE FRIEND, "we'll talk about alternatives." **Path C** (2 lines): Measured response, "I can respect careful up to a point," one-cycle trial with implied revisit. ### Smuggler Monologue (Per Path) -**Path A** (3 lines): Operational satisfaction shadowed by Voss's visible fear; alignment with Nils's logic; noting Kael's relief. +**Path A** (3 lines): Operational satisfaction shadowed by the shift supervisor's visible fear; alignment with the coordinator's logic; noting THE FRIEND's relief. -**Path B** (3 lines): Voss protected but Kael exposed; recognition of transferred pressure; guilt about the cost to Kael. +**Path B** (3 lines): Shift supervisor protected but THE FRIEND exposed; recognition of transferred pressure; guilt about the cost. -**Path C** (3 lines): Bought time, not resolution; Kael's confusion; awareness that Nils will return with less patience. +**Path C** (3 lines): Bought time, not resolution; THE FRIEND's confusion; awareness that the coordinator will return with less patience. ### Detective Monologue (Per Path) -**Path A** (2 lines): Voss's schedule changes as institutional signal; manifest revision rate as data. +**Path A** (2 lines): Shift supervisor's schedule changes as institutional signal; manifest revision rate as data. -**Path B** (2 lines): Hub quiet but Kael's lattice activity as personal behavioral signal; clean paper vs. dirty behavior. +**Path B** (2 lines): Hub quiet but THE FRIEND's lattice activity as personal behavioral signal; clean paper vs. dirty behavior. **Path C** (2 lines): Inconsistent tempo as organizational signal; disorganization as evidence. @@ -417,10 +417,5 @@ Written above in Section 2. Two lines: the relay and the redirect to the Voss qu ## Cross-References -- [NPC Roster](../npcs/index.md) — Triangle 1 diagram and tension summary -- [Kael Davan](../npcs/kael-davan.md) — THE FRIEND, full Tier 1 profile -- [Arvo Voss](../npcs/voss.md) — Tier 2 profile, tell system, dual-lens notes -- [Nils Davan](../npcs/nils-davan.md) — Off-stage profile, lattice message design -- [Devra Talsen](../npcs/devra.md) — Tier 2 profile, message delivery role - [Entity Attributes](../knowledge/entity-attributes.md) — Canonical `known_attributes` keys referenced in state tables - [Monologue Guide](../authoring/monologue-guide.md) — Tag taxonomy, prerequisite format, voice discipline