agenticstackfile 0.1.0__tar.gz → 0.1.2__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 (30) hide show
  1. agenticstackfile-0.1.2/PKG-INFO +72 -0
  2. agenticstackfile-0.1.2/README.md +55 -0
  3. agenticstackfile-0.1.2/agenticstackfile.egg-info/PKG-INFO +72 -0
  4. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/requires.txt +1 -0
  5. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/pyproject.toml +4 -1
  6. agenticstackfile-0.1.0/PKG-INFO +0 -15
  7. agenticstackfile-0.1.0/README.md +0 -0
  8. agenticstackfile-0.1.0/agenticstackfile.egg-info/PKG-INFO +0 -15
  9. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/__init__.py +0 -0
  10. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/analyzer/__init__.py +0 -0
  11. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/analyzer/base.py +0 -0
  12. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/analyzer/python.py +0 -0
  13. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/cli.py +0 -0
  14. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/config.py +0 -0
  15. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/core.py +0 -0
  16. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/errors.py +0 -0
  17. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/formatter/__init__.py +0 -0
  18. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/formatter/static.py +0 -0
  19. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/prompt.py +0 -0
  20. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/providers/__init__.py +0 -0
  21. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/providers/anthropic.py +0 -0
  22. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/providers/base.py +0 -0
  23. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/providers/factory.py +0 -0
  24. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/providers/openai.py +0 -0
  25. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstack/writer.py +0 -0
  26. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/SOURCES.txt +0 -0
  27. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/dependency_links.txt +0 -0
  28. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/entry_points.txt +0 -0
  29. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/top_level.txt +0 -0
  30. {agenticstackfile-0.1.0 → agenticstackfile-0.1.2}/setup.cfg +0 -0
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenticstackfile
3
+ Version: 0.1.2
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
+
18
+ # AgenticStack
19
+
20
+ Instant codebase map for AI agents — understand any project before making changes.
21
+
22
+ ## What it does
23
+
24
+ AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
25
+
26
+ - Where every model, view, serializer, and service lives
27
+ - Which files to touch when making a specific change
28
+ - Which models are exposed via API vs internal only
29
+ - Step by step how-to guides using your actual file paths
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ pip install agenticstackfile
35
+ ```
36
+
37
+ With AI support:
38
+
39
+ ```bash
40
+ pip install 'agenticstackfile[openai]'
41
+ pip install 'agenticstackfile[anthropic]'
42
+ ```
43
+
44
+ ## Usage
45
+
46
+ ```bash
47
+ agenticstack init # First time setup
48
+ agenticstack update # Refresh AgenticStack.txt
49
+ ```
50
+
51
+ ## Modes
52
+
53
+ **Static mode** — no API key needed. Uses Python AST to analyze your codebase for free.
54
+
55
+ **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation.
56
+
57
+ ## Configuration
58
+
59
+ Edit `.agenticstack.ini` in your project root:
60
+
61
+ ```ini
62
+ [agenticstack]
63
+ model = default
64
+ api_key = YOUR_API_KEY
65
+ provider = anthropic
66
+ output_file = AgenticStack.txt
67
+ ```
68
+
69
+ ## Supported providers
70
+
71
+ - `anthropic` — Claude Sonnet, Haiku, Opus
72
+ - `openai` — GPT-4o, GPT-4o-mini
@@ -0,0 +1,55 @@
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
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.4
2
+ Name: agenticstackfile
3
+ Version: 0.1.2
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
+
18
+ # AgenticStack
19
+
20
+ Instant codebase map for AI agents — understand any project before making changes.
21
+
22
+ ## What it does
23
+
24
+ AgenticStack analyzes your Python project and generates `AgenticStack.txt` — a structured file that tells any AI agent:
25
+
26
+ - Where every model, view, serializer, and service lives
27
+ - Which files to touch when making a specific change
28
+ - Which models are exposed via API vs internal only
29
+ - Step by step how-to guides using your actual file paths
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ pip install agenticstackfile
35
+ ```
36
+
37
+ With AI support:
38
+
39
+ ```bash
40
+ pip install 'agenticstackfile[openai]'
41
+ pip install 'agenticstackfile[anthropic]'
42
+ ```
43
+
44
+ ## Usage
45
+
46
+ ```bash
47
+ agenticstack init # First time setup
48
+ agenticstack update # Refresh AgenticStack.txt
49
+ ```
50
+
51
+ ## Modes
52
+
53
+ **Static mode** — no API key needed. Uses Python AST to analyze your codebase for free.
54
+
55
+ **AI mode** — provide an API key and Claude or GPT generates rich, detailed documentation.
56
+
57
+ ## Configuration
58
+
59
+ Edit `.agenticstack.ini` in your project root:
60
+
61
+ ```ini
62
+ [agenticstack]
63
+ model = default
64
+ api_key = YOUR_API_KEY
65
+ provider = anthropic
66
+ output_file = AgenticStack.txt
67
+ ```
68
+
69
+ ## Supported providers
70
+
71
+ - `anthropic` — Claude Sonnet, Haiku, Opus
72
+ - `openai` — GPT-4o, GPT-4o-mini
@@ -1,3 +1,4 @@
1
+ click>=8.0.0
1
2
 
2
3
  [all]
3
4
  anthropic>=0.20.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agenticstackfile"
7
- version = "0.1.0"
7
+ version = "0.1.2"
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"
@@ -12,6 +12,9 @@ license = "MIT"
12
12
  authors = [
13
13
  {name = "Rajat Handa", email = "handarajat111@gmail.com"}
14
14
  ]
15
+ dependencies = [
16
+ "click>=8.0.0",
17
+ ]
15
18
 
16
19
  [project.optional-dependencies]
17
20
  anthropic = ["anthropic>=0.20.0"]
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: agenticstackfile
3
- Version: 0.1.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
- Provides-Extra: anthropic
10
- Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
11
- Provides-Extra: openai
12
- Requires-Dist: openai>=1.0.0; extra == "openai"
13
- Provides-Extra: all
14
- Requires-Dist: anthropic>=0.20.0; extra == "all"
15
- Requires-Dist: openai>=1.0.0; extra == "all"
File without changes
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: agenticstackfile
3
- Version: 0.1.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
- Provides-Extra: anthropic
10
- Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
11
- Provides-Extra: openai
12
- Requires-Dist: openai>=1.0.0; extra == "openai"
13
- Provides-Extra: all
14
- Requires-Dist: anthropic>=0.20.0; extra == "all"
15
- Requires-Dist: openai>=1.0.0; extra == "all"