devopsiq 0.1.2__tar.gz → 0.1.3__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.
- {devopsiq-0.1.2/devopsiq.egg-info → devopsiq-0.1.3}/PKG-INFO +5 -1
- {devopsiq-0.1.2 → devopsiq-0.1.3}/README.md +4 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3/devopsiq.egg-info}/PKG-INFO +5 -1
- {devopsiq-0.1.2 → devopsiq-0.1.3}/pyproject.toml +1 -1
- {devopsiq-0.1.2 → devopsiq-0.1.3}/LICENSE +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/__init__.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/agent.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/config.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/investigation.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/prompts.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/agent/store.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/devopsiq.egg-info/SOURCES.txt +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/devopsiq.egg-info/dependency_links.txt +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/devopsiq.egg-info/entry_points.txt +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/devopsiq.egg-info/requires.txt +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/devopsiq.egg-info/top_level.txt +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/main.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/setup.cfg +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_automation.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase2.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase3.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase4.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase5.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase7.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase8.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tests/test_phase9.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/__init__.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/ansible.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/argocd.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/base.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/cloud.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/docker.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/git_ci.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/helm.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/investigation.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/istio.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/kubernetes.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/monitoring.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/newrelic.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/preflight.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/registry.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/system.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/terraform.py +0 -0
- {devopsiq-0.1.2 → devopsiq-0.1.3}/tools/trivy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devopsiq
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A from-scratch, read-only AI agent that investigates real DevOps problems — Kubernetes, Docker, Helm, Argo CD, Istio, Terraform, GitHub Actions, cloud, New Relic and more.
|
|
5
5
|
Author: DevOpsAbhii
|
|
6
6
|
License-Expression: MIT
|
|
@@ -74,6 +74,10 @@ need one. The repository is git-tracked.
|
|
|
74
74
|
Every phase still built from scratch — no LangChain, LangGraph,
|
|
75
75
|
AutoGen, CrewAI, or MCP.
|
|
76
76
|
|
|
77
|
+
> **New here?** The [Install & run guide (PDF)](DevOps_User_Guide.pdf) walks
|
|
78
|
+
> you from zero to investigating — three install routes, credentials
|
|
79
|
+
> (or none at all), model choice, and every command.
|
|
80
|
+
|
|
77
81
|
> **Want to use this in your own project?** See [INTEGRATION.md](INTEGRATION.md)
|
|
78
82
|
> for the three integration levels: drive it as a CLI from cron/CI (exit
|
|
79
83
|
> codes + `--json`), embed it as a Python library, or extend it with your
|
|
@@ -44,6 +44,10 @@ need one. The repository is git-tracked.
|
|
|
44
44
|
Every phase still built from scratch — no LangChain, LangGraph,
|
|
45
45
|
AutoGen, CrewAI, or MCP.
|
|
46
46
|
|
|
47
|
+
> **New here?** The [Install & run guide (PDF)](DevOps_User_Guide.pdf) walks
|
|
48
|
+
> you from zero to investigating — three install routes, credentials
|
|
49
|
+
> (or none at all), model choice, and every command.
|
|
50
|
+
|
|
47
51
|
> **Want to use this in your own project?** See [INTEGRATION.md](INTEGRATION.md)
|
|
48
52
|
> for the three integration levels: drive it as a CLI from cron/CI (exit
|
|
49
53
|
> codes + `--json`), embed it as a Python library, or extend it with your
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devopsiq
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A from-scratch, read-only AI agent that investigates real DevOps problems — Kubernetes, Docker, Helm, Argo CD, Istio, Terraform, GitHub Actions, cloud, New Relic and more.
|
|
5
5
|
Author: DevOpsAbhii
|
|
6
6
|
License-Expression: MIT
|
|
@@ -74,6 +74,10 @@ need one. The repository is git-tracked.
|
|
|
74
74
|
Every phase still built from scratch — no LangChain, LangGraph,
|
|
75
75
|
AutoGen, CrewAI, or MCP.
|
|
76
76
|
|
|
77
|
+
> **New here?** The [Install & run guide (PDF)](DevOps_User_Guide.pdf) walks
|
|
78
|
+
> you from zero to investigating — three install routes, credentials
|
|
79
|
+
> (or none at all), model choice, and every command.
|
|
80
|
+
|
|
77
81
|
> **Want to use this in your own project?** See [INTEGRATION.md](INTEGRATION.md)
|
|
78
82
|
> for the three integration levels: drive it as a CLI from cron/CI (exit
|
|
79
83
|
> codes + `--json`), embed it as a Python library, or extend it with your
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "devopsiq"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "A from-scratch, read-only AI agent that investigates real DevOps problems — Kubernetes, Docker, Helm, Argo CD, Istio, Terraform, GitHub Actions, cloud, New Relic and more."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|