codemap-cli 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- codemap_cli-0.1.1/PKG-INFO +67 -0
- codemap_cli-0.1.1/README.md +58 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/pyproject.toml +2 -2
- codemap_cli-0.1.1/src/codemap_cli.egg-info/PKG-INFO +67 -0
- codemap_cli-0.1.0/PKG-INFO +0 -7
- codemap_cli-0.1.0/README.md +0 -0
- codemap_cli-0.1.0/src/codemap_cli.egg-info/PKG-INFO +0 -7
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/setup.cfg +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/__init__.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/cli.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/constants.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/formatter.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/plugins/__init__.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/plugins/base.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/plugins/javascript.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/plugins/python.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/root.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/scanner.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap/writer.py +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap_cli.egg-info/SOURCES.txt +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap_cli.egg-info/dependency_links.txt +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap_cli.egg-info/entry_points.txt +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap_cli.egg-info/requires.txt +0 -0
- {codemap_cli-0.1.0 → codemap_cli-0.1.1}/src/codemap_cli.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codemap-cli
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A deterministic filesystem mapper optimized for AI context
|
|
5
|
+
Author: Purva Sanjay Patel
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: typer
|
|
9
|
+
|
|
10
|
+
# CodeMap CLI
|
|
11
|
+
|
|
12
|
+
AI-ready project structure generator for developers.
|
|
13
|
+
|
|
14
|
+
CodeMap generates a clean, IDE-style tree of your project so you can easily share your codebase structure with AI tools like ChatGPT or Claude.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Why CodeMap?
|
|
19
|
+
|
|
20
|
+
When working with AI tools, developers often need to explain their entire project structure before asking meaningful questions.
|
|
21
|
+
|
|
22
|
+
Manually typing folder trees is slow and error-prone.
|
|
23
|
+
|
|
24
|
+
CodeMap solves this by generating a clean, deterministic structure of your repository in seconds.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
- Automatic project root detection
|
|
31
|
+
- Python and JavaScript ecosystem detection
|
|
32
|
+
- Smart ignore rules
|
|
33
|
+
- Collapses large directories (e.g., `node_modules`)
|
|
34
|
+
- Hides environment and cache files
|
|
35
|
+
- Detects structural changes and updates output
|
|
36
|
+
- Colored CLI feedback
|
|
37
|
+
- Generates `codemap.md`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install codemap-cli
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
```bash
|
|
49
|
+
codemap
|
|
50
|
+
```
|
|
51
|
+
- on your terminal inside root project
|
|
52
|
+
|
|
53
|
+
## Example Output
|
|
54
|
+
my-awesome-project/
|
|
55
|
+
├── src/
|
|
56
|
+
│ ├── components/
|
|
57
|
+
│ ├── pages/
|
|
58
|
+
│ └── utils/
|
|
59
|
+
├── public/
|
|
60
|
+
├── tests/
|
|
61
|
+
├── .gitignore
|
|
62
|
+
├── package.json
|
|
63
|
+
├── pyproject.toml
|
|
64
|
+
├── README.md
|
|
65
|
+
└── tsconfig.json
|
|
66
|
+
|
|
67
|
+
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# CodeMap CLI
|
|
2
|
+
|
|
3
|
+
AI-ready project structure generator for developers.
|
|
4
|
+
|
|
5
|
+
CodeMap generates a clean, IDE-style tree of your project so you can easily share your codebase structure with AI tools like ChatGPT or Claude.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Why CodeMap?
|
|
10
|
+
|
|
11
|
+
When working with AI tools, developers often need to explain their entire project structure before asking meaningful questions.
|
|
12
|
+
|
|
13
|
+
Manually typing folder trees is slow and error-prone.
|
|
14
|
+
|
|
15
|
+
CodeMap solves this by generating a clean, deterministic structure of your repository in seconds.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Features
|
|
20
|
+
|
|
21
|
+
- Automatic project root detection
|
|
22
|
+
- Python and JavaScript ecosystem detection
|
|
23
|
+
- Smart ignore rules
|
|
24
|
+
- Collapses large directories (e.g., `node_modules`)
|
|
25
|
+
- Hides environment and cache files
|
|
26
|
+
- Detects structural changes and updates output
|
|
27
|
+
- Colored CLI feedback
|
|
28
|
+
- Generates `codemap.md`
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install codemap-cli
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Usage
|
|
39
|
+
```bash
|
|
40
|
+
codemap
|
|
41
|
+
```
|
|
42
|
+
- on your terminal inside root project
|
|
43
|
+
|
|
44
|
+
## Example Output
|
|
45
|
+
my-awesome-project/
|
|
46
|
+
├── src/
|
|
47
|
+
│ ├── components/
|
|
48
|
+
│ ├── pages/
|
|
49
|
+
│ └── utils/
|
|
50
|
+
├── public/
|
|
51
|
+
├── tests/
|
|
52
|
+
├── .gitignore
|
|
53
|
+
├── package.json
|
|
54
|
+
├── pyproject.toml
|
|
55
|
+
├── README.md
|
|
56
|
+
└── tsconfig.json
|
|
57
|
+
|
|
58
|
+
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codemap-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "A deterministic filesystem mapper optimized for AI context"
|
|
5
5
|
authors = [{ name = "Purva Sanjay Patel" }]
|
|
6
6
|
dependencies = ["typer"]
|
|
7
7
|
requires-python = ">=3.9"
|
|
8
|
-
|
|
8
|
+
readme = "README.md"
|
|
9
9
|
[project.scripts]
|
|
10
10
|
codemap = "codemap.cli:app"
|
|
11
11
|
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codemap-cli
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A deterministic filesystem mapper optimized for AI context
|
|
5
|
+
Author: Purva Sanjay Patel
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: typer
|
|
9
|
+
|
|
10
|
+
# CodeMap CLI
|
|
11
|
+
|
|
12
|
+
AI-ready project structure generator for developers.
|
|
13
|
+
|
|
14
|
+
CodeMap generates a clean, IDE-style tree of your project so you can easily share your codebase structure with AI tools like ChatGPT or Claude.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Why CodeMap?
|
|
19
|
+
|
|
20
|
+
When working with AI tools, developers often need to explain their entire project structure before asking meaningful questions.
|
|
21
|
+
|
|
22
|
+
Manually typing folder trees is slow and error-prone.
|
|
23
|
+
|
|
24
|
+
CodeMap solves this by generating a clean, deterministic structure of your repository in seconds.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
- Automatic project root detection
|
|
31
|
+
- Python and JavaScript ecosystem detection
|
|
32
|
+
- Smart ignore rules
|
|
33
|
+
- Collapses large directories (e.g., `node_modules`)
|
|
34
|
+
- Hides environment and cache files
|
|
35
|
+
- Detects structural changes and updates output
|
|
36
|
+
- Colored CLI feedback
|
|
37
|
+
- Generates `codemap.md`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
pip install codemap-cli
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
```bash
|
|
49
|
+
codemap
|
|
50
|
+
```
|
|
51
|
+
- on your terminal inside root project
|
|
52
|
+
|
|
53
|
+
## Example Output
|
|
54
|
+
my-awesome-project/
|
|
55
|
+
├── src/
|
|
56
|
+
│ ├── components/
|
|
57
|
+
│ ├── pages/
|
|
58
|
+
│ └── utils/
|
|
59
|
+
├── public/
|
|
60
|
+
├── tests/
|
|
61
|
+
├── .gitignore
|
|
62
|
+
├── package.json
|
|
63
|
+
├── pyproject.toml
|
|
64
|
+
├── README.md
|
|
65
|
+
└── tsconfig.json
|
|
66
|
+
|
|
67
|
+
|
codemap_cli-0.1.0/PKG-INFO
DELETED
codemap_cli-0.1.0/README.md
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|