Files
Ayasaz 48f0449e18 feat: add cli-anything-jumpserver v0.1.0 harness (#346)
* feat: add cli-anything-jumpserver v0.1.0 harness

- JUMP server bastion host CLI for AI agents and humans
- Covers: assets, users, permissions, accounts, sessions, audit, system
- Uses JumpServer REST API with Token authentication
- 59 unit tests passing (mock backend)
- Includes SKILL.md, registry.json entry, and SOP docs
- Proper agent-harness directory structure following project conventions

* Fix JumpServer harness validation blockers

---------

Co-authored-by: yuhao <itsyuhao@icloud.com>
2026-06-11 19:26:36 +08:00

53 lines
1.4 KiB
TOML

[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cli-anything-jumpserver"
version = "0.1.0"
description = "Stateful CLI harness for JumpServer bastion host management"
readme = "cli_anything/jumpserver/README.md"
license = { text = "MIT" }
authors = [
{ name = "cli-anything" }
]
keywords = ["jumpserver", "bastion", "pam", "cli", "security"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Systems Administration",
"Topic :: Security",
]
requires-python = ">=3.11"
dependencies = [
"click>=8.0",
"requests>=2.28",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10",
]
[project.urls]
Homepage = "https://github.com/cli-anything/cli-anything-jumpserver"
Source = "https://github.com/cli-anything/cli-anything-jumpserver"
Issues = "https://github.com/cli-anything/cli-anything-jumpserver/issues"
[project.scripts]
cli-anything-jumpserver = "cli_anything.jumpserver.jumpserver_cli:cli_main"
[tool.setuptools.packages.find]
include = ["cli_anything.*"]
[tool.pytest.ini_options]
testpaths = ["cli_anything/jumpserver/tests"]
addopts = "-v --tb=short"