@autor3search/javascript 0.2.0 → 0.2.1
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 +3 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
[](https://nodejs.org)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
+
[autoresearch for your codebase](https://autor3search.dev/) — the same loop in seven languages, with every agent prompt in one place.
|
|
8
|
+
|
|
7
9
|
An autonomous performance-optimization harness for JavaScript repositories. You
|
|
8
10
|
point a coding agent at your repository, run four commands, hand the agent
|
|
9
11
|
`program.md`, and go to sleep. The agent proposes one performance change at a
|
|
@@ -382,7 +384,7 @@ Two things to know if you are wiring this up on a fork or a new package:
|
|
|
382
384
|
| **macOS** | supported — CI runs the full suite on Node 20 and 22 |
|
|
383
385
|
| **Windows** | **not supported** |
|
|
384
386
|
|
|
385
|
-
On Windows
|
|
387
|
+
On Windows nearly the whole suite passes, so measurement itself works. What does not
|
|
386
388
|
work is stopping: Node cannot deliver SIGINT to a child process group there
|
|
387
389
|
the way it does on POSIX, so an interrupted `eval` never reaches the `ABORTED`
|
|
388
390
|
path — it exits with a null code instead of 2 and can leave its claim behind.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autor3search/javascript",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Autonomous AI-driven performance optimization for any JavaScript repository",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/autor3search/javascript.git"
|
|
11
11
|
},
|
|
12
|
+
"homepage": "https://autor3search.dev",
|
|
12
13
|
"keywords": [
|
|
14
|
+
"autoresearch",
|
|
13
15
|
"benchmark",
|
|
14
16
|
"performance",
|
|
15
17
|
"optimization",
|
|
@@ -40,7 +42,6 @@
|
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"vitest": "^2.1.0"
|
|
42
44
|
},
|
|
43
|
-
"homepage": "https://github.com/autor3search/javascript#readme",
|
|
44
45
|
"bugs": {
|
|
45
46
|
"url": "https://github.com/autor3search/javascript/issues"
|
|
46
47
|
},
|