atomicreps 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 +129 -0
  2. package/dist/cli.js +2770 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "atomicreps",
3
+ "version": "0.0.1",
4
+ "description": "One short retrieval question about the thing you just built, inside Claude Code, Cursor, Codex or any MCP client. Loop included.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "atomicreps": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "engines": {
14
+ "node": ">=24"
15
+ },
16
+ "scripts": {
17
+ "build": "node build.mjs",
18
+ "dev": "node build.mjs && node dist/cli.js",
19
+ "test": "vitest run",
20
+ "typecheck": "tsc --noEmit",
21
+ "preview": "node preview.mjs",
22
+ "prepublishOnly": "node check-dist.mjs"
23
+ },
24
+ "dependencies": {},
25
+ "devDependencies": {
26
+ "@types/node": "^26.5.1",
27
+ "esbuild": "^0.28.2",
28
+ "typescript": "^7.0.2",
29
+ "vitest": "^5.0.0"
30
+ },
31
+ "homepage": "https://atomicreps.com/coding-agent",
32
+ "mcpName": "io.github.thepedroferrari/atomicreps",
33
+ "keywords": [
34
+ "mcp",
35
+ "model-context-protocol",
36
+ "claude-code",
37
+ "cursor",
38
+ "codex",
39
+ "retrieval-practice",
40
+ "learning"
41
+ ]
42
+ }