xone-cli 0.1.0__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.
Files changed (50) hide show
  1. xone_cli-0.1.0/CHANGELOG.md +6 -0
  2. xone_cli-0.1.0/LICENSE +22 -0
  3. xone_cli-0.1.0/MANIFEST.in +6 -0
  4. xone_cli-0.1.0/PKG-INFO +79 -0
  5. xone_cli-0.1.0/README.md +52 -0
  6. xone_cli-0.1.0/README.zh-CN.md +52 -0
  7. xone_cli-0.1.0/docs/feedback/open-source-feedback-ledger.md +28 -0
  8. xone_cli-0.1.0/docs/install.md +22 -0
  9. xone_cli-0.1.0/docs/product-foundation.md +8 -0
  10. xone_cli-0.1.0/docs/release.md +15 -0
  11. xone_cli-0.1.0/fixtures/open-source-samples/aider.json +12 -0
  12. xone_cli-0.1.0/fixtures/open-source-samples/anthropics-claude-code.json +12 -0
  13. xone_cli-0.1.0/fixtures/open-source-samples/cline.json +12 -0
  14. xone_cli-0.1.0/fixtures/open-source-samples/continue.json +12 -0
  15. xone_cli-0.1.0/fixtures/open-source-samples/desktop-commander-mcp.json +12 -0
  16. xone_cli-0.1.0/fixtures/open-source-samples/docker-mcp-gateway.json +12 -0
  17. xone_cli-0.1.0/fixtures/open-source-samples/github-github-mcp-server.json +12 -0
  18. xone_cli-0.1.0/fixtures/open-source-samples/microsoft-playwright-mcp.json +12 -0
  19. xone_cli-0.1.0/fixtures/open-source-samples/modelcontextprotocol-servers.json +12 -0
  20. xone_cli-0.1.0/fixtures/open-source-samples/openai-codex.json +12 -0
  21. xone_cli-0.1.0/fixtures/open-source-samples/openhands.json +12 -0
  22. xone_cli-0.1.0/fixtures/open-source-samples/upstash-context7.json +12 -0
  23. xone_cli-0.1.0/ops/constraints/main-entry.md +8 -0
  24. xone_cli-0.1.0/ops/constraints/production.md +10 -0
  25. xone_cli-0.1.0/ops/opt-overlay.md +12 -0
  26. xone_cli-0.1.0/ops/skills/evolution.md +14 -0
  27. xone_cli-0.1.0/pyproject.toml +52 -0
  28. xone_cli-0.1.0/setup.cfg +4 -0
  29. xone_cli-0.1.0/src/xone_cli/__init__.py +4 -0
  30. xone_cli-0.1.0/src/xone_cli/__main__.py +8 -0
  31. xone_cli-0.1.0/src/xone_cli/cli.py +189 -0
  32. xone_cli-0.1.0/src/xone_cli/evidence.py +138 -0
  33. xone_cli-0.1.0/src/xone_cli/lab.py +38 -0
  34. xone_cli-0.1.0/src/xone_cli/model.py +43 -0
  35. xone_cli-0.1.0/src/xone_cli/release.py +111 -0
  36. xone_cli-0.1.0/src/xone_cli/risk.py +26 -0
  37. xone_cli-0.1.0/src/xone_cli/runbook.py +48 -0
  38. xone_cli-0.1.0/src/xone_cli/tooling.py +106 -0
  39. xone_cli-0.1.0/src/xone_cli.egg-info/PKG-INFO +79 -0
  40. xone_cli-0.1.0/src/xone_cli.egg-info/SOURCES.txt +48 -0
  41. xone_cli-0.1.0/src/xone_cli.egg-info/dependency_links.txt +1 -0
  42. xone_cli-0.1.0/src/xone_cli.egg-info/entry_points.txt +2 -0
  43. xone_cli-0.1.0/src/xone_cli.egg-info/requires.txt +4 -0
  44. xone_cli-0.1.0/src/xone_cli.egg-info/top_level.txt +1 -0
  45. xone_cli-0.1.0/tests/test_cli.py +34 -0
  46. xone_cli-0.1.0/tests/test_docs.py +29 -0
  47. xone_cli-0.1.0/tests/test_evidence.py +53 -0
  48. xone_cli-0.1.0/tests/test_release.py +61 -0
  49. xone_cli-0.1.0/tests/test_risk_lab.py +47 -0
  50. xone_cli-0.1.0/tests/test_tooling.py +57 -0
