aes-cli 0.2.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 (65) hide show
  1. aes_cli-0.2.0/PKG-INFO +110 -0
  2. aes_cli-0.2.0/README.md +79 -0
  3. aes_cli-0.2.0/aes/__init__.py +5 -0
  4. aes_cli-0.2.0/aes/__main__.py +37 -0
  5. aes_cli-0.2.0/aes/analyzer.py +487 -0
  6. aes_cli-0.2.0/aes/commands/__init__.py +0 -0
  7. aes_cli-0.2.0/aes/commands/init.py +727 -0
  8. aes_cli-0.2.0/aes/commands/inspect.py +204 -0
  9. aes_cli-0.2.0/aes/commands/install.py +379 -0
  10. aes_cli-0.2.0/aes/commands/publish.py +432 -0
  11. aes_cli-0.2.0/aes/commands/search.py +65 -0
  12. aes_cli-0.2.0/aes/commands/status.py +153 -0
  13. aes_cli-0.2.0/aes/commands/sync.py +413 -0
  14. aes_cli-0.2.0/aes/commands/validate.py +77 -0
  15. aes_cli-0.2.0/aes/config.py +43 -0
  16. aes_cli-0.2.0/aes/domains.py +1382 -0
  17. aes_cli-0.2.0/aes/frameworks.py +522 -0
  18. aes_cli-0.2.0/aes/mcp_server.py +213 -0
  19. aes_cli-0.2.0/aes/registry.py +294 -0
  20. aes_cli-0.2.0/aes/scaffold/agent.yaml.jinja +135 -0
  21. aes_cli-0.2.0/aes/scaffold/agentignore.jinja +61 -0
  22. aes_cli-0.2.0/aes/scaffold/instructions.md.jinja +311 -0
  23. aes_cli-0.2.0/aes/scaffold/local.example.yaml.jinja +35 -0
  24. aes_cli-0.2.0/aes/scaffold/local.yaml.jinja +29 -0
  25. aes_cli-0.2.0/aes/scaffold/operations.md.jinja +33 -0
  26. aes_cli-0.2.0/aes/scaffold/orchestrator.md.jinja +95 -0
  27. aes_cli-0.2.0/aes/scaffold/permissions.yaml.jinja +151 -0
  28. aes_cli-0.2.0/aes/scaffold/setup.md.jinja +244 -0
  29. aes_cli-0.2.0/aes/scaffold/skill.md.jinja +27 -0
  30. aes_cli-0.2.0/aes/scaffold/skill.yaml.jinja +175 -0
  31. aes_cli-0.2.0/aes/scaffold/workflow.yaml.jinja +44 -0
  32. aes_cli-0.2.0/aes/scaffold/workflow_command.md.jinja +48 -0
  33. aes_cli-0.2.0/aes/schemas/agent.schema.json +188 -0
  34. aes_cli-0.2.0/aes/schemas/permissions.schema.json +100 -0
  35. aes_cli-0.2.0/aes/schemas/registry.schema.json +72 -0
  36. aes_cli-0.2.0/aes/schemas/skill.schema.json +209 -0
  37. aes_cli-0.2.0/aes/schemas/workflow.schema.json +92 -0
  38. aes_cli-0.2.0/aes/targets/__init__.py +29 -0
  39. aes_cli-0.2.0/aes/targets/_base.py +77 -0
  40. aes_cli-0.2.0/aes/targets/_composer.py +338 -0
  41. aes_cli-0.2.0/aes/targets/claude.py +153 -0
  42. aes_cli-0.2.0/aes/targets/copilot.py +48 -0
  43. aes_cli-0.2.0/aes/targets/cursor.py +46 -0
  44. aes_cli-0.2.0/aes/targets/windsurf.py +46 -0
  45. aes_cli-0.2.0/aes/validator.py +394 -0
  46. aes_cli-0.2.0/aes_cli.egg-info/PKG-INFO +110 -0
  47. aes_cli-0.2.0/aes_cli.egg-info/SOURCES.txt +63 -0
  48. aes_cli-0.2.0/aes_cli.egg-info/dependency_links.txt +1 -0
  49. aes_cli-0.2.0/aes_cli.egg-info/entry_points.txt +3 -0
  50. aes_cli-0.2.0/aes_cli.egg-info/requires.txt +10 -0
  51. aes_cli-0.2.0/aes_cli.egg-info/top_level.txt +1 -0
  52. aes_cli-0.2.0/pyproject.toml +59 -0
  53. aes_cli-0.2.0/setup.cfg +4 -0
  54. aes_cli-0.2.0/tests/test_analyzer.py +182 -0
  55. aes_cli-0.2.0/tests/test_frameworks.py +110 -0
  56. aes_cli-0.2.0/tests/test_init.py +853 -0
  57. aes_cli-0.2.0/tests/test_inspect.py +54 -0
  58. aes_cli-0.2.0/tests/test_install.py +279 -0
  59. aes_cli-0.2.0/tests/test_mcp_server.py +228 -0
  60. aes_cli-0.2.0/tests/test_publish.py +309 -0
  61. aes_cli-0.2.0/tests/test_registry.py +354 -0
  62. aes_cli-0.2.0/tests/test_search.py +117 -0
  63. aes_cli-0.2.0/tests/test_status.py +118 -0
  64. aes_cli-0.2.0/tests/test_sync.py +420 -0
  65. aes_cli-0.2.0/tests/test_validate.py +535 -0
