agenticstackfile 0.2.0__tar.gz → 0.2.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.
Files changed (32) hide show
  1. agenticstackfile-0.2.1/PKG-INFO +109 -0
  2. agenticstackfile-0.2.1/README.md +91 -0
  3. agenticstackfile-0.2.1/agenticstackfile.egg-info/PKG-INFO +109 -0
  4. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/pyproject.toml +1 -1
  5. agenticstackfile-0.2.0/PKG-INFO +0 -73
  6. agenticstackfile-0.2.0/README.md +0 -55
  7. agenticstackfile-0.2.0/agenticstackfile.egg-info/PKG-INFO +0 -73
  8. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/__init__.py +0 -0
  9. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/analyzer/__init__.py +0 -0
  10. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/analyzer/base.py +0 -0
  11. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/analyzer/python.py +0 -0
  12. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/cli.py +0 -0
  13. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/config.py +0 -0
  14. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/core.py +0 -0
  15. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/errors.py +0 -0
  16. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/formatter/__init__.py +0 -0
  17. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/formatter/static.py +0 -0
  18. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/prompt.py +0 -0
  19. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/providers/__init__.py +0 -0
  20. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/providers/anthropic.py +0 -0
  21. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/providers/base.py +0 -0
  22. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/providers/factory.py +0 -0
  23. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/providers/openai.py +0 -0
  24. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/scheduler.py +0 -0
  25. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/watcher.py +0 -0
  26. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstack/writer.py +0 -0
  27. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstackfile.egg-info/SOURCES.txt +0 -0
  28. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstackfile.egg-info/dependency_links.txt +0 -0
  29. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstackfile.egg-info/entry_points.txt +0 -0
  30. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstackfile.egg-info/requires.txt +0 -0
  31. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/agenticstackfile.egg-info/top_level.txt +0 -0
  32. {agenticstackfile-0.2.0 → agenticstackfile-0.2.1}/setup.cfg +0 -0
