skill-forge

(★ 17)

Autonomous AI skill improvement through iterative experimentation — inspired by Karpathy's autoresearch. An agent mutates skill instructions, evaluates against objective metrics, keeps improvements, reverts regressions. No human in the loop.

File Explorer

  • .gitignore
  • conftest.py
  • index.html
  • index_de.html
  • index_en.html
  • LICENSE
  • pytest.ini
  • README.md
  • RELEASE_NOTES.md
  • SKILL.md
  • SKILLOPT_TRANSFER.md

# 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.

🔍

compare

View Details ▼

This command is an alias of `magick compare`.

tldr magick compare

View documentation for the original command:

🔍

delta

View Details ▼

A viewer for Git and diff output.
See also: `diff`, `difft`.

delta {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories:

delta {{[-n|--line-numbers]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories, showing the line numbers:

delta {{[-s|--side-by-side]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories, showing the differences side by side:

🔍

flake8

View Details ▼

Check the style and quality of Python code.

flake8 {{path/to/file_or_directory}}

Lint a file or directory recursively:

flake8 --show-source {{path/to/file_or_directory}}

Lint a file or directory recursively and show the line on which each error occurred:

flake8 --ignore {{rule1,rule2,...}} {{path/to/file_or_directory}}

Lint a file or directory recursively and ignore a list of rules. (All available rules can be found at <https://www.flake8rules.com/>):

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

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