isitdone 0.1.0
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 -0
- package/isitdone.js +3 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# isitdone
|
|
2
|
+
|
|
3
|
+
Short name for [`@aivolution/isitdone`](https://www.npmjs.com/package/@aivolution/isitdone): don't let your coding agent say "done" until the tests actually pass.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npx isitdone init
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
This package contains no code of its own; it depends on `@aivolution/isitdone` and exposes the same `isitdone` command. Docs, source and issues: https://github.com/raimondasl/isitdone
|
package/isitdone.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "isitdone",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Short name for @aivolution/isitdone: don't let your coding agent say \"done\" until the tests actually pass. `npx isitdone init` installs the Stop hook for Claude Code, Codex, Cursor and Gemini CLI.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"isitdone": "isitdone.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"isitdone.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@aivolution/isitdone": "^0.1.0"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"claude-code",
|
|
21
|
+
"codex",
|
|
22
|
+
"cursor",
|
|
23
|
+
"gemini-cli",
|
|
24
|
+
"ai-agent",
|
|
25
|
+
"coding-agent",
|
|
26
|
+
"stop-hook",
|
|
27
|
+
"hooks",
|
|
28
|
+
"verification",
|
|
29
|
+
"tests"
|
|
30
|
+
],
|
|
31
|
+
"author": "raimondasl <raimondas@hotmail.com>",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/raimondasl/isitdone.git",
|
|
36
|
+
"directory": "alias"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/raimondasl/isitdone#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/raimondasl/isitdone/issues"
|
|
41
|
+
},
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
}
|
|
45
|
+
}
|