augent 0.5.0__py3-none-macosx_11_0_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.
|
Binary file
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: augent
|
|
3
|
+
Version: 0.5.0
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
7
|
+
Classifier: Programming Language :: Rust
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
10
|
+
Classifier: Topic :: System :: Archiving :: Packaging
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Summary: Lean package manager for various AI coding platforms
|
|
13
|
+
Keywords: ai,agent,package,manager
|
|
14
|
+
Author: Anssi Syrjäsalo
|
|
15
|
+
License: AGPL-3.0
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
18
|
+
Project-URL: Documentation, https://docs.rs/augent
|
|
19
|
+
Project-URL: Homepage, https://crates.io/crates/augent
|
|
20
|
+
Project-URL: Repository, https://github.com/asyrjasalo/augent
|
|
21
|
+
|
|
22
|
+
# Augent
|
|
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.
|
|
26
|
+
|
|
27
|
+
## Quick Start
|
|
28
|
+
|
|
29
|
+
Install it from [PyPI](https://pypi.org/project/augent/):
|
|
30
|
+
|
|
31
|
+
pip install augent
|
|
32
|
+
|
|
33
|
+
Alternatively, download binaries from [GitHub Releases](https://github.com/asyrjasalo/augent/releases) for your OS and put the binary in your PATH.
|
|
34
|
+
|
|
35
|
+
Your AI coding platforms are auto-detected in the workspace (Git repository).
|
|
36
|
+
|
|
37
|
+
To install a set of resources (bundles) for your AI coding platforms:
|
|
38
|
+
|
|
39
|
+
# Install bundle(s) from a public GitHub repository (select if many):
|
|
40
|
+
augent install @wshobson/agents
|
|
41
|
+
|
|
42
|
+
# List all installed bundles
|
|
43
|
+
augent list
|
|
44
|
+
|
|
45
|
+
# Show installation details
|
|
46
|
+
augent show @wshobson/agents
|
|
47
|
+
|
|
48
|
+
# Uninstall bundle (all under this prefix, select if many):
|
|
49
|
+
augent uninstall @wshobson/agents
|
|
50
|
+
|
|
51
|
+
## Usage
|
|
52
|
+
|
|
53
|
+
Augent stores AI coding platform resources in universal format as **bundles**.
|
|
54
|
+
|
|
55
|
+
- **Bundle**: A directory containing the platform-independent resources
|
|
56
|
+
- **Workspace**: Your project's Git repository where you and your team work in
|
|
57
|
+
- **Resources**: Universal resources transformed and installed for specific AI coding platforms
|
|
58
|
+
|
|
59
|
+
Bundles are local directories within the same workspace,
|
|
60
|
+
or remote Git repositories via https (or ssh).
|
|
61
|
+
|
|
62
|
+
When you install a bundle from a remote Git repository, Augent:
|
|
63
|
+
|
|
64
|
+
1. Fetches the bundle(s) and adds it to `.augent/aument.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 what came where)
|
|
68
|
+
|
|
69
|
+
To ensure a coherent Augent setup across your team, store all the three
|
|
70
|
+
created files in `.augent/` (yaml, index, and lock) in your Git repository.
|
|
71
|
+
|
|
72
|
+
### Install bundles
|
|
73
|
+
|
|
74
|
+
Install from local directory within workspace:
|
|
75
|
+
|
|
76
|
+
augent install ./local-bundle
|
|
77
|
+
|
|
78
|
+
Install only for specific platforms (otherwise installs to all detected):
|
|
79
|
+
|
|
80
|
+
augent install ./local-bundle --for cursor opencode
|
|
81
|
+
|
|
82
|
+
Install from GitHub repository, `develop` branch, subdirectory `plugins/which`:
|
|
83
|
+
|
|
84
|
+
augent install github:author/repo#develop:plugins/which
|
|
85
|
+
|
|
86
|
+
Install by using GitHub Web UI URL directly:
|
|
87
|
+
|
|
88
|
+
augent install https://github.com/author/bundle/tree/develop/plugins/which
|
|
89
|
+
|
|
90
|
+
Install from a Git repository over SSH:
|
|
91
|
+
|
|
92
|
+
augent install git@yourcompany.com:author/bundled
|
|
93
|
+
|
|
94
|
+
Install understands different repo formats, such as Claude Marketplace plugins.
|
|
95
|
+
|
|
96
|
+
If repository has many bundles (or Claude Marketplace plugins),
|
|
97
|
+
you can select those from the menu (or pass `--select-all`).
|
|
98
|
+
|
|
99
|
+
Most commands will display an interactive menu if used without arguments.
|
|
100
|
+
|
|
101
|
+
### Lean package management
|
|
102
|
+
|
|
103
|
+
All commands operate in your current workspace
|
|
104
|
+
(you can pass `-w, --workspace <PATH>` to use different workspace).
|
|
105
|
+
|
|
106
|
+
Resolves remote bundles to the latest versions (and updates the lockfile):
|
|
107
|
+
|
|
108
|
+
augent install --update
|
|
109
|
+
|
|
110
|
+
List all installed bundles:
|
|
111
|
+
|
|
112
|
+
augent list
|
|
113
|
+
|
|
114
|
+
Show where bundle's resources are enabled:
|
|
115
|
+
|
|
116
|
+
augent show @author/repository/bundle
|
|
117
|
+
|
|
118
|
+
Uninstall the bundle and remove its resources:
|
|
119
|
+
|
|
120
|
+
augent uninstall @author/repository/bundle
|
|
121
|
+
|
|
122
|
+
Resources that came from the bundle are removed, unless you modified them first.
|
|
123
|
+
|
|
124
|
+
It also uninstalls the bundles dependencies, unless used by other bundles.
|
|
125
|
+
|
|
126
|
+
## Bundle Format
|
|
127
|
+
|
|
128
|
+
A bundle contains resources in platform-independent format, e.g.:
|
|
129
|
+
|
|
130
|
+
my-bundle/
|
|
131
|
+
├── augent.yaml # Bundle metadata and dependencies (optional)
|
|
132
|
+
├── commands/ # Universal files for AI coding platforms
|
|
133
|
+
│ └── debug.md
|
|
134
|
+
├── skills/
|
|
135
|
+
│ └── web-browser.md
|
|
136
|
+
├── AGENTS.md
|
|
137
|
+
└── mcp.jsonc
|
|
138
|
+
|
|
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 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
|
+
## Documentation
|
|
154
|
+
|
|
155
|
+
- [Commands Reference](docs/commands.md) - Detailed command documentation
|
|
156
|
+
- [Bundle Format](docs/bundles.md) - Bundle structure and configuration
|
|
157
|
+
- [Workspace Configuration](docs/workspace.md) - Workspace setup and management
|
|
158
|
+
|
|
159
|
+
## License
|
|
160
|
+
|
|
161
|
+
AGPL v3 - see [LICENSE](LICENSE) for details.
|
|
162
|
+
|
|
163
|
+
## Acknowledgments
|
|
164
|
+
|
|
165
|
+
- Platform conversion approach inspired by [OpenPackage](https://github.com/enulus/OpenPackage).
|
|
166
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
augent-0.5.0.data/scripts/augent,sha256=ouMh3lBDEf0gIajRW7MWbEoqLUeGS69OenoYXZsb9bo,14093344
|
|
2
|
+
augent-0.5.0.dist-info/METADATA,sha256=eWYp4jJSdIDjV_FDpuRlS8iETNbO7mPkytcUpRcGKxE,5450
|
|
3
|
+
augent-0.5.0.dist-info/WHEEL,sha256=yylKWcexKBlaNV_z8iGyahATbhal1pF7thA651eIJss,102
|
|
4
|
+
augent-0.5.0.dist-info/licenses/LICENSE,sha256=2fD2kPulz3kqMgU4uF7EoYawAs5PUqEWSfqAUGOLn40,734
|
|
5
|
+
augent-0.5.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2026 Anssi Syrjäsalo
|
|
5
|
+
|
|
6
|
+
This program is free software: you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
This program is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
GNU Affero General Public License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|