mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-08-27 02:01:29 -04:00
c5777a3e7a
Session 2 Achievements (100% Complete): • All 5 operations implemented: list, health, show, pull, rm • CLI compatibility: fuzzy matching, @hash syntax, short names • Lock detection: New safety feature replacing interactive prompts • Pull corruption recovery: Clean rm→pull workflow • Hash fuzzy matching: show "model@3df9bfd" works with short hashes Session 3 Major Progress (70% Complete): • JSON API Specification v0.1.1: Complete and production-ready • Full SHA hashes: 40-char hashes in list output for broke-cluster • Show command: --files and --config options fully implemented • JSON-flag enforcement: --json required in alpha for correct usage Key Features: • Broke-cluster integration ready with enforced --json flag • Real-world tested: rm→pull workflow validated with corrupted cache • Lock cleanup: 9 lock files properly cleaned during rm operations • Sanitized JSON: No cache paths or implementation details exposed Testing Status: Basic unit tests implemented, manual validation successful Note: Test suite requires update for JSON API Specification v0.1.1 Package: Installable as mlxk-json alongside 1.1.0 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mlxk-json"
|
|
version = "2.0.0-alpha"
|
|
description = "MLX-Knife 2.0 - JSON-first model management for automation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "The BROKE team", email = "broke@gmx.eu"},
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Operating System :: MacOS",
|
|
"Environment :: Console",
|
|
]
|
|
dependencies = [
|
|
"huggingface-hub>=0.34.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mlxk-json = "mlxk2.cli:main"
|
|
mlxk2 = "mlxk2.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/mzau/mlx-knife"
|
|
Repository = "https://github.com/mzau/mlx-knife"
|
|
Issues = "https://github.com/mzau/mlx-knife/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["mlxk2*"]
|
|
exclude = ["tests*", "tests_2.0*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "mlxk2.__version__"} |