sprout

(★ 112)

Experimental self-improving multi-agent coding system: a root agent recursively decomposes goals and delegates to specialist subagents, learning from failures by mutating a git-backed agent genome. Supports Claude, GPT, and Gemini.

File Explorer

  • .gitignore
  • ABOUT.md
  • AGENTS.md
  • biome.json
  • bun.lock
  • catalog-info.yaml
  • knip.cross.json
  • knip.root.json
  • mcp.json
  • package.json
  • README.md
  • tsconfig.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bun install

View Details ▼

Install JavaScript dependencies for a project from `package.json`.

bun {{[i|install]}}

Install all dependencies listed in `package.json`:

bun {{[i|install]}} {{package_name}}@{{version}}

Install a single package (this is an alias for `bun add`):

bun {{[i|install]}} {{[-g|--global]}} {{package_name}}

Install a package globally:

🔍

bun run

View Details ▼

Execute a JavaScript/TypeScript file, or a script from `package.json`.

bun run {{script_name}}

Run a script defined in `package.json`:

bun run {{path/to/file.ts}}

Run a JavaScript or TypeScript file directly:

bun run --watch {{path/to/file.ts}}

Run a file in "watch" mode (restarts automatically when the file changes):

🔍

bunx

View Details ▼

Execute a package binary (installed locally or fetched remotely).
Note: `bun x` can be used as an alias for `bunx`.

bunx {{package_name}} "{{command_argument}}"

Download and execute a package from the registry:

bunx {{package_name}} --version

Check the version of a locally installed package (if found):

bunx --bun {{package_name}}

Force an executable to run with the Bun runtime (instead of Node):

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

glob

View Details ▼

Glob patterns (`glob`) are patterns used to match and search text.
Note: `glob` isn't a command, but syntax to be used with other commands or the shell.
See also: `regex`.

*

Match zero or more of any characters:

?

Match any single character:

[{{abc}}]

Match one character in a set of characters:

🔍

timeout

View Details ▼

Run a command with a time limit.

timeout 3s sleep 10

Run `sleep 10` and terminate it after 3 seconds:

timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}

Send a signal to the command after the time limit expires (`TERM` by default, `kill -l` to list all signals):

timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{command}}

Send verbose output to `stderr` showing signal sent upon timeout:

🔍

compact

View Details ▼

Display or change the compression state of files and directories on NTFS partitions.

compact

Display the compression status of files in the current directory:

compact /c {{path\to\file}}

Compress a specific file:

compact /u {{path\to\file}}

Uncompress a specific file:

// repository documentation