Skip to content

Using Skills

Renku skills teach AI coding assistants how to generate valid Renku blueprints (inputs, producers, bindings, loops, and output wiring) without you having to write everything from scratch.

The skills are maintained in a separate repository: github.com/keremk/renku-skills.

Make sure Renku is already installed and working.

Terminal window
renku --version

If you are setting up for the first time:

Terminal window
renku launch

Then complete onboarding in the browser UI before continuing.

Clone the skills repository locally:

Terminal window
git clone https://github.com/keremk/renku-skills.git
cd renku-skills

Claude Code supports two approaches: a quick session-only load or a persistent plugin install.

Start Claude Code with the plugin directory:

Terminal window
claude --plugin-dir /absolute/path/to/renku-skills

Inside a Claude Code session (CLI or Desktop), run:

/plugin marketplace add /absolute/path/to/renku-skills
/plugin install renku-plugin@renku-skills
/reload-plugins

Then invoke the blueprint skill with:

/renku-plugin:create-blueprint

Codex reads skills from ~/.agents/skills (user scope) and .agents/skills (repo scope). The provided installer script links all Renku skills into the user scope.

From the renku-skills repo root:

Terminal window
./scripts/install-codex-skills.sh

Restart Codex App, then open the Skills panel to confirm the skills are loaded.

You can also verify from Codex chat/command input:

/skills

Invoke a skill directly:

$create-blueprint

To remove the symlinks created by the installer later:

Terminal window
./scripts/uninstall-codex-skills.sh
  1. Open your Renku workspace in Claude Code or Codex.

  2. Run the blueprint skill (/renku-plugin:create-blueprint in Claude Code, or $create-blueprint in Codex).

  3. Describe the movie pipeline you want (storyboard style, producer choices, expected outputs).

  4. Review the generated blueprint in your workspace, then run it with Renku.

  • Claude Code consumes this repo as a plugin (.claude-plugin, agents/, skills/).
  • Codex App consumes skill folders from ~/.agents/skills.
  • The same core skill content is shared between both tools.