suitable-loop 0.1.1__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.
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/PKG-INFO +13 -11
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/README.md +6 -4
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/pyproject.toml +7 -7
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/__init__.py +1 -1
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/CLAUDE.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/debug-error.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/health-check.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/impact-check.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/onboard.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/release.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/risk-report.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.claude/commands/trace-function.md +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.github/workflows/publish.yml +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/.gitignore +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/LICENSE +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/__main__.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/analyzers/__init__.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/analyzers/code_analyzer.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/analyzers/git_analyzer.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/analyzers/log_analyzer.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/config.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/db.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/graph/__init__.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/graph/engine.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/models.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/server.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/tools/__init__.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/tools/code_tools.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/tools/git_tools.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/tools/log_tools.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/suitable_loop/tools/util_tools.py +0 -0
- {suitable_loop-0.1.1 → suitable_loop-0.1.3}/tests/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: suitable-loop
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Local production engineering platform — semantic code analysis, git risk scoring, and log correlation via MCP
|
|
5
5
|
Project-URL: Homepage, https://github.com/suitable-adventures/suitable-loop
|
|
6
6
|
Project-URL: Repository, https://github.com/suitable-adventures/suitable-loop
|
|
@@ -18,13 +18,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
19
|
Classifier: Topic :: Software Development :: Testing
|
|
20
20
|
Requires-Python: >=3.11
|
|
21
|
-
Requires-Dist: gitpython
|
|
22
|
-
Requires-Dist: mcp
|
|
23
|
-
Requires-Dist: networkx
|
|
24
|
-
Requires-Dist: radon
|
|
21
|
+
Requires-Dist: gitpython==3.1.46
|
|
22
|
+
Requires-Dist: mcp==1.26.0
|
|
23
|
+
Requires-Dist: networkx==3.6.1
|
|
24
|
+
Requires-Dist: radon==6.0.1
|
|
25
25
|
Provides-Extra: dev
|
|
26
|
-
Requires-Dist: pytest-asyncio
|
|
27
|
-
Requires-Dist: pytest
|
|
26
|
+
Requires-Dist: pytest-asyncio==1.3.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest==9.0.2; extra == 'dev'
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
|
|
30
30
|
# Suitable Loop
|
|
@@ -51,13 +51,13 @@ Create `.mcp.json` in your project root:
|
|
|
51
51
|
"mcpServers": {
|
|
52
52
|
"suitable-loop": {
|
|
53
53
|
"command": "uvx",
|
|
54
|
-
"args": ["
|
|
54
|
+
"args": ["suitable-loop"]
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
That's it. `uvx`
|
|
60
|
+
That's it. `uvx` fetches the package from PyPI automatically — no manual install needed.
|
|
61
61
|
|
|
62
62
|
> **Local development?** Point to a local checkout instead:
|
|
63
63
|
> ```json
|
|
@@ -66,11 +66,12 @@ That's it. `uvx` handles cloning, caching, and running automatically — no manu
|
|
|
66
66
|
|
|
67
67
|
### 2. Install slash commands (optional)
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
Clone the repo and copy the commands into your project:
|
|
70
70
|
|
|
71
71
|
```bash
|
|
72
|
+
git clone https://github.com/suitable-adventures/suitable-loop.git /tmp/suitable-loop
|
|
72
73
|
mkdir -p .claude/commands
|
|
73
|
-
cp
|
|
74
|
+
cp /tmp/suitable-loop/.claude/commands/* .claude/commands/
|
|
74
75
|
```
|
|
75
76
|
|
|
76
77
|
### 3. Restart Claude Code and start using it
|
|
@@ -94,6 +95,7 @@ cp -r /path/to/suitable-loop/.claude/commands/* .claude/commands/
|
|
|
94
95
|
| `/debug-error <error or log path>` | Correlate an error/traceback to source code paths |
|
|
95
96
|
| `/health-check` | Full assessment: complexity, coupling, churn trends, actionable recommendations |
|
|
96
97
|
| `/trace-function <name>` | Map a function's callers, callees, complexity, and role in the system |
|
|
98
|
+
| `/release [patch\|minor\|major]` | Bump version, tag, and publish a new release to PyPI |
|
|
97
99
|
|
|
98
100
|
## MCP Tools
|
|
99
101
|
|
|
@@ -22,13 +22,13 @@ Create `.mcp.json` in your project root:
|
|
|
22
22
|
"mcpServers": {
|
|
23
23
|
"suitable-loop": {
|
|
24
24
|
"command": "uvx",
|
|
25
|
-
"args": ["
|
|
25
|
+
"args": ["suitable-loop"]
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
That's it. `uvx`
|
|
31
|
+
That's it. `uvx` fetches the package from PyPI automatically — no manual install needed.
|
|
32
32
|
|
|
33
33
|
> **Local development?** Point to a local checkout instead:
|
|
34
34
|
> ```json
|
|
@@ -37,11 +37,12 @@ That's it. `uvx` handles cloning, caching, and running automatically — no manu
|
|
|
37
37
|
|
|
38
38
|
### 2. Install slash commands (optional)
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
Clone the repo and copy the commands into your project:
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
+
git clone https://github.com/suitable-adventures/suitable-loop.git /tmp/suitable-loop
|
|
43
44
|
mkdir -p .claude/commands
|
|
44
|
-
cp
|
|
45
|
+
cp /tmp/suitable-loop/.claude/commands/* .claude/commands/
|
|
45
46
|
```
|
|
46
47
|
|
|
47
48
|
### 3. Restart Claude Code and start using it
|
|
@@ -65,6 +66,7 @@ cp -r /path/to/suitable-loop/.claude/commands/* .claude/commands/
|
|
|
65
66
|
| `/debug-error <error or log path>` | Correlate an error/traceback to source code paths |
|
|
66
67
|
| `/health-check` | Full assessment: complexity, coupling, churn trends, actionable recommendations |
|
|
67
68
|
| `/trace-function <name>` | Map a function's callers, callees, complexity, and role in the system |
|
|
69
|
+
| `/release [patch\|minor\|major]` | Bump version, tag, and publish a new release to PyPI |
|
|
68
70
|
|
|
69
71
|
## MCP Tools
|
|
70
72
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "suitable-loop"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "Local production engineering platform — semantic code analysis, git risk scoring, and log correlation via MCP"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -20,16 +20,16 @@ classifiers = [
|
|
|
20
20
|
"Topic :: Software Development :: Testing",
|
|
21
21
|
]
|
|
22
22
|
dependencies = [
|
|
23
|
-
"mcp
|
|
24
|
-
"networkx
|
|
25
|
-
"gitpython
|
|
26
|
-
"radon
|
|
23
|
+
"mcp==1.26.0",
|
|
24
|
+
"networkx==3.6.1",
|
|
25
|
+
"gitpython==3.1.46",
|
|
26
|
+
"radon==6.0.1",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.optional-dependencies]
|
|
30
30
|
dev = [
|
|
31
|
-
"pytest
|
|
32
|
-
"pytest-asyncio
|
|
31
|
+
"pytest==9.0.2",
|
|
32
|
+
"pytest-asyncio==1.3.0",
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
[project.urls]
|
|
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
|