Skip to main content
AI/MLplurigrid

org-babel-execution

Literate programming execution engine via org-babel for polyglot skill execution

Stars
23
Source
plurigrid/asi
Updated
2026-04-26
Slug
plurigrid--asi--org-babel-execution
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/plurigrid/asi/HEAD/plugins/asi/skills/org-babel-execution/SKILL.md -o .claude/skills/org-babel-execution.md

Drops the SKILL.md into .claude/skills/org-babel-execution.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Org-Babel Execution Engine

Transform asi from knowledge graph to execution engine via literate programming

Trit: 0 (COORDINATOR - orchestrates execution across languages)

Overview

Enables literate programming across Julia, Python, Clojure via org-babel.

Core Concept

Embed executable code in narrative .org files:

  • Execute in-place (C-c C-c)
  • Tangle to extract source files (C-c C-v t)
  • Pass data between languages
  • Generate documentation with results

Template

#+TITLE: Skill Name
#+PROPERTY: header-args:julia :tangle Skill.jl

* Implementation
#+BEGIN_SRC julia
function skill_operation(input)
    # code here
end
#+END_SRC

* Tests
#+BEGIN_SRC julia :results output
@test skill_operation(42) == expected
#+END_SRC

Related Skills

  • org (0) - Org-mode syntax
  • emacs (0) - Editor integration
  • julia-scientific (+1) - Julia execution
  • python-development (+1) - Python execution