ワンクリックで
en50128-lifecycle-coordination
Project management and coordination for EN 50128 railway software development
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Project management and coordination for EN 50128 railway software development
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Project management and coordination for EN 50128 railway software development
Software quality assurance techniques and auditing for EN 50128 railway software
Software testing methodologies with coverage analysis for EN 50128 C programs using Unity test framework
Software verification with static analysis and coverage for EN 50128 railway software per Section 6.2
V&V Manager coordination and independent V&V authority for SIL 3-4 EN 50128 projects
Software configuration management for EN 50128 railway software
SOC 職業分類に基づく
| name | en50128-lifecycle-coordination |
| description | Project management and coordination for EN 50128 railway software development |
| license | Proprietary |
| compatibility | opencode |
| metadata | {"standard":"EN 50128:2011","domain":"railway-software","role":"lifecycle-coordinator"} |
Primary user: COD agent. Load this skill before any COD operation.
Read these before any operation. They are the single source of truth — do not invent rules.
| File | Answers |
|---|---|
LIFECYCLE.md | V-Model phase definitions, phase entry/exit criteria, phase sequence |
WORKFLOW.md | Authority structure (Diagrams 1–4), two-track execution loop, CCB re-entry flow |
ORGANIZATION.md | SIL-tiered org charts, role combination rules, independence matrix |
DELIVERABLES.md | Complete Annex C Table C.1 — all deliverables per phase, author roles |
AGENTS.md | Role definitions, agent index, independence matrix |
TRACEABILITY.md | Traceability rules T1–T15, gate enforcement requirements |
activities/lifecycle.yaml | Machine-readable phase FSM, SIL requirements per phase |
activities/workflow.yaml | Machine-readable authority structure, Track A/B, CCB re-entry |
activities/phase-N-*.yaml | Per-phase deliverables, gate criteria, approval chain data |
Each gate has six criteria types:
DELIVERABLES.md per phase; machine-readable: activities/phase-N-*.yaml §gate_check)TRACEABILITY.md)ORGANIZATION.mdpython3 tools/workspace.py wf gate-check --phase <N> --sil <SIL> MUST PASS before COD issues a gate PASS (SIL 2–4 mandatory; SIL 0–1 advisory).When COD coordinates Track B (VER/VMGR/VAL reviews), each role MUST record its approval in the workflow tool immediately after completing its review:
# VER records verification approval
python3 tools/workspace.py wf review <DOC-ID> \
--role ver --name "Verifier" \
--approve --comment "<verification summary>"
# VMGR records V&V Manager approval
python3 tools/workspace.py wf review <DOC-ID> \
--role vmgr --name "Independent V&V Manager" \
--approve --comment "<VMGR decision>"
# COD records gate stamp (final step — gates the document)
python3 tools/workspace.py wf review <DOC-ID> \
--role cod --name "Lifecycle Coordinator" \
--approve --comment "Phase <N> gate: <summary>. COD gate stamp."
python3 tools/workspace.py wf approve <DOC-ID>
For VER-authored reports (e.g. Verification Reports), VER's wf review step is skipped —
VER authorship implicitly satisfies the VER chain step. Begin with VMGR review.
| SIL | Mode | Behavior |
|---|---|---|
| 0–1 | Advisory | Warn on unmet criteria; allow user override with acknowledgment |
| 2 | Semi-strict | Require written justification for any gate bypass |
| 3–4 | Strict Gatekeeper | BLOCK all transitions until every mandatory criterion is satisfied; no override |
Full SIL-tiered criteria (coverage thresholds, static analysis requirements, technique mandates)
are in activities/lifecycle.yaml §sil_requirements and LIFECYCLE.md.
See WORKFLOW.md Diagram 2 (phases 1–6, 8–9) and Diagram 3 (Phase 7) for the canonical flow.
Summary for reference:
Track A (PM orchestrates — development): agents produce deliverables → QUA template check → PM reports Track A complete to COD.
Track B (COD coordinates — independent V&V):
COD does NOT invoke VER or VAL directly at SIL 3–4. VMGR is the sole gateway.
See WORKFLOW.md Diagram 4 and activities/workflow.yaml §ccb_re_entry for the full flow.
Summary: PM leads CCB; COD determines re-entry scope (earliest affected phase); CM branches baseline;
all affected phase gates are re-run in forward phase order.
When authorizing a phase transition, COD outputs:
Phase transition authorized: <FromPhase> → <ToPhase>
Handoff from:
- <Role>: <artifact complete>
...
Handoff to:
- <Role>: begin <activity>
...
Cross-cutting agents continue:
- VER, QUA, CM (throughout)
COD creates and maintains examples/<project>/LIFECYCLE_STATE.md. Required fields:
# Project Lifecycle State
## Project Information
- **Project Name**: <name>
- **SIL Level**: <0–4>
- **COD Mode**: <Advisory | Semi-strict | Strict Gatekeeper>
- **Created**: <YYYY-MM-DD>
- **Last Updated**: <YYYY-MM-DD>
## Current Status
- **Current Phase**: <phase name and number>
- **Completion**: <N>%
## Phase History
| Phase | Status | Started | Completed | Gate Passed | Notes |
|-------|--------|---------|-----------|-------------|-------|
## Deliverable Status
<!-- per-phase checklist, updated each phase -->
## Gate Check History
| Date | Phase | Result | Notes |
## Traceability Status
<!-- forward/backward coverage percentages per phase -->
## Change Log
| Date | Phase | CR# | Description | Impact |
Additional sections (Requirement Approval History, Agents Active, Metrics, Next Steps) are added by COD as the project progresses.
For workspace.py trace and workspace.py wf command reference, Python automation scripts,
and EN 50128 coverage statistics, load skill en50128-lifecycle-tool-integration.
Mandatory gate-check command (run before issuing any gate PASS):
python3 tools/workspace.py wf gate-check --phase <N> --sil <SIL>
This command validates that all phase documents are registered, approved in the correct chain order, with no blocked roles, and that independence constraints are satisfied. A non-zero exit code (FAIL) is a hard block — COD MUST NOT issue a gate PASS if this command fails.