autonomous-coding-toolkit 1.0.2 → 1.0.3
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 +2 -4
- package/package.json +19 -5
package/README.md
CHANGED
|
@@ -4,11 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
# Autonomous Coding Toolkit
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
**A learning system for autonomous AI coding.** Fresh context per batch, quality gates between every step, 79 community lessons that prevent the same bug twice, and telemetry that makes the system smarter with every run.
|
|
7
|
+
An autonomous AI coding agent that executes implementation plans with quality gates, fresh context per batch, and 79 community-contributed lessons that prevent the same bug twice. Built for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) — works as a Claude Code plugin (interactive) or npm CLI for headless CI/CD execution.
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
> **Goal:** Code better than a human on large projects — not by being smarter on any single batch, but by compounding learning across thousands of batches across hundreds of users.
|
|
12
10
|
|
|
13
11
|
## Install
|
|
14
12
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autonomous-coding-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Autonomous AI coding pipeline
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Autonomous AI coding agent pipeline with quality gates, fresh context per batch, 79 community lessons, and compounding learning for Claude Code",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Justin McFarland <parthalon025@gmail.com>",
|
|
7
7
|
"homepage": "https://github.com/parthalon025/autonomous-coding-toolkit",
|
|
8
|
-
"repository":
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/parthalon025/autonomous-coding-toolkit.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/parthalon025/autonomous-coding-toolkit/issues"
|
|
14
|
+
},
|
|
9
15
|
"bin": {
|
|
10
16
|
"act": "./bin/act.js"
|
|
11
17
|
},
|
|
@@ -35,13 +41,21 @@
|
|
|
35
41
|
"keywords": [
|
|
36
42
|
"autonomous-coding",
|
|
37
43
|
"ai-agents",
|
|
38
|
-
"
|
|
44
|
+
"ai-coding",
|
|
45
|
+
"agentic-ai",
|
|
46
|
+
"code-generation",
|
|
47
|
+
"claude",
|
|
39
48
|
"claude-code",
|
|
49
|
+
"quality-gates",
|
|
40
50
|
"tdd",
|
|
41
51
|
"lessons-learned",
|
|
42
52
|
"headless",
|
|
53
|
+
"ci-cd",
|
|
54
|
+
"automation",
|
|
43
55
|
"multi-armed-bandit",
|
|
44
56
|
"code-review",
|
|
45
|
-
"pipeline"
|
|
57
|
+
"pipeline",
|
|
58
|
+
"testing",
|
|
59
|
+
"developer-tools"
|
|
46
60
|
]
|
|
47
61
|
}
|