augent 0.5.1__py3-none-win_arm64.whl → 0.6.0__py3-none-win_arm64.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: augent
3
- Version: 0.5.1
3
+ Version: 0.6.0
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
@@ -10,7 +10,7 @@ Classifier: Topic :: Software Development :: Build Tools
10
10
  Classifier: Topic :: System :: Archiving :: Packaging
11
11
  License-File: LICENSE
12
12
  Summary: Lean package manager for various AI coding platforms
13
- Keywords: ai,agent,package,manager
13
+ Keywords: ai,agents,package-manager
14
14
  Author: Anssi Syrjäsalo
15
15
  License: AGPL-3.0
16
16
  Requires-Python: >=3.9
@@ -21,18 +21,27 @@ Project-URL: Repository, https://github.com/asyrjasalo/augent
21
21
 
22
22
  # Augent
23
23
 
24
- Augments AI coding platforms (such as Claude Code, OpenCode, Cursor) via packages (of skills, commands, rules, MCP servers...) in a reproducible,
25
- platform-independent, and intuitive manner.
24
+ Augments AI coding platforms (such as Claude Code, OpenCode, Cursor) via bundles (of skills, commands, rules, MCP servers...) in a platform-independent, reproducible, and intuitive manner:
26
25
 
27
- ## Quick Start
26
+ - It frees you from the burden of managing AI coding platform specific formats.
27
+ - It ensures reproducibility across the teams by locking bundle versions.
28
+ - You get and share bundles via public or private Git repositories. That's it.
29
+
30
+ ## Setup
31
+
32
+ You can install it from [PyPI](https://pypi.org/project/augent/) (recommended):
28
33
 
29
- Install it from [PyPI](https://pypi.org/project/augent/):
34
+ pip install --user augent
30
35
 
31
- pip install augent
36
+ Or you can install it from [npm](https://www.npmjs.com/package/augent):
32
37
 
33
- Alternatively, download from [GitHub Releases](https://github.com/asyrjasalo/augent/releases) for your OS and put the binary in your PATH.
38
+ npm install -g augent
34
39
 
35
- Your AI coding platforms are auto-detected in the workspace (Git repository).
40
+ If you have neither Python nor Node.js available, you can download a
41
+ [GitHub Release](https://github.com/asyrjasalo/augent/releases) for your system
42
+ and put the binary in your PATH.
43
+
44
+ ## Quick Start
36
45
 
37
46
  To install a set of resources (bundles) for your AI coding platforms:
38
47
 
@@ -50,26 +59,24 @@ To install a set of resources (bundles) for your AI coding platforms:
50
59
 
51
60
  ## Usage
52
61
 
53
- Augent stores AI coding platform resources in universal format as **bundles**.
62
+ Augent stores AI coding platform resources in universal format in **bundles**.
54
63
 
55
- - **Bundle**: A directory containing the platform-independent resources
64
+ - **Bundle**: A path in a Git repository, optionally referencing other bundles
56
65
  - **Workspace**: Your project's Git repository where you and your team work
57
66
  - **Resources**: Universal resources transformed and installed for specific AI coding platforms
58
67
 
59
- Bundles are local directories within the same workspace,
60
- or remote Git repositories via https (or ssh).
61
-
62
68
  When you install a bundle from a remote Git repository, Augent:
63
69
 
64
70
  1. Fetches the bundle(s) and adds it to `.augent/augent.yaml` in your workspace
65
- 2. Resolves and locks the Git ref on first install (and creates a lockfile)
66
- 3. Transforms the bundle's resources to match your AI coding platform's format
67
- 4. Installs resources to the platforms (and creates an index of what came where)
71
+ 2. Resolves and locks the Git ref on first install (by creating a lockfile)
72
+ 3. By default, your AI coding platforms are auto-detected in the workspace.
73
+ 4. Transforms the bundle's resources to match your AI coding platform's format
74
+ 5. Installs resources to the platforms (and creates an index of what came where)
68
75
 
69
76
  To ensure a coherent Augent setup across your team, store all three
70
77
  created files in `.augent/` (yaml, index, and lock) in your Git repository.
71
78
 
72
- ### Install bundles
79
+ ### Install Bundles
73
80
 
74
81
  Install from local directory within workspace:
75
82
 
@@ -94,11 +101,11 @@ Install from a Git repository over SSH:
94
101
  The install command understands different repo formats, such as Claude Marketplace plugins.
95
102
 
96
103
  If repository has many bundles (or Claude Marketplace plugins),
97
- you can select those from the menu (or pass `--select-all`).
104
+ you can select those from the menu (or pass `--all-bundles`).
98
105
 
99
106
  Most commands will display an interactive menu if used without arguments.
100
107
 
101
- ### Lean package management
108
+ ### Workspace Scope
102
109
 
103
110
  All commands operate in your current workspace
104
111
  (you can pass `-w, --workspace <PATH>` to use different workspace).
@@ -136,25 +143,11 @@ A bundle contains resources in platform-independent format, e.g.:
136
143
  ├── AGENTS.md
137
144
  └── mcp.jsonc
138
145
 
139
- ## Why Augent?
140
-
141
- What it does:
142
-
143
- - Distributes bundles via public or private Git repositories.
144
- - Implements locking to ensure 100% reproducibility across teams.
145
- - Frees you from the burden of converting between AI coding platform specific formats.
146
-
147
- What it does NOT:
148
-
149
- - Rely on a central package registry.
150
- - Cargo cult existing package managers.
151
- - Require a PhD in dependency management.
152
-
153
146
  ## Documentation
154
147
 
155
148
  - [Commands Reference](docs/commands.md) - Detailed command documentation
156
149
  - [Bundle Format](docs/bundles.md) - Bundle structure and configuration
157
- - [Platform Support](docs/platforms.md) - Supported platforms and adding new ones
150
+ - [Platform Support](docs/platforms.md) - Known platforms and adding new ones
158
151
  - [Workspace Configuration](docs/workspace.md) - Workspace setup and management
159
152
 
160
153
  ## License
@@ -163,5 +156,5 @@ AGPL v3 - see [LICENSE](LICENSE) for details.
163
156
 
164
157
  ## Acknowledgments
165
158
 
166
- - Platform conversion approach inspired by [OpenPackage](https://github.com/enulus/OpenPackage).
159
+ Platform conversion approach inspired by [OpenPackage](https://github.com/enulus/OpenPackage) and [rulesync](https://github.com/dyoshikawa/rulesync).
167
160
 
@@ -0,0 +1,5 @@
1
+ augent-0.6.0.data\scripts\augent.exe,sha256=qpJcOB1btY6ePBmxU1vsp885KtxyKEwMJcywTUPlt8Y,5057536
2
+ augent-0.6.0.dist-info\METADATA,sha256=MMGp2lbAPbdXYLgTDMc6Xy7B1486WP271Fk4e8srUFA,5645
3
+ augent-0.6.0.dist-info\WHEEL,sha256=glXWQhlFjSxaKBRqaQWoPjecNERzQxT1VPLiW94yyjI,94
4
+ augent-0.6.0.dist-info\licenses\LICENSE,sha256=r-cipXX3QU71wO2L7xWn5GJZSOEd4fIxDmYGv8NWXXA,35223
5
+ augent-0.6.0.dist-info\RECORD,,
@@ -1,5 +0,0 @@
1
- augent-0.5.1.data\scripts\augent.exe,sha256=PAfY4m6nvOx-4opXfIvTE0i1258AIHxM1i9LcHY1mrw,4843008
2
- augent-0.5.1.dist-info\METADATA,sha256=9ODtS0iJ47KTpKgvcnbt6iGHgXdKDKjCP8v2qHWc8ZM,5682
3
- augent-0.5.1.dist-info\WHEEL,sha256=glXWQhlFjSxaKBRqaQWoPjecNERzQxT1VPLiW94yyjI,94
4
- augent-0.5.1.dist-info\licenses\LICENSE,sha256=r-cipXX3QU71wO2L7xWn5GJZSOEd4fIxDmYGv8NWXXA,35223
5
- augent-0.5.1.dist-info\RECORD,,
File without changes