stackply 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.
- stackply-0.0.1/PKG-INFO +44 -0
- stackply-0.0.1/README.md +28 -0
- stackply-0.0.1/pyproject.toml +26 -0
- stackply-0.0.1/setup.cfg +4 -0
- stackply-0.0.1/stackply/__init__.py +3 -0
- stackply-0.0.1/stackply.egg-info/PKG-INFO +44 -0
- stackply-0.0.1/stackply.egg-info/SOURCES.txt +7 -0
- stackply-0.0.1/stackply.egg-info/dependency_links.txt +1 -0
- stackply-0.0.1/stackply.egg-info/top_level.txt +1 -0
stackply-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stackply
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The Reliability Layer for Agentic AI. Orchestration, observability, and guardrails for autonomous AI agents.
|
|
5
|
+
Author: Stackply Team
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://stackply.com
|
|
8
|
+
Project-URL: Repository, https://github.com/stackply/cli
|
|
9
|
+
Keywords: ai,agents,agentic,ops,observability,orchestration,guardrails,llm
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Stackply
|
|
18
|
+
|
|
19
|
+
**The Reliability Layer for Agentic AI.**
|
|
20
|
+
|
|
21
|
+
Stackply is an orchestration and observability infrastructure for autonomous AI agents. We help developers build reliable, production-grade agentic workflows that don't break.
|
|
22
|
+
|
|
23
|
+
## What is Stackply?
|
|
24
|
+
|
|
25
|
+
We are solving the "Black Box" problem of Agent Ops:
|
|
26
|
+
- **Orchestration:** Chain LLMs and tools with deterministic control flow.
|
|
27
|
+
- **Observability:** Trace agent reasoning steps (Thought -> Action -> Observation) in real-time.
|
|
28
|
+
- **Guardrails:** Prevent hallucinations and unauthorized actions at the infrastructure layer.
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install stackply
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Status
|
|
37
|
+
|
|
38
|
+
Stackply is currently in active development. Early access is coming soon.
|
|
39
|
+
|
|
40
|
+
Visit [stackply.com](https://stackply.com) to join the waitlist.
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
stackply-0.0.1/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Stackply
|
|
2
|
+
|
|
3
|
+
**The Reliability Layer for Agentic AI.**
|
|
4
|
+
|
|
5
|
+
Stackply is an orchestration and observability infrastructure for autonomous AI agents. We help developers build reliable, production-grade agentic workflows that don't break.
|
|
6
|
+
|
|
7
|
+
## What is Stackply?
|
|
8
|
+
|
|
9
|
+
We are solving the "Black Box" problem of Agent Ops:
|
|
10
|
+
- **Orchestration:** Chain LLMs and tools with deterministic control flow.
|
|
11
|
+
- **Observability:** Trace agent reasoning steps (Thought -> Action -> Observation) in real-time.
|
|
12
|
+
- **Guardrails:** Prevent hallucinations and unauthorized actions at the infrastructure layer.
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install stackply
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Status
|
|
21
|
+
|
|
22
|
+
Stackply is currently in active development. Early access is coming soon.
|
|
23
|
+
|
|
24
|
+
Visit [stackply.com](https://stackply.com) to join the waitlist.
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "stackply"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The Reliability Layer for Agentic AI. Orchestration, observability, and guardrails for autonomous AI agents."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Stackply Team" }
|
|
13
|
+
]
|
|
14
|
+
keywords = ["ai", "agents", "agentic", "ops", "observability", "orchestration", "guardrails", "llm"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
requires-python = ">=3.8"
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://stackply.com"
|
|
26
|
+
Repository = "https://github.com/stackply/cli"
|
stackply-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stackply
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The Reliability Layer for Agentic AI. Orchestration, observability, and guardrails for autonomous AI agents.
|
|
5
|
+
Author: Stackply Team
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://stackply.com
|
|
8
|
+
Project-URL: Repository, https://github.com/stackply/cli
|
|
9
|
+
Keywords: ai,agents,agentic,ops,observability,orchestration,guardrails,llm
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# Stackply
|
|
18
|
+
|
|
19
|
+
**The Reliability Layer for Agentic AI.**
|
|
20
|
+
|
|
21
|
+
Stackply is an orchestration and observability infrastructure for autonomous AI agents. We help developers build reliable, production-grade agentic workflows that don't break.
|
|
22
|
+
|
|
23
|
+
## What is Stackply?
|
|
24
|
+
|
|
25
|
+
We are solving the "Black Box" problem of Agent Ops:
|
|
26
|
+
- **Orchestration:** Chain LLMs and tools with deterministic control flow.
|
|
27
|
+
- **Observability:** Trace agent reasoning steps (Thought -> Action -> Observation) in real-time.
|
|
28
|
+
- **Guardrails:** Prevent hallucinations and unauthorized actions at the infrastructure layer.
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install stackply
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Status
|
|
37
|
+
|
|
38
|
+
Stackply is currently in active development. Early access is coming soon.
|
|
39
|
+
|
|
40
|
+
Visit [stackply.com](https://stackply.com) to join the waitlist.
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
stackply
|