cxtr 0.0.0__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.
- cxtr-0.0.0/LICENSE +21 -0
- cxtr-0.0.0/PKG-INFO +46 -0
- cxtr-0.0.0/README.md +27 -0
- cxtr-0.0.0/pyproject.toml +28 -0
- cxtr-0.0.0/src/cxtr/__init__.py +7 -0
cxtr-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vishwa Vignan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
cxtr-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cxtr
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: context provider — schema-first, extensible. Reserved; in active development.
|
|
5
|
+
Author-email: Vishwa Vignan <iamvish83@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Keywords: agents,ai,context,extensible,llm,mcp,provider,schema
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# cxtr
|
|
21
|
+
|
|
22
|
+
> Context provider — schema-first, extensible.
|
|
23
|
+
|
|
24
|
+
This is a name reservation. The library is in active development; the first public release will replace this placeholder.
|
|
25
|
+
|
|
26
|
+
## what it will be
|
|
27
|
+
|
|
28
|
+
cxtr is a schema-first context provider for agentic systems:
|
|
29
|
+
|
|
30
|
+
- **Schema-first** — define context shapes declaratively; validation and typing are derived automatically
|
|
31
|
+
- **Extensible** — plug in custom context sources, resolvers, and middleware
|
|
32
|
+
- **Provider model** — compose and scope context across agents, tools, and runtimes
|
|
33
|
+
- **MCP-native** — designed to work alongside MCP transports and tool registries
|
|
34
|
+
|
|
35
|
+
## status
|
|
36
|
+
|
|
37
|
+
| field | value |
|
|
38
|
+
|------------------|------------------------------------|
|
|
39
|
+
| version | `0.0.0` — name reservation |
|
|
40
|
+
| first release | TBD |
|
|
41
|
+
| python | `>=3.11` |
|
|
42
|
+
| license | MIT |
|
|
43
|
+
|
|
44
|
+
## not yet installable
|
|
45
|
+
|
|
46
|
+
`pip install cxtr` will resolve, but the package currently exposes nothing functional. Watch this page for the first usable release.
|
cxtr-0.0.0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# cxtr
|
|
2
|
+
|
|
3
|
+
> Context provider — schema-first, extensible.
|
|
4
|
+
|
|
5
|
+
This is a name reservation. The library is in active development; the first public release will replace this placeholder.
|
|
6
|
+
|
|
7
|
+
## what it will be
|
|
8
|
+
|
|
9
|
+
cxtr is a schema-first context provider for agentic systems:
|
|
10
|
+
|
|
11
|
+
- **Schema-first** — define context shapes declaratively; validation and typing are derived automatically
|
|
12
|
+
- **Extensible** — plug in custom context sources, resolvers, and middleware
|
|
13
|
+
- **Provider model** — compose and scope context across agents, tools, and runtimes
|
|
14
|
+
- **MCP-native** — designed to work alongside MCP transports and tool registries
|
|
15
|
+
|
|
16
|
+
## status
|
|
17
|
+
|
|
18
|
+
| field | value |
|
|
19
|
+
|------------------|------------------------------------|
|
|
20
|
+
| version | `0.0.0` — name reservation |
|
|
21
|
+
| first release | TBD |
|
|
22
|
+
| python | `>=3.11` |
|
|
23
|
+
| license | MIT |
|
|
24
|
+
|
|
25
|
+
## not yet installable
|
|
26
|
+
|
|
27
|
+
`pip install cxtr` will resolve, but the package currently exposes nothing functional. Watch this page for the first usable release.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cxtr"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "context provider — schema-first, extensible. Reserved; in active development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Vishwa Vignan", email = "iamvish83@gmail.com" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["context", "provider", "schema", "extensible", "agents", "mcp", "llm", "ai"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[tool.hatch.build.targets.wheel]
|
|
28
|
+
packages = ["src/cxtr"]
|