aes_cli-0.2.0/PKG-INFO ADDED
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: aes-cli
3
+ Version: 0.2.0
4
+ Summary: CLI tool for the Agentic Engineering Standard
5
+ Author: Hiro
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://aes-official.com
8
+ Project-URL: Repository, https://github.com/user-1221/agentic-engineering-standard
9
+ Project-URL: Documentation, https://github.com/user-1221/agentic-engineering-standard/tree/main/spec
10
+ Keywords: agentic,ai,engineering,standard,cli
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Code Generators
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: click>=8.0
23
+ Requires-Dist: pyyaml>=6.0
24
+ Requires-Dist: jsonschema>=4.17
25
+ Requires-Dist: jinja2>=3.1
26
+ Requires-Dist: rich>=13.0
27
+ Requires-Dist: mcp>=1.2.0
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=7.0; extra == "dev"
30
+ Requires-Dist: pytest-tmp-files>=0.0.2; extra == "dev"
31
+
32
+ # aes-cli
33
+
34
+ CLI tool for the [Agentic Engineering Standard](https://github.com/user-1221/agentic-engineering-standard) (AES) — an open standard for structuring, sharing, and discovering agentic engineering projects.
35
+
36
+ AES treats agent instructions, skills, permissions, and memory as **first-class engineering artifacts**, making them portable, composable, and shareable across AI coding tools.
37
+
38
+ ## Installation
39
+
40
+ ```bash
41
+ pip install aes-cli
42
+ ```
43
+
44
+ Requires Python 3.10+.
45
+
46
+ ## Quick Start
47
+
48
+ ### Initialize a new project
49
+
50
+ ```bash
51
+ aes init
52
+ ```
53
+
54
+ Interactive wizard that scaffolds a `.agent/` directory with agent config, skills, permissions, and memory. Supports multiple domains (web, ML, DevOps, research) and modes (dev-assist, agent-integrated).
55
+
56
+ ### Validate a project
57
+
58
+ ```bash
59
+ aes validate .
60
+ ```
61
+
62
+ Checks `.agent/` files against the AES JSON Schema, validates dependency graphs, and reports errors/warnings.
63
+
64
+ ### Sync to your AI tool
65
+
66
+ ```bash
67
+ aes sync -t claude # or: cursor, copilot, windsurf
68
+ ```
69
+
70
+ Generates tool-specific config from your `.agent/` directory. Write once, use with any supported AI coding tool.
71
+
72
+ ### Publish & install skills
73
+
74
+ ```bash
75
+ aes publish ./my-skill # share a skill or template to the AES registry
76
+ aes install user/skill # install a skill into your project
77
+ aes search "deploy" # search the registry
78
+ ```
79
+
80
+ ### Inspect a project
81
+
82
+ ```bash
83
+ aes inspect .
84
+ ```
85
+
86
+ Displays a summary of the project's agent configuration: skills, workflows, permissions, and dependencies.
87
+
88
+ ## Commands
89
+
90
+ | Command | Description |
91
+ |-------------|------------------------------------------------|
92
+ | `init` | Scaffold a new `.agent/` directory |
93
+ | `validate` | Validate against the AES spec |
94
+ | `sync` | Generate tool-specific config |
95
+ | `publish` | Publish a skill or template to the registry |
96
+ | `install` | Install a skill or template from the registry |
97
+ | `search` | Search the AES registry |
98
+ | `inspect` | Inspect project agent configuration |
99
+ | `status` | Show sync status and drift |
100
+
101
+ ## Links
102
+
103
+ - [Specification](https://github.com/user-1221/agentic-engineering-standard/tree/main/spec)
104
+ - [Examples](https://github.com/user-1221/agentic-engineering-standard/tree/main/examples)
105
+ - [Templates](https://github.com/user-1221/agentic-engineering-standard/tree/main/templates)
106
+ - [Registry](https://registry.aes-official.com)
107
+
108
+ ## License
109
+
110
+ Apache 2.0
@@ -0,0 +1,79 @@
1
+ # aes-cli
2
+
3
+ CLI tool for the [Agentic Engineering Standard](https://github.com/user-1221/agentic-engineering-standard) (AES) — an open standard for structuring, sharing, and discovering agentic engineering projects.
4
+
5
+ AES treats agent instructions, skills, permissions, and memory as **first-class engineering artifacts**, making them portable, composable, and shareable across AI coding tools.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install aes-cli
11
+ ```
12
+
13
+ Requires Python 3.10+.
14
+
15
+ ## Quick Start
16
+
17
+ ### Initialize a new project
18
+
19
+ ```bash
20
+ aes init
21
+ ```
22
+
23
+ Interactive wizard that scaffolds a `.agent/` directory with agent config, skills, permissions, and memory. Supports multiple domains (web, ML, DevOps, research) and modes (dev-assist, agent-integrated).
24
+
25
+ ### Validate a project
26
+
27
+ ```bash
28
+ aes validate .
29
+ ```
30
+
31
+ Checks `.agent/` files against the AES JSON Schema, validates dependency graphs, and reports errors/warnings.
32
+
33
+ ### Sync to your AI tool
34
+
35
+ ```bash
36
+ aes sync -t claude # or: cursor, copilot, windsurf
37
+ ```
38
+
39
+ Generates tool-specific config from your `.agent/` directory. Write once, use with any supported AI coding tool.
40
+
41
+ ### Publish & install skills
42
+
43
+ ```bash
44
+ aes publish ./my-skill # share a skill or template to the AES registry
45
+ aes install user/skill # install a skill into your project
46
+ aes search "deploy" # search the registry
47
+ ```
48
+
49
+ ### Inspect a project
50
+
51
+ ```bash
52
+ aes inspect .
53
+ ```
54
+
55
+ Displays a summary of the project's agent configuration: skills, workflows, permissions, and dependencies.
56
+
57
+ ## Commands
58
+
59
+ | Command | Description |
60
+ |-------------|------------------------------------------------|
61
+ | `init` | Scaffold a new `.agent/` directory |
62
+ | `validate` | Validate against the AES spec |
63
+ | `sync` | Generate tool-specific config |
64
+ | `publish` | Publish a skill or template to the registry |
65
+ | `install` | Install a skill or template from the registry |
66
+ | `search` | Search the AES registry |
67
+ | `inspect` | Inspect project agent configuration |
68
+ | `status` | Show sync status and drift |
69
+
70
+ ## Links
71
+
72
+ - [Specification](https://github.com/user-1221/agentic-engineering-standard/tree/main/spec)
73
+ - [Examples](https://github.com/user-1221/agentic-engineering-standard/tree/main/examples)
74
+ - [Templates](https://github.com/user-1221/agentic-engineering-standard/tree/main/templates)
75
+ - [Registry](https://registry.aes-official.com)
76
+
77
+ ## License
78
+
79
+ Apache 2.0
@@ -0,0 +1,5 @@
1
+ """AES CLI — Command-line tool for the Agentic Engineering Standard."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __version__ = "0.2.0"
@@ -0,0 +1,37 @@
1
+ """AES CLI entry point."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import click
6
+
7
+ from aes.commands.init import init_cmd
8
+ from aes.commands.validate import validate_cmd
9
+ from aes.commands.inspect import inspect_cmd
10
+ from aes.commands.publish import publish_cmd
11
+ from aes.commands.install import install_cmd
12
+ from aes.commands.search import search_cmd
13
+ from aes.commands.status import status_cmd
14
+ from aes.commands.sync import sync_cmd
15
+
16
+
17
+ @click.group()
18
+ @click.version_option(package_name="aes-cli")
19
+ def cli() -> None:
20
+ """AES — Agentic Engineering Standard CLI.
21
+
22
+ Scaffold, validate, inspect, and share agentic engineering projects.
23
+ """
24
+
25
+
26
+ cli.add_command(init_cmd, "init")
27
+ cli.add_command(validate_cmd, "validate")
28
+ cli.add_command(inspect_cmd, "inspect")
29
+ cli.add_command(publish_cmd, "publish")
30
+ cli.add_command(install_cmd, "install")
31
+ cli.add_command(sync_cmd, "sync")
32
+ cli.add_command(status_cmd, "status")
33
+ cli.add_command(search_cmd, "search")
34
+
35
+
36
+ if __name__ == "__main__":
37
+ cli()