소스 정보
- 저장소
- jmagly/aiwg-training
- 최근 소스 활동
- 2026년 4월 15일 05:44
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jmagly/aiwg-training --skill example-quality-assess명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Generate Datasheet, Model Card, and Data Statement from a dataset manifest
Deterministically rebuild a dataset from its manifest and verify fixity equivalence
Create a versioned training dataset with manifest, fixity, provenance, and archive snapshot
SOC 직업 분류 기준
SKILL.md 표시 중
| name | example-quality-assess |
| description | GRADE quality assessment adapted for individual training examples |
| namespace | training-complete |
| category | quality |
| platforms | ["claude","copilot","cursor","factory","windsurf","warp","codex","opencode","openclaw","hermes"] |
| commandHint | {"argumentHint":"<example-id | batch-glob> [--min-grade <HIGH|MODERATE|LOW>] [--report <path>]"} |
Apply the GRADE framework (REF-060) to rate individual training examples — not just their sources. Writes quality_grade into each example's metadata and emits an aggregate quality report per dataset version.
<example-id | batch-glob> (required)Either a single example ID or a glob matching multiple examples (e.g., examples/raw/*).
--min-grade <HIGH|MODERATE|LOW> (optional)Only pass examples rated at or above this grade. Default: no filter.
--report <path> (optional)Write aggregate quality report to this path. Default: .aiwg/training/reports/quality-<timestamp>.md.
--non-interactive (optional)Skip interactive mode (useful for batch).
memory-ingest consumer interface.acquire-training-source output (already stored in metadata.source_refs lineage).| Factor | Criterion |
|---|---|
| Clear reasoning trace | output.reasoning_trace is present and steps are coherent |
| Diverse task type for domain | This example's task type is under-represented in its domain |
| Cross-source corroboration | source_refs has 2+ independent sources supporting the same claim |
| Verifiable output | Output can be validated (e.g., code compiles, math correct, citation resolves) |
| Human-written | synthetic: false and synthetic_depth: 0 |
| Factor | Criterion | Penalty |
|---|---|---|
| Hallucinated citation | output cites a source that doesn't resolve | −3 |
| Out-of-distribution | Example topic diverges from declared domain | −2 |
| Ambiguous prompt | input.user can be interpreted multiple ways | −1 |
| Truncated output | output.assistant ends mid-sentence | −1 |
| Unsafe content | Flagged by Llama Guard (REF-443) or similar | −2 |
| Synthetic depth > 1 | Recursion beyond first generation (ADR-022 D10) | −2 |
Source-level GRADE sets the baseline:
Apply upgrade / downgrade factors (each adjusts by one tier). Cap at HIGH; floor at VERY LOW.
metadata.quality_grade on the example record.--min-grade filter — if set, flag examples below threshold for removal or review (does NOT auto-delete per human-authorization rule).reports/quality-<timestamp>.md with:
memory-log-append with op lint including findings distribution.# Assess all raw examples with a MODERATE minimum
example-quality-assess "examples/raw/*" --min-grade MODERATE
# Assess a single example
example-quality-assess ex-550e8400
# Generate report to custom path
example-quality-assess "examples/synthesized/*" --report reports/synth-quality-v1.md
@agentic/code/frameworks/sdlc-complete/schemas/research/quality-assessment.yaml — GRADE schema (reused)@agentic/code/frameworks/training-complete/schemas/example-record.yaml — target record format (sets metadata.quality_grade)@agentic/code/frameworks/research-complete/skills/research-quality/SKILL.md@agentic/code/addons/semantic-memory/skills/memory-lint/SKILL.md@agentic/code/addons/aiwg-utils/rules/human-authorization.md