caprock 0.0.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.
caprock-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: caprock
3
+ Version: 0.0.1
4
+ Summary: Cut AWS Bedrock LLM spend from Claude Code — compression + prompt caching, in your terminal. (Early access.)
5
+ Author: Cybrix LLC
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://caprock.dev
8
+ Keywords: aws,bedrock,claude,llm,cost,compression,prompt-caching,headroom
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Utilities
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # caprock
18
+
19
+ Cut your **AWS Bedrock** LLM spend from **Claude Code** — context compression +
20
+ prompt caching, on your machine, with your own credentials. Nothing leaves your
21
+ machine.
22
+
23
+ > **Early access.** This release reserves the name; the full local CLI
24
+ > (`caprock start`, `caprock wrap claude`, `caprock stats`) is rolling out now.
25
+
26
+ ```bash
27
+ pip install caprock # or: uvx caprock
28
+ caprock # prints status + where to get started
29
+ ```
30
+
31
+ Built on the open-source [Headroom](https://github.com/headroomlabs-ai/headroom)
32
+ project (Apache 2.0), with the fixes that make caching and compression actually
33
+ work on AWS Bedrock.
34
+
35
+ **More:** https://caprock.dev
@@ -0,0 +1,19 @@
1
+ # caprock
2
+
3
+ Cut your **AWS Bedrock** LLM spend from **Claude Code** — context compression +
4
+ prompt caching, on your machine, with your own credentials. Nothing leaves your
5
+ machine.
6
+
7
+ > **Early access.** This release reserves the name; the full local CLI
8
+ > (`caprock start`, `caprock wrap claude`, `caprock stats`) is rolling out now.
9
+
10
+ ```bash
11
+ pip install caprock # or: uvx caprock
12
+ caprock # prints status + where to get started
13
+ ```
14
+
15
+ Built on the open-source [Headroom](https://github.com/headroomlabs-ai/headroom)
16
+ project (Apache 2.0), with the fixes that make caching and compression actually
17
+ work on AWS Bedrock.
18
+
19
+ **More:** https://caprock.dev
@@ -0,0 +1,2 @@
1
+ """caprock — cut AWS Bedrock LLM spend from Claude Code. Early access."""
2
+ __version__ = "0.0.1"
@@ -0,0 +1,30 @@
1
+ """caprock CLI — early-access placeholder.
2
+
3
+ The full local tool (compression + prompt caching for Claude Code on AWS
4
+ Bedrock, `caprock wrap claude`) is rolling out. This release reserves the
5
+ name and points you at the details.
6
+ """
7
+ import sys
8
+
9
+ BANNER = """\
10
+ caprock — cut your AWS Bedrock LLM spend from Claude Code.
11
+
12
+ Compression + prompt caching for Claude Code / agents running on Bedrock,
13
+ on your machine, with your own credentials. Nothing leaves your machine.
14
+
15
+ Status: early access. The full CLI (`caprock start`, `caprock wrap claude`,
16
+ `caprock stats`) is rolling out now.
17
+
18
+ → https://caprock.dev
19
+
20
+ Want it for a team (per-user cost attribution + VPC deployment)? Same link.
21
+ """
22
+
23
+
24
+ def main() -> int:
25
+ sys.stdout.write(BANNER)
26
+ return 0
27
+
28
+
29
+ if __name__ == "__main__":
30
+ raise SystemExit(main())
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: caprock
3
+ Version: 0.0.1
4
+ Summary: Cut AWS Bedrock LLM spend from Claude Code — compression + prompt caching, in your terminal. (Early access.)
5
+ Author: Cybrix LLC
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://caprock.dev
8
+ Keywords: aws,bedrock,claude,llm,cost,compression,prompt-caching,headroom
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Utilities
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # caprock
18
+
19
+ Cut your **AWS Bedrock** LLM spend from **Claude Code** — context compression +
20
+ prompt caching, on your machine, with your own credentials. Nothing leaves your
21
+ machine.
22
+
23
+ > **Early access.** This release reserves the name; the full local CLI
24
+ > (`caprock start`, `caprock wrap claude`, `caprock stats`) is rolling out now.
25
+
26
+ ```bash
27
+ pip install caprock # or: uvx caprock
28
+ caprock # prints status + where to get started
29
+ ```
30
+
31
+ Built on the open-source [Headroom](https://github.com/headroomlabs-ai/headroom)
32
+ project (Apache 2.0), with the fixes that make caching and compression actually
33
+ work on AWS Bedrock.
34
+
35
+ **More:** https://caprock.dev
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ caprock/__init__.py
4
+ caprock/__main__.py
5
+ caprock.egg-info/PKG-INFO
6
+ caprock.egg-info/SOURCES.txt
7
+ caprock.egg-info/dependency_links.txt
8
+ caprock.egg-info/entry_points.txt
9
+ caprock.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ caprock = caprock.__main__:main
@@ -0,0 +1 @@
1
+ caprock
@@ -0,0 +1,26 @@
1
+ [project]
2
+ name = "caprock"
3
+ version = "0.0.1"
4
+ description = "Cut AWS Bedrock LLM spend from Claude Code — compression + prompt caching, in your terminal. (Early access.)"
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+ license = {text = "Apache-2.0"}
8
+ authors = [{name = "Cybrix LLC"}]
9
+ keywords = ["aws", "bedrock", "claude", "llm", "cost", "compression", "prompt-caching", "headroom"]
10
+ classifiers = [
11
+ "Development Status :: 2 - Pre-Alpha",
12
+ "Intended Audience :: Developers",
13
+ "License :: OSI Approved :: Apache Software License",
14
+ "Programming Language :: Python :: 3",
15
+ "Topic :: Utilities",
16
+ ]
17
+
18
+ [project.urls]
19
+ Homepage = "https://caprock.dev"
20
+
21
+ [project.scripts]
22
+ caprock = "caprock.__main__:main"
23
+
24
+ [build-system]
25
+ requires = ["setuptools>=68"]
26
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+