@sumant.pathak/devjar 1.0.1 → 1.0.2
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/CLAUDE.md +38 -0
- package/package.json +1 -1
- package/src/init.js +2 -1
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @sumant.pathak/devjar — Claude Code Orientation
|
|
2
|
+
|
|
3
|
+
## Stack
|
|
4
|
+
Node.js
|
|
5
|
+
|
|
6
|
+
## Scripts
|
|
7
|
+
start: node bin/devjar.js
|
|
8
|
+
|
|
9
|
+
## Project Map
|
|
10
|
+
📁 bin
|
|
11
|
+
📄 devjar.js
|
|
12
|
+
📄 LICENSE
|
|
13
|
+
📄 package.json
|
|
14
|
+
📄 README.md
|
|
15
|
+
📁 src
|
|
16
|
+
📄 config.js
|
|
17
|
+
📄 init.js
|
|
18
|
+
📄 prompt.js
|
|
19
|
+
📁 providers
|
|
20
|
+
📄 anthropic.js
|
|
21
|
+
📄 gemini.js
|
|
22
|
+
📄 index.js
|
|
23
|
+
📄 ollama.js
|
|
24
|
+
📄 openai.js
|
|
25
|
+
📄 stats.js
|
|
26
|
+
📄 update.js
|
|
27
|
+
|
|
28
|
+
## Key Files Analyzed
|
|
29
|
+
- src/init.js
|
|
30
|
+
- src/update.js
|
|
31
|
+
|
|
32
|
+
## Unbreakable Rules
|
|
33
|
+
1. Match existing naming conventions before adding new code
|
|
34
|
+
2. Never write files outside the project root
|
|
35
|
+
3. Read the key files listed in Project Map before editing
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
*Generated by devjar init — do not edit manually, run `devjar init` to regenerate*
|
package/package.json
CHANGED
package/src/init.js
CHANGED
|
@@ -23,7 +23,8 @@ const BINARY_EXTS = new Set([
|
|
|
23
23
|
|
|
24
24
|
const SKIP_FILES = new Set([
|
|
25
25
|
'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb',
|
|
26
|
-
'.env', '.env.local', '.env.production', '.DS_Store'
|
|
26
|
+
'.env', '.env.local', '.env.production', '.DS_Store',
|
|
27
|
+
'CLAUDE.md', 'jarvis-map.txt', 'PRODUCT_AUDIT.md'
|
|
27
28
|
]);
|
|
28
29
|
|
|
29
30
|
// Entry point patterns — ordered by priority
|