write-kaggle-benchmarks: autonomous setup, log before download, optional publish - #8
Open
nicholaskang-us wants to merge 1 commit into
Conversation
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.
Three coupled changes to write-kaggle-benchmarks/SKILL.md:
Autonomous setup. Previously the skill checkpointed on every step,
including read-only ones like
initandauth, which made setup feelslow and chatty. New behavior: ask the user once up front to confirm,
then run all of setup (pip upgrade kaggle + kaggle-benchmarks, verify
auth,
kaggle b init -y) without further prompts. Re-runs automaticallyon later auth/import errors — all steps are idempotent. Install + auth
checks modeled on Kaggle/kaggle-cli skills/SKILL.md:
https://github.com/Kaggle/kaggle-cli/blob/main/skills/SKILL.md
Log moves before Download.
logis how you confirm a run actuallysucceeded, so it should come immediately after
statusand beforedownload. Renumbered accordingly.Publish is optional. Heading renamed to
Publish (optional)and alead-in clarifies that tasks can stay private indefinitely.
Pacing rule now only applies to authoring/execution steps that hit the
server: Write / Validate / Push / Run / Download. Read-only
list,status, andlogrun without confirmation.