opspilot-ai 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
@@ -1,16 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: opspilot-ai
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: AI-powered production incident analysis tool using multi-agent systems
5
- Home-page: https://github.com/choudharikiranv15/opspilot
5
+ Home-page: https://github.com/choudharikiranv15/OpsPilot-AI
6
6
  Author: Kiran Vijaykumar Choudhari
7
7
  Author-email: Kiran Vijaykumar Choudhari <choudharikiranv2003@gmail.com>
8
8
  License: MIT
9
- Project-URL: Homepage, https://github.com/choudharikiranv15/opspilot
10
- Project-URL: Documentation, https://github.com/choudharikiranv15/opspilot#readme
11
- Project-URL: Repository, https://github.com/choudharikiranv15/opspilot
12
- Project-URL: Bug Tracker, https://github.com/choudharikiranv15/opspilot/issues
13
- Project-URL: Changelog, https://github.com/choudharikiranv15/opspilot/releases
9
+ Project-URL: Homepage, https://github.com/choudharikiranv15/OpsPilot-AI
10
+ Project-URL: Documentation, https://github.com/choudharikiranv15/OpsPilot-AI#readme
11
+ Project-URL: Repository, https://github.com/choudharikiranv15/OpsPilot-AI
12
+ Project-URL: Bug Tracker, https://github.com/choudharikiranv15/OpsPilot-AI/issues
13
+ Project-URL: Changelog, https://github.com/choudharikiranv15/OpsPilot-AI/releases
14
14
  Keywords: ai,mlops,devops,incident-analysis,sre,production-monitoring,agentic-ai,multi-agent,llm,observability,incident-response,automation
15
15
  Classifier: Development Status :: 3 - Alpha
16
16
  Classifier: Intended Audience :: Developers
@@ -57,17 +57,21 @@ Dynamic: home-page
57
57
  Dynamic: license-file
58
58
  Dynamic: requires-python
59
59
 