@@ -0,0 +1,6 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0
4
+
5
+ - Add the first X-One unified CLI foundation.
6
+
xone_cli-0.1.0/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 X-One-AI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,6 @@
1
+ include README.zh-CN.md
2
+ include CHANGELOG.md
3
+ include LICENSE
4
+ recursive-include docs *.md
5
+ recursive-include fixtures *.json
6
+ recursive-include ops *.md
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: xone-cli
3
+ Version: 0.1.0
4
+ Summary: Unified CLI entry point for X-One Agent Evidence Loop workflows.
5
+ Author: X-One-AI
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/X-One-AI/xone-cli
8
+ Project-URL: Repository, https://github.com/X-One-AI/xone-cli
9
+ Project-URL: Issues, https://github.com/X-One-AI/xone-cli/issues
10
+ Keywords: ai,agents,devsecops,mcp,cli
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Information Technology
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Security
19
+ Classifier: Topic :: Software Development :: Quality Assurance
20
+ Requires-Python: >=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Provides-Extra: dev
24
+ Requires-Dist: build>=1.2.2; extra == "dev"
25
+ Requires-Dist: pytest>=8.0; extra == "dev"
26
+ Dynamic: license-file
27
+
28
+ # xone-cli
29
+
30
+ Languages: English | [中文](./README.zh-CN.md)
31
+
32
+ `xone-cli` is the unified local entry point for X-One Agent Evidence Loop workflows.
33
+
34
+ It helps developers move from scattered tools to one clear path:
35
+
36
+ ```text
37
+ collect PR evidence
38
+ -> decide handoff
39
+ -> create failure packet when needed
40
+ -> attach MCP risk context when useful
41
+ -> run safe-local training scenarios
42
+ ```
43
+
44
+ ## Install
45
+
46
+ ```bash
47
+ python -m pip install xone-cli
48
+ xone --version
49
+ xone doctor
50
+ ```
51
+
52
+ ## First Run
53
+
54
+ ```bash
55
+ xone doctor
56
+ xone runbook --base main --head HEAD --dry-run
57
+ ```
58
+
59
+ `xone-cli` orchestrates these X-One tools:
60
+
61
+ - `agent-pr-evidence`
62
+ - `agent-failure-packet`
63
+ - `mcp-risk-index`
64
+ - `ai-incident-lab`
65
+
66
+ ## Boundary
67
+
68
+ - It does not replace the underlying tools.
69
+ - It does not post GitHub comments.
70
+ - It does not modify repositories automatically.
71
+ - It does not make allow/deny runtime enforcement decisions.
72
+ - It does not make hidden network calls.
73
+
74
+ ## Docs
75
+
76
+ - [Product Foundation](./docs/product-foundation.md)
77
+ - [Install](./docs/install.md)
78
+ - [Release](./docs/release.md)
79
+ - [Open-source Feedback Ledger](./docs/feedback/open-source-feedback-ledger.md)
@@ -0,0 +1,52 @@
1
+ # xone-cli
2
+
3
+ Languages: English | [中文](./README.zh-CN.md)
4
+
5
+ `xone-cli` is the unified local entry point for X-One Agent Evidence Loop workflows.
6
+
7
+ It helps developers move from scattered tools to one clear path:
8
+
9
+ ```text
10
+ collect PR evidence
11
+ -> decide handoff
12
+ -> create failure packet when needed
13
+ -> attach MCP risk context when useful
14
+ -> run safe-local training scenarios
15
+ ```
16
+
17
+ ## Install
18
+
19
+ ```bash
20
+ python -m pip install xone-cli
21
+ xone --version
22
+ xone doctor
23
+ ```
24
+
25
+ ## First Run
26
+
27
+ ```bash
28
+ xone doctor
29
+ xone runbook --base main --head HEAD --dry-run
30
+ ```
31
+
32
+ `xone-cli` orchestrates these X-One tools:
33
+
34
+ - `agent-pr-evidence`
35
+ - `agent-failure-packet`
36
+ - `mcp-risk-index`
37
+ - `ai-incident-lab`
38
+
39
+ ## Boundary
40
+
41
+ - It does not replace the underlying tools.
42
+ - It does not post GitHub comments.
43
+ - It does not modify repositories automatically.
44
+ - It does not make allow/deny runtime enforcement decisions.
45
+ - It does not make hidden network calls.
46
+
47
+ ## Docs
48
+
49
+ - [Product Foundation](./docs/product-foundation.md)
50
+ - [Install](./docs/install.md)
51
+ - [Release](./docs/release.md)
52
+ - [Open-source Feedback Ledger](./docs/feedback/open-source-feedback-ledger.md)
@@ -0,0 +1,52 @@
1
+ # xone-cli
2
+
3
+ 语言:[English](./README.md) | 中文
4
+
5
+ `xone-cli` 是 X-One Agent Evidence Loop 的统一本地入口。
6
+
7
+ 它把分散的工具串成一条清晰路径:
8
+
9
+ ```text
10
+ 收集 PR 证据
11
+ -> 判断交接决策
12
+ -> 需要时生成失败包
13
+ -> 需要时附加 MCP 风险上下文
14
+ -> 运行安全本地训练场景
15
+ ```
16
+
17
+ ## 安装
18
+
19
+ ```bash
20
+ python -m pip install xone-cli
21
+ xone --version
22
+ xone doctor
23
+ ```
24
+
25
+ ## 首次运行
26
+
27
+ ```bash
28
+ xone doctor
29
+ xone runbook --base main --head HEAD --dry-run
30
+ ```
31
+
32
+ `xone-cli` 编排这些 X-One 工具:
33
+
34
+ - `agent-pr-evidence`
35
+ - `agent-failure-packet`
36
+ - `mcp-risk-index`
37
+ - `ai-incident-lab`
38
+
39
+ ## 边界
40
+
41
+ - 不替代底层工具。
42
+ - 不自动发布 GitHub 评论。
43
+ - 不自动修改仓库。
44
+ - 不做 runtime allow/deny enforcement。
45
+ - 不做隐藏网络调用。
46
+
47
+ ## 文档
48
+
49
+ - [产品基础](./docs/product-foundation.md)
50
+ - [安装](./docs/install.md)
51
+ - [发布](./docs/release.md)
52
+ - [开源反馈 Ledger](./docs/feedback/open-source-feedback-ledger.md)
@@ -0,0 +1,28 @@
1
+ # Open-Source Feedback Ledger
2
+
3
+ This ledger substitutes early real-user feedback with public, sanitized open-source samples.
4
+
5
+ Rules:
6
+
7
+ - Record source URL and observation, not raw sensitive configuration.
8
+ - Do not label third-party projects as safe or unsafe.
9
+ - Classify observations as false-positive, false-negative, adapter-request, scenario-request, or catalog-update.
10
+
11
+ ## Samples
12
+
13
+ The first ledger entries live in `fixtures/open-source-samples/`.
14
+
15
+ | Source | Stars | Forks | Type | Feedback |
16
+ | --- | ---: | ---: | --- | --- |
17
+ | modelcontextprotocol/servers | 87186 | 10998 | mcp-server-examples | catalog-update |
18
+ | github/github-mcp-server | 30650 | 4381 | mcp-server-examples | catalog-update |
19
+ | microsoft/playwright-mcp | 33878 | 2798 | mcp-server-examples | scenario-request |
20
+ | upstash/context7 | 57304 | 2706 | mcp-server-examples | catalog-update |
21
+ | wonderwhy-er/DesktopCommanderMCP | 6165 | 729 | security-sensitive | scenario-request |
22
+ | cline/cline | 63235 | 6677 | ai-coding-tool | adapter-request |
23
+ | continuedev/continue | 33683 | 4654 | ai-coding-tool | adapter-request |
24
+ | Aider-AI/aider | 46171 | 4580 | ai-coding-tool | scenario-request |
25
+ | openai/codex | 90890 | 13410 | ai-coding-tool | scenario-request |
26
+ | OpenHands/OpenHands | 76929 | 9771 | agent-workflow | adapter-request |
27
+ | docker/mcp-gateway | 1452 | 246 | security-sensitive | catalog-update |
28
+ | anthropics/claude-code | 132258 | 21413 | ai-coding-tool | scenario-request |
@@ -0,0 +1,22 @@
1
+ # Install
2
+
3
+ ## Local Development
4
+
5
+ ```bash
6
+ python -m pip install -e '.[dev]'
7
+ xone --version
8
+ xone doctor
9
+ xone runbook --base main --head HEAD --dry-run
10
+ ```
11
+
12
+ ## User Install
13
+
14
+ ```bash
15
+ python -m pip install xone-cli
16
+ xone doctor
17
+ xone runbook --base main --head HEAD --dry-run
18
+ ```
19
+
20
+ `xone doctor` reports missing X-One tools and shows install guidance.
21
+
22
+ If `xone doctor` reports missing tools, install the suggested X-One packages and run it again before using `evidence`, `risk`, or `lab` commands.
@@ -0,0 +1,8 @@
1
+ # Product Foundation
2
+
3
+ `xone-cli` is the local workflow entry point for X-One Agent Evidence Loop adoption.
4
+
5
+ It is production-oriented, not a demo. Its first responsibility is to help a user understand whether the X-One toolchain is installed, then guide the user through evidence, packet, risk context, and lab workflows.
6
+
7
+ It is a workflow layer, not a new rule engine.
8
+
@@ -0,0 +1,15 @@
1
+ # Release
2
+
3
+ `xone-cli` uses a release candidate gate before public publishing.
4
+
5
+ Required checks:
6
+
7
+ ```bash
8
+ python -m pytest -q
9
+ python -m pip install -e '.[dev]'
10
+ xone release verify --build --install --smoke
11
+ ```
12
+
13
+ `xone release verify` builds the package, installs the wheel into a temporary virtual environment, and runs smoke checks from the installed `xone` entry point.
14
+
15
+ PyPI publishing must be tag-gated. TestPyPI publishing must use the `testpypi` environment.
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/Aider-AI/aider",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 46171,
6
+ "forks": 4580,
7
+ "sample_type": "ai-coding-tool",
8
+ "observed_pattern": "Terminal AI pair programming workflow that modifies local repositories.",
9
+ "expected_xone_behavior": "Exercise local git diff evidence collection and test-evidence expectations.",
10
+ "feedback_classification": "scenario-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/anthropics/claude-code",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 132258,
6
+ "forks": 21413,
7
+ "sample_type": "ai-coding-tool",
8
+ "observed_pattern": "Agentic coding tool that operates in terminal and understands local codebases.",
9
+ "expected_xone_behavior": "Use for installation, local workflow, and failure handoff expectation comparisons.",
10
+ "feedback_classification": "scenario-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/cline/cline",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 63235,
6
+ "forks": 6677,
7
+ "sample_type": "ai-coding-tool",
8
+ "observed_pattern": "Autonomous coding agent distributed as SDK, IDE extension, and CLI assistant.",
9
+ "expected_xone_behavior": "Use for agent-generated PR evidence and failure packet workflow examples.",
10
+ "feedback_classification": "adapter-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/continuedev/continue",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 33683,
6
+ "forks": 4654,
7
+ "sample_type": "ai-coding-tool",
8
+ "observed_pattern": "Source-controlled AI checks and CLI workflows for coding assistants.",
9
+ "expected_xone_behavior": "Compare X-One evidence runbooks against AI check workflows and CI evidence expectations.",
10
+ "feedback_classification": "adapter-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/wonderwhy-er/DesktopCommanderMCP",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 6165,
6
+ "forks": 729,
7
+ "sample_type": "security-sensitive",
8
+ "observed_pattern": "MCP server offering terminal control, filesystem search, and file editing capabilities.",
9
+ "expected_xone_behavior": "Exercise filesystem, process execution, and local mutation rules with high reviewer attention.",
10
+ "feedback_classification": "scenario-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/docker/mcp-gateway",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 1452,
6
+ "forks": 246,
7
+ "sample_type": "security-sensitive",
8
+ "observed_pattern": "Docker MCP gateway and CLI plugin surface involving containerized tool routing.",
9
+ "expected_xone_behavior": "Exercise Docker, network, and gateway boundary review questions.",
10
+ "feedback_classification": "catalog-update"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/github/github-mcp-server",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 30650,
6
+ "forks": 4381,
7
+ "sample_type": "mcp-server-examples",
8
+ "observed_pattern": "Official GitHub MCP server with token-mediated repository operations.",
9
+ "expected_xone_behavior": "Treat token scope and repository mutation capabilities as review questions, not safe/unsafe labels.",
10
+ "feedback_classification": "catalog-update"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/microsoft/playwright-mcp",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 33878,
6
+ "forks": 2798,
7
+ "sample_type": "mcp-server-examples",
8
+ "observed_pattern": "Browser automation MCP server with local browser control and network-facing workflows.",
9
+ "expected_xone_behavior": "Surface browser automation and network context as review evidence, especially in PR workflows.",
10
+ "feedback_classification": "scenario-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/modelcontextprotocol/servers",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 87186,
6
+ "forks": 10998,
7
+ "sample_type": "mcp-server-examples",
8
+ "observed_pattern": "Official MCP server collection with filesystem, fetch, git, memory, and other tool patterns.",
9
+ "expected_xone_behavior": "Use as broad MCP ecosystem fixture source; classify filesystem, network, process, and unpinned launch signals as review context.",
10
+ "feedback_classification": "catalog-update"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/openai/codex",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 90890,
6
+ "forks": 13410,
7
+ "sample_type": "ai-coding-tool",
8
+ "observed_pattern": "Terminal coding agent with local codebase operations.",
9
+ "expected_xone_behavior": "Use for evidence loop messaging, failure packet examples, and installation experience comparisons.",
10
+ "feedback_classification": "scenario-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/OpenHands/OpenHands",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 76929,
6
+ "forks": 9771,
7
+ "sample_type": "agent-workflow",
8
+ "observed_pattern": "AI-driven development agent platform with larger workflow surface area.",
9
+ "expected_xone_behavior": "Use for workflow-level evidence expectations, not single-command assumptions.",
10
+ "feedback_classification": "adapter-request"
11
+ }
12
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "schema_version": "xone.open_source_sample.v1",
3
+ "source_url": "https://github.com/upstash/context7",
4
+ "collected_at": "2026-06-14",
5
+ "stars": 57304,
6
+ "forks": 2706,
7
+ "sample_type": "mcp-server-examples",
8
+ "observed_pattern": "Documentation context MCP-style service used by AI coding tools.",
9
+ "expected_xone_behavior": "Classify documentation retrieval and network/context dependencies as review context.",
10
+ "feedback_classification": "catalog-update"
11
+ }
12
+
@@ -0,0 +1,8 @@
1
+ # Main Entry Constraints
2
+
3
+ - Keep top-level commands small and intention-based.
4
+ - Prefer `doctor`, `evidence`, `risk`, `lab`, `runbook`, and `release`.
5
+ - Put specialized behavior behind subcommands.
6
+ - Keep underlying tools directly usable.
7
+ - Delete or move commands that make the main entry feel crowded.
8
+
@@ -0,0 +1,10 @@
1
+ # Production Constraints
2
+
3
+ - Build production-usable workflows, not demos.
4
+ - Prefer explicit artifacts over hidden side effects.
5
+ - Do not post PR comments automatically.
6
+ - Do not mutate user repositories automatically.
7
+ - Do not make hidden network calls.
8
+ - Preserve underlying tool errors.
9
+ - Make missing dependencies actionable.
10
+
@@ -0,0 +1,12 @@
1
+ # OPT Overlay
2
+
3
+ `xone-cli` references One Person Team / OPT but does not modify OPT.
4
+
5
+ Project-specific roles:
6
+
7
+ - Product Manager: keep the main entry useful and uncluttered.
8
+ - Developer Experience Reviewer: verify first-run ergonomics.
9
+ - Release / Distribution Reviewer: verify package and installer readiness.
10
+ - Security Reviewer: verify no hidden network calls or unsafe automation.
11
+ - QA Engineer: verify local and release candidate paths.
12
+
@@ -0,0 +1,14 @@
1
+ # Skill Evolution
2
+
3
+ Keep constraints and workflow skills that improve actual first-run success.
4
+
5
+ Delete or weaken rules that create:
6
+
7
+ - noisy documentation
8
+ - crowded command surfaces
9
+ - false security confidence
10
+ - hidden automation
11
+ - unclear ownership
12
+
13
+ Review this file before each release.
14
+
@@ -0,0 +1,52 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "xone-cli"
7
+ version = "0.1.0"
8
+ description = "Unified CLI entry point for X-One Agent Evidence Loop workflows."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "X-One-AI" }
14
+ ]
15
+ keywords = ["ai", "agents", "devsecops", "mcp", "cli"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "Intended Audience :: Information Technology",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Topic :: Security",
25
+ "Topic :: Software Development :: Quality Assurance",
26
+ ]
27
+ dependencies = []
28
+
29
+ [project.optional-dependencies]
30
+ dev = [
31
+ "build>=1.2.2",
32
+ "pytest>=8.0",
33
+ ]
34
+
35
+ [project.urls]
36
+ Homepage = "https://github.com/X-One-AI/xone-cli"
37
+ Repository = "https://github.com/X-One-AI/xone-cli"
38
+ Issues = "https://github.com/X-One-AI/xone-cli/issues"
39
+
40
+ [project.scripts]
41
+ xone = "xone_cli.cli:entrypoint"
42
+
43
+ [tool.setuptools]
44
+ package-dir = {"" = "src"}
45
+
46
+ [tool.setuptools.packages.find]
47
+ where = ["src"]
48
+
49
+ [tool.pytest.ini_options]
50
+ pythonpath = ["src"]
51
+ testpaths = ["tests"]
52
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,4 @@
1
+ from __future__ import annotations
2
+
3
+ __version__ = "0.1.0"
4
+
@@ -0,0 +1,8 @@
1
+ from __future__ import annotations
2
+
3
+ from xone_cli.cli import entrypoint
4
+
5
+
6
+ if __name__ == "__main__":
7
+ entrypoint()
8
+