@gaberrb/polypus 0.4.21 → 0.4.23
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.
- package/README.md +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -242,14 +242,18 @@ down when the run ends, and external MCP tools are disabled in `plan` mode.
|
|
|
242
242
|
## Autonomous agent — the tool self-improving 🤖
|
|
243
243
|
|
|
244
244
|
Polypus can run **itself** in CI to implement its own issues. Label an issue
|
|
245
|
-
`polypus-go` and the `agent.yml` workflow
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
245
|
+
`polypus-go` and the `agent.yml` workflow first **estimates** the effort/cost and
|
|
246
|
+
posts it as an issue comment. Nothing is implemented until the repo **owner**
|
|
247
|
+
comments `/polypus approve` on the issue — only the owner can approve. After that
|
|
248
|
+
it implements headlessly, gates on the local CI, patch-bumps the version +
|
|
249
|
+
CHANGELOG, and opens a release-ready PR; when you merge it, `auto-release.yml`
|
|
250
|
+
cuts the GitHub Release and `release.yml` publishes to npm.
|
|
249
251
|
|
|
250
252
|
```
|
|
251
253
|
issue + label `polypus-go`
|
|
252
|
-
→ agent.yml
|
|
254
|
+
→ agent.yml (estimate): posts the cost estimate as a comment
|
|
255
|
+
→ you (owner) comment `/polypus approve`
|
|
256
|
+
→ agent.yml (implement): cheap model → secret scan → CI gate → bump + CHANGELOG → open PR
|
|
253
257
|
→ you merge the PR
|
|
254
258
|
→ auto-release.yml → release.yml → npm publish
|
|
255
259
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaberrb/polypus",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.23",
|
|
4
4
|
"description": "Agentic coding harness that makes any AI API (with or without native tool-calling) generate and apply code. OpenRouter, Ollama, and any OpenAI-compatible endpoint.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|