agenticstackfile 0.1.1__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.
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/PKG-INFO +2 -1
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/PKG-INFO +2 -1
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/requires.txt +1 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/pyproject.toml +4 -1
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/README.md +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/__init__.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/analyzer/__init__.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/analyzer/base.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/analyzer/python.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/cli.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/config.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/core.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/errors.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/formatter/__init__.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/formatter/static.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/prompt.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/providers/__init__.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/providers/anthropic.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/providers/base.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/providers/factory.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/providers/openai.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstack/writer.py +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/SOURCES.txt +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/dependency_links.txt +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/entry_points.txt +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/top_level.txt +0 -0
- {agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/setup.cfg +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agenticstackfile
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Instant codebase map for AI agents — understand any project before making changes
|
|
5
5
|
Author-email: Rajat Handa <handarajat111@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: click>=8.0.0
|
|
9
10
|
Provides-Extra: anthropic
|
|
10
11
|
Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
|
|
11
12
|
Provides-Extra: openai
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agenticstackfile
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Instant codebase map for AI agents — understand any project before making changes
|
|
5
5
|
Author-email: Rajat Handa <handarajat111@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: click>=8.0.0
|
|
9
10
|
Provides-Extra: anthropic
|
|
10
11
|
Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
|
|
11
12
|
Provides-Extra: openai
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agenticstackfile"
|
|
7
|
-
version = "0.1.
|
|
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"]
|
|
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
|
|
File without changes
|
|
File without changes
|
{agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{agenticstackfile-0.1.1 → agenticstackfile-0.1.2}/agenticstackfile.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|