agentrecap 0.0.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.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/index.js +4 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # agentrecap
2
+
3
+ This npm package reserves the `agentrecap` name for the
4
+ [agentrecap Python project](https://github.com/bansalarnav/agentrecap).
5
+
6
+ Run the actual tool with:
7
+
8
+ ```bash
9
+ uvx agentrecap
10
+ ```
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ message: "agentrecap is a Python package. Run it with: uvx agentrecap",
3
+ repository: "https://github.com/bansalarnav/agentrecap"
4
+ };
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "agentrecap",
3
+ "version": "0.0.1",
4
+ "description": "Name holder for the agentrecap Python package",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js",
8
+ "README.md"
9
+ ],
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/bansalarnav/agentrecap.git"
13
+ },
14
+ "homepage": "https://github.com/bansalarnav/agentrecap#readme",
15
+ "bugs": "https://github.com/bansalarnav/agentrecap/issues",
16
+ "keywords": [
17
+ "agentrecap",
18
+ "codex",
19
+ "claude-code"
20
+ ]
21
+ }