apcore-cli 0.2.1__tar.gz → 0.2.2__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.
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/CHANGELOG.md +5 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/PKG-INFO +13 -13
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/README.md +7 -7
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/pyproject.toml +6 -6
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.github/CODEOWNERS +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.github/copilot-ignore +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.github/workflows/ci.yml +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.gitignore +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.gitmessage +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/.pre-commit-config.yaml +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/CLAUDE.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/math/add.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/math/multiply.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/sysutil/disk.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/sysutil/env.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/sysutil/info.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/text/reverse.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/text/upper.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/extensions/text/wordcount.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/examples/run_examples.sh +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/approval-gate.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/config-resolver.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/core-dispatcher.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/discovery.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/output-formatter.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/overview.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/schema-parser.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/security-manager.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/shell-integration.md +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/planning/state.json +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/__init__.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/__main__.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/_sandbox_runner.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/approval.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/cli.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/config.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/discovery.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/output.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/ref_resolver.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/schema_parser.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/security/__init__.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/security/audit.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/security/auth.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/security/config_encryptor.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/security/sandbox.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/src/apcore_cli/shell.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/__init__.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/conftest.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_approval.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_bugfixes.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_cli.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_config.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_discovery.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_e2e.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_integration.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_output.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_ref_resolver.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_schema_parser.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_security/__init__.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_security/test_audit.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_security/test_auth.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_security/test_config_encryptor.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_security/test_sandbox.py +0 -0
- {apcore_cli-0.2.1 → apcore_cli-0.2.2}/tests/test_shell.py +0 -0
|
@@ -5,6 +5,11 @@ All notable changes to apcore-cli (Python SDK) will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.2] - 2026-03-22
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Rebrand: aipartnerup → aiperceivable
|
|
12
|
+
|
|
8
13
|
## [0.2.1] - 2026-03-19
|
|
9
14
|
|
|
10
15
|
### Changed
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apcore-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Terminal adapter for apcore — execute AI-Perceivable modules from the command line
|
|
5
|
-
Project-URL: Homepage, https://
|
|
6
|
-
Project-URL: Repository, https://github.com/
|
|
7
|
-
Project-URL: Documentation, https://github.com/
|
|
8
|
-
Project-URL: Issues, https://github.com/
|
|
9
|
-
Author-email:
|
|
5
|
+
Project-URL: Homepage, https://aiperceivable.com
|
|
6
|
+
Project-URL: Repository, https://github.com/aiperceivable/apcore-cli-python
|
|
7
|
+
Project-URL: Documentation, https://github.com/aiperceivable/apcore-cli-python#readme
|
|
8
|
+
Project-URL: Issues, https://github.com/aiperceivable/apcore-cli-python/issues
|
|
9
|
+
Author-email: aiperceivable <team@aiperceivable.com>
|
|
10
10
|
License-Expression: Apache-2.0
|
|
11
11
|
Keywords: agent,ai,apcore,automation,cli,command-line,llm,shell,terminal,unix
|
|
12
12
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -36,7 +36,7 @@ Requires-Dist: ruff>=0.1; extra == 'dev'
|
|
|
36
36
|
Description-Content-Type: text/markdown
|
|
37
37
|
|
|
38
38
|
<div align="center">
|
|
39
|
-
<img src="https://raw.githubusercontent.com/
|
|
39
|
+
<img src="https://raw.githubusercontent.com/aiperceivable/apcore-cli/main/apcore-cli-logo.svg" alt="apcore-cli logo" width="200"/>
|
|
40
40
|
</div>
|
|
41
41
|
|
|
42
42
|
# apcore-cli
|
|
@@ -49,11 +49,11 @@ Terminal adapter for apcore. Execute AI-Perceivable modules from the command lin
|
|
|
49
49
|
|
|
50
50
|
| | |
|
|
51
51
|
|---|---|
|
|
52
|
-
| **Python SDK** | [github.com/
|
|
53
|
-
| **Spec repo** | [github.com/
|
|
54
|
-
| **apcore core** | [github.com/
|
|
52
|
+
| **Python SDK** | [github.com/aiperceivable/apcore-cli-python](https://github.com/aiperceivable/apcore-cli-python) |
|
|
53
|
+
| **Spec repo** | [github.com/aiperceivable/apcore-cli](https://github.com/aiperceivable/apcore-cli) |
|
|
54
|
+
| **apcore core** | [github.com/aiperceivable/apcore](https://github.com/aiperceivable/apcore) |
|
|
55
55
|
|
|
56
|
-
**apcore-cli** turns any [apcore](https://github.com/
|
|
56
|
+
**apcore-cli** turns any [apcore](https://github.com/aiperceivable/apcore)-based project into a fully featured CLI tool — with **zero code changes** to your existing modules.
|
|
57
57
|
|
|
58
58
|
```
|
|
59
59
|
┌──────────────────┐
|
|
@@ -94,7 +94,7 @@ Requires Python 3.11+ and `apcore >= 0.13.0`.
|
|
|
94
94
|
The repo includes 8 example modules you can run immediately:
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
git clone https://github.com/
|
|
97
|
+
git clone https://github.com/aiperceivable/apcore-cli-python.git
|
|
98
98
|
cd apcore-cli-python
|
|
99
99
|
pip install -e ".[dev]"
|
|
100
100
|
|
|
@@ -415,7 +415,7 @@ apcore-cli --extensions-dir ./extensions greet.hello --name Alice --greeting Hi
|
|
|
415
415
|
## Development
|
|
416
416
|
|
|
417
417
|
```bash
|
|
418
|
-
git clone https://github.com/
|
|
418
|
+
git clone https://github.com/aiperceivable/apcore-cli-python.git
|
|
419
419
|
cd apcore-cli-python
|
|
420
420
|
pip install -e ".[dev]"
|
|
421
421
|
pytest # 263 tests
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/
|
|
2
|
+
<img src="https://raw.githubusercontent.com/aiperceivable/apcore-cli/main/apcore-cli-logo.svg" alt="apcore-cli logo" width="200"/>
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
# apcore-cli
|
|
@@ -12,11 +12,11 @@ Terminal adapter for apcore. Execute AI-Perceivable modules from the command lin
|
|
|
12
12
|
|
|
13
13
|
| | |
|
|
14
14
|
|---|---|
|
|
15
|
-
| **Python SDK** | [github.com/
|
|
16
|
-
| **Spec repo** | [github.com/
|
|
17
|
-
| **apcore core** | [github.com/
|
|
15
|
+
| **Python SDK** | [github.com/aiperceivable/apcore-cli-python](https://github.com/aiperceivable/apcore-cli-python) |
|
|
16
|
+
| **Spec repo** | [github.com/aiperceivable/apcore-cli](https://github.com/aiperceivable/apcore-cli) |
|
|
17
|
+
| **apcore core** | [github.com/aiperceivable/apcore](https://github.com/aiperceivable/apcore) |
|
|
18
18
|
|
|
19
|
-
**apcore-cli** turns any [apcore](https://github.com/
|
|
19
|
+
**apcore-cli** turns any [apcore](https://github.com/aiperceivable/apcore)-based project into a fully featured CLI tool — with **zero code changes** to your existing modules.
|
|
20
20
|
|
|
21
21
|
```
|
|
22
22
|
┌──────────────────┐
|
|
@@ -57,7 +57,7 @@ Requires Python 3.11+ and `apcore >= 0.13.0`.
|
|
|
57
57
|
The repo includes 8 example modules you can run immediately:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
git clone https://github.com/
|
|
60
|
+
git clone https://github.com/aiperceivable/apcore-cli-python.git
|
|
61
61
|
cd apcore-cli-python
|
|
62
62
|
pip install -e ".[dev]"
|
|
63
63
|
|
|
@@ -378,7 +378,7 @@ apcore-cli --extensions-dir ./extensions greet.hello --name Alice --greeting Hi
|
|
|
378
378
|
## Development
|
|
379
379
|
|
|
380
380
|
```bash
|
|
381
|
-
git clone https://github.com/
|
|
381
|
+
git clone https://github.com/aiperceivable/apcore-cli-python.git
|
|
382
382
|
cd apcore-cli-python
|
|
383
383
|
pip install -e ".[dev]"
|
|
384
384
|
pytest # 263 tests
|
|
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "apcore-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "Terminal adapter for apcore — execute AI-Perceivable modules from the command line"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
requires-python = ">=3.11"
|
|
12
12
|
authors = [
|
|
13
|
-
{ name = "
|
|
13
|
+
{ name = "aiperceivable", email = "team@aiperceivable.com" },
|
|
14
14
|
]
|
|
15
15
|
keywords = ["apcore", "cli", "terminal", "ai", "agent", "llm", "command-line", "automation", "shell", "unix"]
|
|
16
16
|
classifiers = [
|
|
@@ -48,10 +48,10 @@ dev = [
|
|
|
48
48
|
apcore-cli = "apcore_cli.__main__:main"
|
|
49
49
|
|
|
50
50
|
[project.urls]
|
|
51
|
-
Homepage = "https://
|
|
52
|
-
Repository = "https://github.com/
|
|
53
|
-
Documentation = "https://github.com/
|
|
54
|
-
Issues = "https://github.com/
|
|
51
|
+
Homepage = "https://aiperceivable.com"
|
|
52
|
+
Repository = "https://github.com/aiperceivable/apcore-cli-python"
|
|
53
|
+
Documentation = "https://github.com/aiperceivable/apcore-cli-python#readme"
|
|
54
|
+
Issues = "https://github.com/aiperceivable/apcore-cli-python/issues"
|
|
55
55
|
|
|
56
56
|
[tool.hatch.build.targets.wheel]
|
|
57
57
|
packages = ["src/apcore_cli"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|