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