소스 정보
- 저장소
- jmagly/aiwg-training
- 최근 소스 활동
- 2026년 4월 15일 06:21
- 감지된 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 flow-dataset-build명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | flow-dataset-build |
| description | End-to-end training dataset pipeline — acquire sources through publication |
| namespace | training-complete |
| category | flow |
| platforms | ["claude","copilot","cursor","factory","windsurf","warp","codex","opencode","openclaw","hermes"] |
| commandHint | {"argumentHint":"<config-file> [--stages <stage1,stage2,...>] [--dry-run] [--version <v>] [--interactive]"} |
End-to-end orchestrator that runs the full corpus-to-dataset pipeline in a single invocation, chaining every downstream training-complete skill from acquisition through published dataset version.
Do NOT use this flow for ad hoc experiments; invoke individual stage skills directly when iterating on a single stage.
<config-file> — path to pipeline config YAML specifying sources, synthesis patterns, preference mode, format targets, decontamination targets (see schema below)--stages <list> — comma-separated subset of stages to run (default: all). Example: --stages acquire,quality-assess--dry-run — simulate every stage; validate config, print intended actions, write no artifacts--version <v> — target version string for published dataset (overrides config.version_pattern default)--interactive — pause at every stage boundary for human approval (per @native-ux-tools rule)--continue-on-warn — do not block on WARNING-level lint findings (default: strict; ERROR always blocks)--acknowledge-license-risk — bypass license-check gate on ERROR (requires explicit acknowledgement in pipeline report)--acknowledge-contamination — bypass decontamination gate on ERROR (same requirement)acquire-training-source once per source declared in config.sources. Writes raw corpus to .aiwg/training/working/<run-id>/raw/.example-quality-assess against sources and raw examples. Emits GRADE-style quality scores per source and per example.--acknowledge-license-risk supplied. Incompatible licenses fail the pipeline here.example-synthesizer if config.synthesis declares patterns. Optional; skipped silently if absent.synthetic-data-generator if config.synthetic_generator_config present. Optional.preference-generator if config.preference_generation declares a mode (DPO/RLHF/constitutional). Optional.config.format_exports: any of alpaca, sharegpt, chatml, jsonl, parquet. Each adapter is a separate skill.decontamination-check against config.decontamination_targets plus default targets (MMLU, HumanEval, GSM8K, HellaSwag, TruthfulQA, ARC, Winogrande).--acknowledge-contamination supplied.dataset-version. Creates manifest, SHA-256 fixity, W3C PROV provenance record, and archive snapshot at datasets/<version>.yaml.--stages acquire,quality-assess runs only those two stages.format without quality-assess is permitted but flagged).skip_stages: [synthetic-bulk] to default-skip a stage every run.acquire → quality-assess → license-check → {synthesize, synthetic-bulk, preference} → format → decontamination → decontamination-gate → publish.Per @human-authorization rule, the pipeline pauses for explicit human approval at these points:
--interactive is set.Gates use the platform-native question tool when available (AskUserQuestion on Claude Code; fallback to formatted stdout elsewhere).
# pipeline-config.yaml
version_pattern: "v{major}.{minor}.{patch}" # overridden by --version
split_ratios:
train: 0.9
validation: 0.05
test: 0.05
sources:
- uri: "hf://datasets/example/source1"
license: "apache-2.0"
- uri: "https://example.com/corpus.jsonl"
license: "cc-by-4.0"
license_policy:
allowlist: ["apache-2.0", "mit", "cc-by-4.0", "cc0-1.0"]
blocklist: ["cc-by-nc-4.0", "proprietary"]
synthesis: # optional — omit to skip stage 4
patterns: ["qa-rewrite", "chain-of-thought"]
max_examples: 5000
synthetic_generator_config: # optional — omit to skip stage 5
backend: "openai:gpt-4o"
target_count: 10000
preference_generation: # optional — omit to skip stage 6
mode: "dpo" # dpo | rlhf | constitutional
rater_model: "claude-opus-4"
[, , ]
[]
--continue-on-warn downgrades WARNING-level lint findings to informational; ERRORs still abort..aiwg/training/working/<run-id>/ for post-mortem and resumption.--stages <remaining-stages> pointing at the same run-id.memory-log-append to the run-scoped log at .aiwg/training/working/<run-id>/events.jsonl..aiwg/training/reports/pipeline-<version>-<timestamp>.md summarizing each stage, gate decisions, authorization records, and final artifact pointers.datasets/<version>.yaml manifest plus sibling outputs (provenance, fixity, archive snapshot) produced by dataset-version.@activity-log rule, one line appended to .aiwg/activity.log.# Full pipeline
aiwg flow-dataset-build ./configs/instruct-v3.yaml --version v3.1.0
# Subset: acquire and quality-assess only (dry run iteration)
aiwg flow-dataset-build ./configs/instruct-v3.yaml \
--stages acquire,quality-assess
# Dry-run the whole pipeline to validate config before committing compute
aiwg flow-dataset-build ./configs/instruct-v3.yaml \
--dry-run --version v3.1.0-rc.1
Downstream skills invoked by this flow:
acquire-training-source — stage 1example-quality-assess — stage 2example-synthesizer — stage 4synthetic-data-generator — stage 5preference-generator — stage 6format-adapter-alpaca, format-adapter-sharegpt, format-adapter-chatml, format-adapter-jsonl, format-adapter-parquet — stage 7decontamination-check — stage 8dataset-version — stage 10@human-authorization rule — authorization gate requirements@native-ux-tools rule — interactive prompt patterns@activity-log rule — post-run logging requirement