docs: add konfai-cli skill and fix AGENTS.md workspace/trust drifts - #22
Merged
Conversation
Add a KonfAI command-line usage skill covering both public CLI surfaces: the `konfai` engine (TRAIN/RESUME/PREDICTION/EVALUATION) and the `konfai-apps` packaged-app runtime. Ships a playbook plus references for the CLI, config authoring, verified Segmentation/Synthesis recipes, the workspace/runtime model, and the apps layer (resolution + trust model).
The runtime writes no `Setups/` directory (the resolved-config snapshot lives in `Statistics/`), and `Dataset/` is the input data dir, not a run output. App resolution copies+imports .py (arbitrary code) unconditionally, but the requirements.txt pip-install is opt-in (install_requirements, off by default).
vboussot
force-pushed
the
skill/konfai-cli
branch
from
July 5, 2026 12:12
6b9ebc0 to
32b37ab
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a KonfAI command-line usage skill and corrects two factual drifts in
AGENTS.md. Docs-only — no runtime code changes..claude/skills/konfai-cli/A usage guide for driving KonfAI from the terminal, covering both public command-line surfaces:
konfai— author a YAML config, thenTRAIN/RESUME/PREDICTION/EVALUATION.konfai-apps— run a packaged model (infer/eval/uncertainty/pipeline/fine-tune/bundle/download) and serve it withkonfai-apps-server.SKILL.md(playbook) plus references:cli-reference.md— everykonfai/konfai-clustersubcommand and flagconfig-authoring.md— the three files, root keys, classpath resolution, the reading-a-config-rewrites-it invariantexamples-and-recipes.md— the verified Segmentation and Synthesis train → predict → evaluate recipesworkspace-and-runtime.md— outputs keyed bytrain_name, env vars, DDP, SLURM, config modesapps-layer.md—konfai-appsresolution (Local / HuggingFace / Remote), the trust model, and the publishedapps/*bundlesEvery command, flag, default, env var, and the workspace layout were checked against
konfai/main.py,konfai/utils/config.py,konfai/utils/runtime.py, thekonfai-appspackage, and the example READMEs.AGENTS.mdfixesSetups/directory (grep -rn Setups konfai/returns nothing); the resolved-config snapshot lives inStatistics/<train_name>/.Dataset/is the input data directory, not a run output..pyfiles (arbitrary code) unconditionally, but therequirements.txtpip-install is opt-in (install_requirements=Falseby default) — not automatic.