@@ -0,0 +1,109 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenticstackfile
3
+ Version: 0.2.1
4
+ Summary: Instant codebase map for AI agents — understand any project before making changes
5
+ Author-email: Rajat Handa <handarajat111@gmail.com>
6
+ License-Expression: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: click>=8.0.0
10
+ Provides-Extra: anthropic
11
+ Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
12
+ Provides-Extra: openai
13
+ Requires-Dist: openai>=1.0.0; extra == "openai"
14
+ Provides-Extra: all
15
+ Requires-Dist: anthropic>=0.20.0; extra == "all"
16
+ Requires-Dist: openai>=1.0.0; extra == "all"
17
+ Requires-Dist: watchdog>=3.0.0; extra == "all"
18
+
19
+ # AgenticStack
20
+
21
+ Instant codebase map for AI agents — understand any Python project before making changes.
22
+
23
+ ## What it does
24
+
25
+ AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
26
+
27
+ - Where every model, view, serializer, service, and utility lives
28
+ - Which files to touch when making a specific change
29
+ - How your project is structured by framework (Django, Flask, FastAPI, or plain Python)
30
+ - A step-by-step change guide using your actual file paths
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install agenticstackfile
36
+ ```
37
+
38
+ With AI support:
39
+
40
+ ```bash
41
+ pip install 'agenticstackfile[anthropic]'
42
+ pip install 'agenticstackfile[openai]'
43
+ ```
44
+
45
+ With auto-sync (watch mode):
46
+
47
+ ```bash
48
+ pip install 'agenticstackfile[watch]'
49
+ ```
50
+
51
+ Everything at once:
52
+
53
+ ```bash
54
+ pip install 'agenticstackfile[all]'
55
+ ```
56
+
57
+ ## Usage
58
+
59
+ ```bash
60
+ agenticstack init # First-time setup — creates config and ignore file
61
+ agenticstack update # Manually refresh AgenticStack.txt
62
+ agenticstack watch # Auto-sync mode — watches for file changes and syncs automatically
63
+ ```
64
+
65
+ ## Auto-sync (Watch Mode)
66
+
67
+ `agenticstack watch` runs two background services:
68
+
69
+ - **Watcher** — monitors your project for file changes in real time
70
+ - **Scheduler** — syncs `AgenticStack.txt` automatically based on your configured interval
71
+
72
+ Only syncs when files have actually changed — no wasted API tokens.
73
+
74
+ Requires `watchdog`: `pip install 'agenticstackfile[watch]'`
75
+
76
+ ## Modes
77
+
78
+ **Static mode** — no API key needed. Uses Python AST to map your codebase for free.
79
+
80
+ **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation with change guides tailored to your framework.
81
+
82
+ ## Configuration
83
+
84
+ Edit `.agenticstack.ini` in your project root:
85
+
86
+ ```ini
87
+ [agenticstack]
88
+ provider = anthropic
89
+ model = default
90
+ api_key = YOUR_API_KEY
91
+ output_file = AgenticStack.txt
92
+ depth = standard
93
+ sync_trigger = false
94
+ sync_time = hourly
95
+ ```
96
+
97
+ | Key | Values | Description |
98
+ |---|---|---|
99
+ | `provider` | `anthropic`, `openai` | AI provider to use |
100
+ | `model` | `default`, or model name | Model to use. `default` picks the best available. |
101
+ | `api_key` | your key | API key for AI mode |
102
+ | `output_file` | filename | Output file name |
103
+ | `depth` | `standard` | Analysis depth |
104
+ | `sync_trigger` | `true`, `false` | Enable auto-sync in watch mode |
105
+ | `sync_time` | `realtime`, `hourly`, `daily` | How often to sync when changes are detected |
106
+
107
+ ## Ignoring Files
108
+
109
+ Create `.agenticstackignore` in your project root (auto-created by `agenticstack init`):
@@ -0,0 +1,91 @@
1
+ # AgenticStack
2
+
3
+ Instant codebase map for AI agents — understand any Python project before making changes.
4
+
5
+ ## What it does
6
+
7
+ AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
8
+
9
+ - Where every model, view, serializer, service, and utility lives
10
+ - Which files to touch when making a specific change
11
+ - How your project is structured by framework (Django, Flask, FastAPI, or plain Python)
12
+ - A step-by-step change guide using your actual file paths
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ pip install agenticstackfile
18
+ ```
19
+
20
+ With AI support:
21
+
22
+ ```bash
23
+ pip install 'agenticstackfile[anthropic]'
24
+ pip install 'agenticstackfile[openai]'
25
+ ```
26
+
27
+ With auto-sync (watch mode):
28
+
29
+ ```bash
30
+ pip install 'agenticstackfile[watch]'
31
+ ```
32
+
33
+ Everything at once:
34
+
35
+ ```bash
36
+ pip install 'agenticstackfile[all]'
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```bash
42
+ agenticstack init # First-time setup — creates config and ignore file
43
+ agenticstack update # Manually refresh AgenticStack.txt
44
+ agenticstack watch # Auto-sync mode — watches for file changes and syncs automatically
45
+ ```
46
+
47
+ ## Auto-sync (Watch Mode)
48
+
49
+ `agenticstack watch` runs two background services:
50
+
51
+ - **Watcher** — monitors your project for file changes in real time
52
+ - **Scheduler** — syncs `AgenticStack.txt` automatically based on your configured interval
53
+
54
+ Only syncs when files have actually changed — no wasted API tokens.
55
+
56
+ Requires `watchdog`: `pip install 'agenticstackfile[watch]'`
57
+
58
+ ## Modes
59
+
60
+ **Static mode** — no API key needed. Uses Python AST to map your codebase for free.
61
+
62
+ **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation with change guides tailored to your framework.
63
+
64
+ ## Configuration
65
+
66
+ Edit `.agenticstack.ini` in your project root:
67
+
68
+ ```ini
69
+ [agenticstack]
70
+ provider = anthropic
71
+ model = default
72
+ api_key = YOUR_API_KEY
73
+ output_file = AgenticStack.txt
74
+ depth = standard
75
+ sync_trigger = false
76
+ sync_time = hourly
77
+ ```
78
+
79
+ | Key | Values | Description |
80
+ |---|---|---|
81
+ | `provider` | `anthropic`, `openai` | AI provider to use |
82
+ | `model` | `default`, or model name | Model to use. `default` picks the best available. |
83
+ | `api_key` | your key | API key for AI mode |
84
+ | `output_file` | filename | Output file name |
85
+ | `depth` | `standard` | Analysis depth |
86
+ | `sync_trigger` | `true`, `false` | Enable auto-sync in watch mode |
87
+ | `sync_time` | `realtime`, `hourly`, `daily` | How often to sync when changes are detected |
88
+
89
+ ## Ignoring Files
90
+
91
+ Create `.agenticstackignore` in your project root (auto-created by `agenticstack init`):
@@ -0,0 +1,109 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenticstackfile
3
+ Version: 0.2.1
4
+ Summary: Instant codebase map for AI agents — understand any project before making changes
5
+ Author-email: Rajat Handa <handarajat111@gmail.com>
6
+ License-Expression: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: click>=8.0.0
10
+ Provides-Extra: anthropic
11
+ Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
12
+ Provides-Extra: openai
13
+ Requires-Dist: openai>=1.0.0; extra == "openai"
14
+ Provides-Extra: all
15
+ Requires-Dist: anthropic>=0.20.0; extra == "all"
16
+ Requires-Dist: openai>=1.0.0; extra == "all"
17
+ Requires-Dist: watchdog>=3.0.0; extra == "all"
18
+
19
+ # AgenticStack
20
+
21
+ Instant codebase map for AI agents — understand any Python project before making changes.
22
+
23
+ ## What it does
24
+
25
+ AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
26
+
27
+ - Where every model, view, serializer, service, and utility lives
28
+ - Which files to touch when making a specific change
29
+ - How your project is structured by framework (Django, Flask, FastAPI, or plain Python)
30
+ - A step-by-step change guide using your actual file paths
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install agenticstackfile
36
+ ```
37
+
38
+ With AI support:
39
+
40
+ ```bash
41
+ pip install 'agenticstackfile[anthropic]'
42
+ pip install 'agenticstackfile[openai]'
43
+ ```
44
+
45
+ With auto-sync (watch mode):
46
+
47
+ ```bash
48
+ pip install 'agenticstackfile[watch]'
49
+ ```
50
+
51
+ Everything at once:
52
+
53
+ ```bash
54
+ pip install 'agenticstackfile[all]'
55
+ ```
56
+
57
+ ## Usage
58
+
59
+ ```bash
60
+ agenticstack init # First-time setup — creates config and ignore file
61
+ agenticstack update # Manually refresh AgenticStack.txt
62
+ agenticstack watch # Auto-sync mode — watches for file changes and syncs automatically
63
+ ```
64
+
65
+ ## Auto-sync (Watch Mode)
66
+
67
+ `agenticstack watch` runs two background services:
68
+
69
+ - **Watcher** — monitors your project for file changes in real time
70
+ - **Scheduler** — syncs `AgenticStack.txt` automatically based on your configured interval
71
+
72
+ Only syncs when files have actually changed — no wasted API tokens.
73
+
74
+ Requires `watchdog`: `pip install 'agenticstackfile[watch]'`
75
+
76
+ ## Modes
77
+
78
+ **Static mode** — no API key needed. Uses Python AST to map your codebase for free.
79
+
80
+ **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation with change guides tailored to your framework.
81
+
82
+ ## Configuration
83
+
84
+ Edit `.agenticstack.ini` in your project root:
85
+
86
+ ```ini
87
+ [agenticstack]
88
+ provider = anthropic
89
+ model = default
90
+ api_key = YOUR_API_KEY
91
+ output_file = AgenticStack.txt
92
+ depth = standard
93
+ sync_trigger = false
94
+ sync_time = hourly
95
+ ```
96
+
97
+ | Key | Values | Description |
98
+ |---|---|---|
99
+ | `provider` | `anthropic`, `openai` | AI provider to use |
100
+ | `model` | `default`, or model name | Model to use. `default` picks the best available. |
101
+ | `api_key` | your key | API key for AI mode |
102
+ | `output_file` | filename | Output file name |
103
+ | `depth` | `standard` | Analysis depth |
104
+ | `sync_trigger` | `true`, `false` | Enable auto-sync in watch mode |
105
+ | `sync_time` | `realtime`, `hourly`, `daily` | How often to sync when changes are detected |
106
+
107
+ ## Ignoring Files
108
+
109
+ Create `.agenticstackignore` in your project root (auto-created by `agenticstack init`):
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agenticstackfile"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Instant codebase map for AI agents — understand any project before making changes"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -1,73 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: agenticstackfile
3
- Version: 0.2.0
4
- Summary: Instant codebase map for AI agents — understand any project before making changes
5
- Author-email: Rajat Handa <handarajat111@gmail.com>
6
- License-Expression: MIT
7
- Requires-Python: >=3.9
8
- Description-Content-Type: text/markdown
9
- Requires-Dist: click>=8.0.0
10
- Provides-Extra: anthropic
11
- Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
12
- Provides-Extra: openai
13
- Requires-Dist: openai>=1.0.0; extra == "openai"
14
- Provides-Extra: all
15
- Requires-Dist: anthropic>=0.20.0; extra == "all"
16
- Requires-Dist: openai>=1.0.0; extra == "all"
17
- Requires-Dist: watchdog>=3.0.0; extra == "all"
18
-
19
- # AgenticStack
20
-
21
- Instant codebase map for AI agents — understand any project before making changes.
22
-
23
- ## What it does
24
-
25
- AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
26
-
27
- - Where every model, view, serializer, and service lives
28
- - Which files to touch when making a specific change
29
- - Which models are exposed via API vs internal only
30
- - Step by step how-to guides using your actual file paths
31
-
32
- ## Installation
33
-
34
- ```bash
35
- pip install agenticstackfile
36
- ```
37
-
38
- With AI support:
39
-
40
- ```bash
41
- pip install 'agenticstackfile[openai]'
42
- pip install 'agenticstackfile[anthropic]'
43
- ```
44
-
45
- ## Usage
46
-
47
- ```bash
48
- agenticstack init # First time setup
49
- agenticstack update # Refresh AgenticStack.txt
50
- ```
51
-
52
- ## Modes
53
-
54
- **Static mode** — no API key needed. Uses Python AST to analyze your codebase for free.
55
-
56
- **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation.
57
-
58
- ## Configuration
59
-
60
- Edit `.agenticstack.ini` in your project root:
61
-
62
- ```ini
63
- [agenticstack]
64
- model = default
65
- api_key = YOUR_API_KEY
66
- provider = anthropic
67
- output_file = AgenticStack.txt
68
- ```
69
-
70
- ## Supported providers
71
-
72
- - `anthropic` — Claude Sonnet, Haiku, Opus
73
- - `openai` — GPT-4o, GPT-4o-mini
@@ -1,55 +0,0 @@
1
- # AgenticStack
2
-
3
- Instant codebase map for AI agents — understand any project before making changes.
4
-
5
- ## What it does
6
-
7
- AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
8
-
9
- - Where every model, view, serializer, and service lives
10
- - Which files to touch when making a specific change
11
- - Which models are exposed via API vs internal only
12
- - Step by step how-to guides using your actual file paths
13
-
14
- ## Installation
15
-
16
- ```bash
17
- pip install agenticstackfile
18
- ```
19
-
20
- With AI support:
21
-
22
- ```bash
23
- pip install 'agenticstackfile[openai]'
24
- pip install 'agenticstackfile[anthropic]'
25
- ```
26
-
27
- ## Usage
28
-
29
- ```bash
30
- agenticstack init # First time setup
31
- agenticstack update # Refresh AgenticStack.txt
32
- ```
33
-
34
- ## Modes
35
-
36
- **Static mode** — no API key needed. Uses Python AST to analyze your codebase for free.
37
-
38
- **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation.
39
-
40
- ## Configuration
41
-
42
- Edit `.agenticstack.ini` in your project root:
43
-
44
- ```ini
45
- [agenticstack]
46
- model = default
47
- api_key = YOUR_API_KEY
48
- provider = anthropic
49
- output_file = AgenticStack.txt
50
- ```
51
-
52
- ## Supported providers
53
-
54
- - `anthropic` — Claude Sonnet, Haiku, Opus
55
- - `openai` — GPT-4o, GPT-4o-mini
@@ -1,73 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: agenticstackfile
3
- Version: 0.2.0
4
- Summary: Instant codebase map for AI agents — understand any project before making changes
5
- Author-email: Rajat Handa <handarajat111@gmail.com>
6
- License-Expression: MIT
7
- Requires-Python: >=3.9
8
- Description-Content-Type: text/markdown
9
- Requires-Dist: click>=8.0.0
10
- Provides-Extra: anthropic
11
- Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
12
- Provides-Extra: openai
13
- Requires-Dist: openai>=1.0.0; extra == "openai"
14
- Provides-Extra: all
15
- Requires-Dist: anthropic>=0.20.0; extra == "all"
16
- Requires-Dist: openai>=1.0.0; extra == "all"
17
- Requires-Dist: watchdog>=3.0.0; extra == "all"
18
-
19
- # AgenticStack
20
-
21
- Instant codebase map for AI agents — understand any project before making changes.
22
-
23
- ## What it does
24
-
25
- AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
26
-
27
- - Where every model, view, serializer, and service lives
28
- - Which files to touch when making a specific change
29
- - Which models are exposed via API vs internal only
30
- - Step by step how-to guides using your actual file paths
31
-
32
- ## Installation
33
-
34
- ```bash
35
- pip install agenticstackfile
36
- ```
37
-
38
- With AI support:
39
-
40
- ```bash
41
- pip install 'agenticstackfile[openai]'
42
- pip install 'agenticstackfile[anthropic]'
43
- ```
44
-
45
- ## Usage
46
-
47
- ```bash
48
- agenticstack init # First time setup
49
- agenticstack update # Refresh AgenticStack.txt
50
- ```
51
-
52
- ## Modes
53
-
54
- **Static mode** — no API key needed. Uses Python AST to analyze your codebase for free.
55
-
56
- **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation.
57
-
58
- ## Configuration
59
-
60
- Edit `.agenticstack.ini` in your project root:
61
-
62
- ```ini
63
- [agenticstack]
64
- model = default
65
- api_key = YOUR_API_KEY
66
- provider = anthropic
67
- output_file = AgenticStack.txt
68
- ```
69
-
70
- ## Supported providers
71
-
72
- - `anthropic` — Claude Sonnet, Haiku, Opus
73
- - `openai` — GPT-4o, GPT-4o-mini