Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
validate-pipeline
// Run end-to-end pipeline validation — query TimescaleDB after collection and report
$ git log --oneline --stat
stars:0
forks:0
updated:2026年5月18日 15:33
SKILL.md
// Run end-to-end pipeline validation — query TimescaleDB after collection and report
| name | validate-pipeline |
| description | Run end-to-end pipeline validation — query TimescaleDB after collection and report |
End-to-end validation of the UNS pipeline. Queries TimescaleDB to verify that
readings collected by the clients landed correctly in tag_history.
/validate-pipeline — query TimescaleDB and report on the data that landedBefore running, ensure:
uv syncuns_namespace is seededtag_history holds dataTo collect without real sources, start the simulator first (a separate
script). If tag_history is empty, the validation script warns and exits.
uv run scripts/validate_pipeline.py (no arguments — it validates
whatever data is already in tag_history)| Check | What it validates | Failure means |
|---|---|---|
| Tag coverage | Every tag in tag_database.csv has rows | Client dropped a tag |
| Timestamp sanity | Timestamps are recent, UTC, not future | Timezone bug or clock skew |
| Foreign key integrity | All tag_ids resolve to uns_namespace | Client wrote an unresolved tag |
| Dead letter | No rejected readings | Client emitting invalid data |
| Value plausibility | Booleans are 0/1, temps in range | Scale factor or type error |
| Cross-area drift | Areas have aligned timestamps | Naive-timestamp leak |
## Pipeline Validation Report
### Checks
- Tag coverage: {N}/{total} — {PASS|FAIL}
- Timestamp sanity: {PASS|FAIL}
- Foreign key integrity: {PASS|FAIL}
- Dead letter: {N} rejected — {PASS|FAIL}
- Value plausibility: {PASS|FAIL}
- Cross-area drift: {PASS|FAIL}
### Client Health
- area_01: {N} tags, {M} rows
- area_02: {N} tags, {M} rows
### Diagnosis
{Root cause analysis for any failures}