ghcralph 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +26 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # GitHub Copilot Ralph CLI (`ghcralph`)
2
2
 
3
+ > [!WARNING]
4
+ > ## ARCHIVED — No Longer Maintained
5
+ >
6
+ > **This project is archived and will no longer be maintained.**
7
+ >
8
+ > When this CLI was built, running autonomous agentic coding loops with GitHub Copilot required wiring up a lot of plumbing by hand. That gap no longer exists.
9
+ >
10
+ > ### What to use instead
11
+ >
12
+ > For most use cases, **native GitHub Copilot CLI features are now the recommended path**:
13
+ >
14
+ > - **[`gh copilot` autopilot + fleet](https://docs.github.com/en/copilot/using-github-copilot/using-github-copilot-in-the-command-line)** — GitHub's own agentic loop capabilities, built directly into the `gh` CLI. Start with a "research" or "plan" prompt to scope your task, then let autopilot drive.
15
+ > 👉 *Recommended first stop for most developers.*
16
+ >
17
+ > - **[@bradygaster/squad](https://github.com/bradygaster/squad)** — For more complex, multi-agent setups where you need a full AI development team with persistent identity, parallel execution, and programmable orchestration.
18
+ > 👉 *Recommended for teams and larger-scale agentic workflows.*
19
+ >
20
+ > Thank you to everyone who tried, used, and contributed to `ghcralph`. The ideas behind it — safety, checkpoints, reversibility, and human control — are still worth caring about, and they're increasingly showing up in the tools above.
21
+ >
22
+ > — [@rpothin](https://github.com/rpothin)
23
+
24
+ ---
25
+
3
26
  [![CI](https://github.com/rpothin/ghc-ralph-cli/actions/workflows/ci.yml/badge.svg?branch=main&event=push)](https://github.com/rpothin/ghc-ralph-cli/actions/workflows/ci.yml)
4
27
  [![npm version](https://img.shields.io/npm/v/ghcralph.svg)](https://www.npmjs.com/package/ghcralph)
5
28
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -200,7 +223,7 @@ GitHub Copilot Ralph uses a hierarchical configuration system:
200
223
  | `maxRetriesPerTask` | `2` | Retries per task before marking as failed |
201
224
  | `autoPush` | `false` | Auto-push to remote after task completion |
202
225
  | `pushStrategy` | `per-task` | When to push: `per-task`, `per-run`, or `manual` |
203
- | `progressVerbosity` | `standard` | Progress file detail level: `minimal`, `standard` (+ actions), or `full` |
226
+ | `progressVerbosity` | `standard` | Progress file detail level: `minimal`, `standard` (+ actions), or `full` |
204
227
  | `githubRepo` | - | GitHub repository (owner/repo) for GitHub plan source |
205
228
  | `githubLabel` | - | Default GitHub issue label filter for GitHub plan |
206
229
  | `githubMilestone` | - | Default GitHub issue milestone filter for GitHub plan |
@@ -357,8 +380,8 @@ GitHub Copilot Ralph is built on these principles:
357
380
 
358
381
  ## Contributing
359
382
 
360
- We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
383
+ This repository is archived. No new contributions are being accepted.
361
384
 
362
385
  ## License
363
386
 
364
- MIT © [Raphael Pothin](https://github.com/rpothin)
387
+ MIT © [Raphael Pothin](https://github.com/rpothin)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ghcralph",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "GitHub Copilot Ralph - A cross-platform CLI for running autonomous agentic coding loops using the Ralph Wiggum pattern with GitHub Copilot",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",