60
- # OpsPilot 🤖
60
+ # OpsPilot-AI 🤖
61
+
62
+ [![PyPI version](https://badge.fury.io/py/opspilot-ai.svg)](https://pypi.org/project/opspilot-ai/)
63
+ [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
64
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
61
65
 
62
66
  > An intelligent agentic AI CLI tool for automated incident analysis and error resolution
63
67
 
64
- OpsPilot is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
68
+ OpsPilot-AI is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
65
69
 
66
70
  ---
67
71
 
68
- ## 🎯 What is OpsPilot?
72
+ ## 🎯 What is OpsPilot-AI?
69
73
 
70
- OpsPilot uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
74
+ OpsPilot-AI uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
71
75
 
72
76
  ### Key Capabilities
73
77
 
@@ -96,18 +100,25 @@ OpsPilot uses a **multi-agent AI architecture** to understand your project's con
96
100
 
97
101
  ### Installation
98
102
 
103
+ **From PyPI (Recommended):**
99
104
  ```bash
100
- # Clone repository
101
- git clone https://github.com/yourusername/opspilot.git
102
- cd opspilot
103
-
104
105
  # Basic installation
105
- pip install -e .
106
+ pip install opspilot-ai
106
107
 
107
108
  # With Redis support (recommended for production)
108
- pip install -e ".[redis]"
109
+ pip install opspilot-ai[redis]
109
110
 
110
111
  # With all integrations (Redis + AWS + Kubernetes)
112
+ pip install opspilot-ai[all]
113
+ ```
114
+
115
+ **From Source:**
116
+ ```bash
117
+ # Clone repository
118
+ git clone https://github.com/choudharikiranv15/OpsPilot-AI.git
119
+ cd opspilot
120
+
121
+ # Install in development mode
111
122
  pip install -e ".[all]"
112
123
  ```
113
124
 
@@ -162,7 +173,7 @@ opspilot analyze --verbose --debug
162
173
  Similar issues detected from past runs:
163
174
  - Redis connection issue caused by network or Redis server downtime (confidence 0.8)
164
175
 
165
- OpsPilot initialized
176
+ OpsPilot-AI initialized
166
177
  Project detected: /your/project
167
178
 
168
179
  Planner Agent reasoning...
@@ -200,7 +211,7 @@ Enable connection pooling and reasonable timeouts to improve reliability.
200
211
 
201
212
  ## 🏗️ Architecture
202
213
 
203
- OpsPilot implements a **multi-agent agentic architecture** with four specialized agents:
214
+ OpsPilot-AI implements a **multi-agent agentic architecture** with four specialized agents:
204
215
 
205
216
  1. **Planner Agent** - Analyzes project context and forms hypotheses about root causes
206
217
  2. **Verifier Agent** - Collects evidence and validates hypotheses with confidence scoring
@@ -225,7 +236,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
225
236
  ## 🧩 How It Works
226
237
 
227
238
  ### 1. Context Collection
228
- OpsPilot gathers information from multiple sources:
239
+ OpsPilot-AI gathers information from multiple sources:
229
240
  - **Logs**: Recent error logs and exceptions
230
241
  - **Environment**: Environment variables and configurations
231
242
  - **Dependencies**: Project dependencies (requirements.txt, package.json)
@@ -254,7 +265,7 @@ If confidence ≥ 0.6, the Fixer agent:
254
265
  - **Never auto-applies changes** (dry-run only for safety)
255
266
 
256
267
  ### 5. Learning from History
257
- OpsPilot maintains Redis-based memory of past issues:
268
+ OpsPilot-AI maintains Redis-based memory of past issues:
258
269
  - Stores hypotheses, confidence scores, and evidence with automatic TTL
259
270
  - User-isolated storage using project path hashing
260
271
  - Detects similar issues in future runs with sub-second lookups
@@ -406,3 +417,9 @@ For questions or feedback, please open an issue on GitHub.
406
417
  ---
407
418
 
408
419
  **Built with ❤️ using agentic AI principles**
420
+
421
+ ---
422
+
423
+ ## 📦 PyPI
424
+
425
+ This package is available on PyPI: [opspilot-ai](https://pypi.org/project/opspilot-ai/)
@@ -27,9 +27,9 @@ opspilot/tools/pattern_analysis.py,sha256=e6N48iMiYWwhmH_3Bbdqhr49n19jPRPrwBWv-9
27
27
  opspilot/utils/__init__.py,sha256=jDlOFqPTvm9jo4RsaLBrSmanD3QYogfnIr30hTiXY7Y,36
28
28
  opspilot/utils/llm.py,sha256=RsiBVw7iemZNxtJktUBCPpVY-E_9peImf6Gm6P81WSE,544
29
29
  opspilot/utils/llm_providers.py,sha256=q4MkGK03Mn_TcttJQaNfoMhSgVpBn-dMLm2AmHXt5Sc,15623
30
- opspilot_ai-0.1.0.dist-info/licenses/LICENSE,sha256=HEWOzX-yJ9Pctxca1nGhcPAg8Htk1PuJPPOPqcfHUe0,1083
31
- opspilot_ai-0.1.0.dist-info/METADATA,sha256=Ap8Ktb3I8Ft2bjhibpEHdzc1VJGPe6w7mWp23L_x5fU,14442
32
- opspilot_ai-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
33
- opspilot_ai-0.1.0.dist-info/entry_points.txt,sha256=2nttMUdFdShzdN0EkLNgtMNbWDWdO2hHyDzdiCWZolo,46
34
- opspilot_ai-0.1.0.dist-info/top_level.txt,sha256=u_uSy6eFmJW-9xWnxieGZn5LN_xjXOPMhlKu8BEscdA,9
35
- opspilot_ai-0.1.0.dist-info/RECORD,,
30
+ opspilot_ai-0.1.1.dist-info/licenses/LICENSE,sha256=HEWOzX-yJ9Pctxca1nGhcPAg8Htk1PuJPPOPqcfHUe0,1083
31
+ opspilot_ai-0.1.1.dist-info/METADATA,sha256=qIobVKOj5v6u7Z1ZdTDKvblDXoO67sXQjqKZkUf4gWo,15058
32
+ opspilot_ai-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
33
+ opspilot_ai-0.1.1.dist-info/entry_points.txt,sha256=2nttMUdFdShzdN0EkLNgtMNbWDWdO2hHyDzdiCWZolo,46
34
+ opspilot_ai-0.1.1.dist-info/top_level.txt,sha256=u_uSy6eFmJW-9xWnxieGZn5LN_xjXOPMhlKu8BEscdA,9
35
+ opspilot_ai-0.1.1.dist-info/RECORD,,