This runtime includes an artifacts plugin for Cloudflare Artifacts (Git-for-agents).
§Prerequisite
Bind Artifacts in your Worker environment:
interface Env {
ARTIFACTS: Artifacts
}§Plugin actions
create-repo(input.namerequired)import-repo(input.sourceUrl,input.targetName, optionalinput.branch)fork-repo(input.name,input.forkName, optionalinput.readOnly)
§Skill mappings
artifacts-create-repoartifacts-import-repoartifacts-fork-repo
§Example invoke
curl -X POST "https://<worker-url>/invoke/artifacts" \
-H "content-type: application/json" \
-d '{"action":"create-repo","input":{"name":"session-123"}}'