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 +35 -0
- caprock-0.0.1/README.md +19 -0
- caprock-0.0.1/caprock/__init__.py +2 -0
- caprock-0.0.1/caprock/__main__.py +30 -0
- caprock-0.0.1/caprock.egg-info/PKG-INFO +35 -0
- caprock-0.0.1/caprock.egg-info/SOURCES.txt +9 -0
- caprock-0.0.1/caprock.egg-info/dependency_links.txt +1 -0
- caprock-0.0.1/caprock.egg-info/entry_points.txt +2 -0
- caprock-0.0.1/caprock.egg-info/top_level.txt +1 -0
- caprock-0.0.1/pyproject.toml +26 -0
- caprock-0.0.1/setup.cfg +4 -0
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
|
caprock-0.0.1/README.md
ADDED
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -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"
|
caprock-0.0.1/setup.cfg
ADDED