skmake 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.
- skmake-0.0.1/PKG-INFO +14 -0
- skmake-0.0.1/README.md +7 -0
- skmake-0.0.1/pyproject.toml +9 -0
- skmake-0.0.1/src/skmake/__init__.py +1 -0
skmake-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: skmake
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: SKMake - a build system for agent skills. Compiles SKILL.md packages into dependency-aware, reusable artifacts. Placeholder registration; code coming soon.
|
|
5
|
+
Requires-Python: >=3.9
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# skmake
|
|
9
|
+
|
|
10
|
+
Placeholder for **SKMake** — a build system for agent skills
|
|
11
|
+
(display form `SKMake`, machine form `skmake`).
|
|
12
|
+
|
|
13
|
+
CMake compiles build descriptions into native build systems;
|
|
14
|
+
SKMake compiles agent skills into native executors.
|
skmake-0.0.1/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "skmake"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "SKMake - a build system for agent skills. Compiles SKILL.md packages into dependency-aware, reusable artifacts. Placeholder registration; code coming soon."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.9"
|
|
7
|
+
[build-system]
|
|
8
|
+
requires = ["hatchling"]
|
|
9
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1" # placeholder
|