Publish logo

Publish

Organization
evolving-machines-lab
publish

Publish a dataset of Harbor-format tasks to Evolve, or upload a finished job directory. Use when the user wants to publish, upload, or share tasks, datasets/benchmarks, or job results on Evolve.

Overview

Publisherevolving-machines-lab
Repositoryevolve
Skill namepublish
Stars
76
Forks
5
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by evolving-machines-lab on GitHub. Read the source before you install it.

Installation

Install the Publish AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/evolving-machines-lab/evolve.git /tmp/evolve
mkdir -p .claude/skills
cp -r /tmp/evolve/skills/publish .claude/skills/publish
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Publish in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Publish on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Publish is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Help the user publish a dataset of tasks to Evolve, or upload a job they ran elsewhere. Walk them through each step, checking prerequisites and confirming before running commands that upload.

Prerequisites

  1. The CLI: npm install -g @evolvingmachines/evolve; evolve --version succeeds.

  2. API key: create a key on the dashboard's API keys page (https://dashboard.evolvingmachines.ai/api-keys) and export it. Every command reads EVOLVE_API_KEY.

    bash
    export EVOLVE_API_KEY="<your key>"
    evolve auth status

    auth status prints who the platform thinks you are and which key is in use.

  3. Task layout: a dataset is a folder of task directories, each with task.toml, instruction.md, tests/test.sh, and an environment/ folder unless task.toml names a prebuilt docker_image (evolve skills get create-task has the format). The directory name is the task's name: letters, digits, ., _ and -, at most 128 characters, starting with a letter or digit; use lowercase (Harbor's convention). A dataset.toml manifest at the root is optional.

Publishing a dataset

What you publish is private to your organization. There are no tags and no visibility flag.

1. Check the folder first

bash
evolve dataset check "<path/to/tasks>"

A dry run: the pre-flight sends each task's task.toml, and the dataset.toml if there is one, to the server, which answers with a verdict per task and writes nothing. A refused task names the field to fix. evolve check "<path/to/tasks>" --watch goes further: it reads each task and, when it can, runs its environment, reference solution and verifier, then rules on a rubric.

2. Publish

From a local directory:

bash
evolve dataset publish \
  --dir "<path/to/tasks>" \
  --name "<dataset>" \
  --version 1.0 \
  --watch

When the folder carries a dataset.toml manifest, --name and --version come from it and may be omitted. The pre-flight runs automatically before the upload; --skip-preflight uploads without it, and a task the check would have refused then fails at import instead.

From a git repository:

bash
evolve dataset publish \
  --git https://github.com/acme/my-swe.git \
  --ref v1.0.0 \
  --name "<dataset>" \
  --version 1.0 \
  --watch

--ref must be pinned: a tag, or a full 40-character commit sha. A branch name is refused. --path <subfolder> imports one folder of a larger repository.

From a source the server fetches itself:

bash
evolve dataset publish --from hub:cookbook/hello-world --watch

--from takes a public https tarball URL, or hub:org/name[@ref] for a public package on the Harbor hub. For a hub package the name and version default to the package's own.

3. Follow the publish

--watch follows the publish until the version is READY or FAILED. Each task builds on its own, so one broken task does not block the others; --watch ends with how many built. If the terminal is gone, re-attach from any machine:

bash
evolve dataset watch "<dataset>"

The version lands READY when at least one task built, and FAILED only when none did. On your own dataset, READY also makes the version active, so the bare name runs it.

After publishing

bash
evolve dataset show "<dataset>@1.0"                       # versions, tasks, timeouts, providers per task
evolve run -d "<dataset>@1.0" -a codex -m gpt-5.5 --watch   # run a job on it

Each publish creates a version, named <dataset>@<version>; a bare name means the active version. To point the bare name at a different READY version:

bash
evolve dataset activate "<dataset>" 1.0

The owner of a dataset can download the original package back:

bash
evolve dataset download "<dataset>@1.0" -o corpora/

Uploading a job you ran elsewhere

A job run elsewhere, in the Harbor job layout, uploads as a finished job. Its trials, traces and rewards become a job you read like any other.

bash
evolve upload "<path/to/job-dir>" -d "<dataset>@1.0"

upload takes the job directory, or its .tar.gz. With --from <url> it takes instead a public https URL of the archive, which the server fetches itself. -d name[@version] links the uploaded trials to a published dataset version by task name. The command follows the import until the job exists; --no-wait returns at once with the import id.

bash
evolve job imports --status RUNNING
evolve job import <import-id> --watch

job imports lists your uploads, newest first. job import --watch re-attaches to one and follows it to the job, or to its typed failure.

Frequently asked questions

What does the Publish AI skill do?

Publish a dataset of Harbor-format tasks to Evolve, or upload a finished job directory. Use when the user wants to publish, upload, or share tasks, datasets/benchmarks, or job results on Evolve.

Why use Publish on TypingMind?

Because you install it once and use it with any model. Publish is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Publish in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/evolving-machines-lab/evolve/tree/main/skills/publish. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Publish?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Publish?

As many as you like. As long as a model supports skills, you can use Publish with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Publish AI skill free?

Yes. It is published on GitHub by evolving-machines-lab under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