Skip to content

Commit e676c27

Browse files
Kasper Jungeclaude
authored andcommitted
docs: add LICENSE file, README badges, and PyPI metadata for users evaluating the project
The README claimed MIT but no LICENSE file existed. Added the MIT license, shields.io badges (version, Python, license), PyPI classifiers/keywords, and updated the copyright year. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2c6c34f commit e676c27

4 files changed

Lines changed: 43 additions & 1 deletion

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Computerlove Technologies
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
<img src="cli-graphic.png" alt="ralphify" />
33
</p>
44

5+
<p align="center">
6+
<a href="https://pypi.org/project/ralphify/"><img src="https://img.shields.io/pypi/v/ralphify?color=blue" alt="PyPI version"></a>
7+
<a href="https://pypi.org/project/ralphify/"><img src="https://img.shields.io/pypi/pyversions/ralphify" alt="Python versions"></a>
8+
<a href="https://github.com/computerlovetech/ralphify/blob/main/LICENSE"><img src="https://img.shields.io/github/license/computerlovetech/ralphify" alt="License"></a>
9+
</p>
10+
511
Put your AI coding agent in a `while True` loop and let it ship.
612

713
Ralphify is a minimal harness for running autonomous AI coding loops, inspired by the [Ralph Wiggum technique](https://ghuntley.com/ralph/). The idea is simple: pipe a prompt to an AI coding agent, let it do one thing, commit, and repeat. Forever. Until you hit Ctrl+C.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ site_url: https://computerlovetech.github.io/ralphify/
44
repo_url: https://github.com/computerlovetech/ralphify
55
repo_name: computerlovetech/ralphify
66
edit_uri: edit/main/docs/
7-
copyright: Copyright &copy; 2025 Computerlove Technologies
7+
copyright: Copyright &copy; 2025–2026 Computerlove Technologies
88

99
theme:
1010
name: material

pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,22 @@
22
name = "ralphify"
33
version = "0.1.3"
44
description = "Harness toolkit for autonomous AI coding loops"
5+
readme = "README.md"
6+
license = "MIT"
57
requires-python = ">=3.11"
8+
keywords = ["ai", "autonomous", "coding", "agent", "loop", "cli"]
9+
classifiers = [
10+
"Development Status :: 4 - Beta",
11+
"Environment :: Console",
12+
"Intended Audience :: Developers",
13+
"License :: OSI Approved :: MIT License",
14+
"Programming Language :: Python :: 3",
15+
"Programming Language :: Python :: 3.11",
16+
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
18+
"Topic :: Software Development :: Build Tools",
19+
"Topic :: Software Development :: Quality Assurance",
20+
]
621
dependencies = ["typer>=0.9", "rich>=13.0"]
722

823
[project.scripts]

0 commit comments

Comments
 (0)