一键导入
acquire-training-source
Acquire a training data source with license validation and delegate ingest to the semantic memory kernel
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Acquire a training data source with license validation and delegate ingest to the semantic memory kernel
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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
End-to-end training dataset pipeline — acquire sources through publication
Detect training-eval overlap against benchmark sets before dataset publication
Generate SFT training examples from raw sources using Self-Instruct / Evol-Instruct / SQuAD / STaR patterns
| name | acquire-training-source |
| description | Acquire a training data source with license validation and delegate ingest to the semantic memory kernel |
| namespace | training-complete |
| category | ingest |
| platforms | ["claude","copilot","cursor","factory","windsurf","warp","codex","opencode","openclaw","hermes"] |
| commandHint | {"argumentHint":"<source> [--license <spdx>] [--allow-unlicensed] [--format <type>]"} |
Acquire a training data source — filesystem directory, URL, git repo, or existing AIWG research REF — with license validation and format detection. Delegates ingest mechanics to the semantic memory kernel.
<source> (required)Source location. Supported forms:
file:/path/to/dir — local filesystem directoryfile:/path/to/file.{md,txt,json,jsonl,pdf} — single filehttps://... — URL (document, tarball, API endpoint)git:<repo-url> — git repository (shallow clone)ref:REF-XXX — existing AIWG research REF (reuse corpus)--license <spdx> (optional)SPDX license identifier for the source. Required unless --allow-unlicensed is set. See https://spdx.org/licenses/ for valid identifiers.
--allow-unlicensed (optional)Override the license-required gate. Emits a warning and tags the source license: unknown in metadata. Examples derived from unlicensed sources inherit unknown and will be blocked by license-check lint at publication time.
--format <type> (optional)Hint the expected format: code, docs, papers, dialogues, mixed. Used by downstream synthesis skills. Auto-detected if omitted.
ref:REF-XXX, look up the REF in .aiwg/research/ and reuse its files as the source.--license is provided or --allow-unlicensed is set. For ref: sources, inherit the REF's declared license.--format is not given, scan file extensions + sampled content to classify (code / docs / papers / dialogues / mixed)..aiwg/training/raw/<source-id>/.memory-ingest --consumer training-complete --source .aiwg/training/raw/<source-id>/. Kernel handles:
derivedPages.rawExamplessource.yaml in the raw dir capturing:
source_id, source_type, acquired_at, acquired_bylicense (SPDX), license_source (declared vs inherited)format_detectedfile_count, total_bytes, sha256_manifest_refprovenance-create skill.memory-log-append with op ingest (inherited from kernel) plus source-level summary.The kernel handles ingest mechanics. This skill retains training-specific layers on top:
ref:REF-XXX sources to pull from existing research corpus--license or --allow-unlicensed# Acquire a GitHub repo as training source
acquire-training-source git:https://github.com/rust-lang/rust --license "Apache-2.0 OR MIT" --format code
# Reuse a research REF as a training source
acquire-training-source ref:REF-375 --format papers
# Acquire a local directory
acquire-training-source file:/home/user/datasets/code-review --license MIT
# Acquire unlicensed source (emits warning)
acquire-training-source https://example.com/dataset.tar.gz --allow-unlicensed
@agentic/code/frameworks/training-complete/schemas/example-record.yaml — target example format@agentic/code/frameworks/sdlc-complete/schemas/research/license-metadata.yaml — SPDX tracking@agentic/code/addons/semantic-memory/skills/memory-ingest/SKILL.md@agentic/code/frameworks/research-complete/skills/research-acquire/SKILL.md@agentic/code/frameworks/sdlc-complete/skills/provenance-create/SKILL.md@agentic/code/frameworks/media-curator/skills/integrity-verification/SKILL.md