execkit 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.
@@ -0,0 +1,21 @@
1
+ # Rust
2
+ /target
3
+ **/target/
4
+ *.pdb
5
+
6
+ # Keep Cargo.lock committed (recommended for bins AND libs since 2023) - do NOT ignore it.
7
+
8
+ # Editors / OS
9
+ .DS_Store
10
+ *.swp
11
+ *~
12
+ .idea/
13
+ .vscode/
14
+
15
+ # PoC scratch artifacts
16
+ __pycache__/
17
+ *.pyc
18
+ .playwright-mcp/
19
+
20
+ # internal planning / scratch - kept locally, not published
21
+ _internal/
execkit-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: execkit
3
+ Version: 0.0.1
4
+ Summary: Name reserved for the execkit Python SDK - see https://github.com/blinkingbit-oss/execkit
5
+ Project-URL: Homepage, https://github.com/blinkingbit-oss/execkit
6
+ Project-URL: Repository, https://github.com/blinkingbit-oss/execkit
7
+ Author: jayashankarvr
8
+ License-Expression: Apache-2.0
9
+ Keywords: agent,ai,docker,mcp,shell,ssh
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+
13
+ # execkit (PyPI name reserved)
14
+
15
+ Reserved for the Python SDK of
16
+ [**execkit**](https://github.com/blinkingbit-oss/execkit) - stateful, structured,
17
+ safe command execution for AI agents over local shells, SSH, and Docker.
18
+
19
+ Today execkit ships as a Rust crate (`cargo add execkit`) and an MCP server
20
+ (`execkit-mcp`). A Python SDK is planned. See the
21
+ [project README](https://github.com/blinkingbit-oss/execkit).
@@ -0,0 +1,9 @@
1
+ # execkit (PyPI name reserved)
2
+
3
+ Reserved for the Python SDK of
4
+ [**execkit**](https://github.com/blinkingbit-oss/execkit) - stateful, structured,
5
+ safe command execution for AI agents over local shells, SSH, and Docker.
6
+
7
+ Today execkit ships as a Rust crate (`cargo add execkit`) and an MCP server
8
+ (`execkit-mcp`). A Python SDK is planned. See the
9
+ [project README](https://github.com/blinkingbit-oss/execkit).
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "execkit"
7
+ version = "0.0.1"
8
+ description = "Name reserved for the execkit Python SDK - see https://github.com/blinkingbit-oss/execkit"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "jayashankarvr" }]
13
+ keywords = ["ai", "agent", "shell", "ssh", "docker", "mcp"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/blinkingbit-oss/execkit"
17
+ Repository = "https://github.com/blinkingbit-oss/execkit"
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["src/execkit"]
@@ -0,0 +1,8 @@
1
+ """Placeholder for the execkit Python SDK.
2
+
3
+ execkit (https://github.com/blinkingbit-oss/execkit) is stateful, structured, safe
4
+ command execution for AI agents over local shells, SSH, and Docker. It ships today
5
+ as a Rust crate and an MCP server; this name is reserved for a future Python SDK.
6
+ """
7
+
8
+ __version__ = "0.0.1"