CoAttribution 0.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global CoAttribution --version 0.1.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local CoAttribution --version 0.1.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=CoAttribution&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package CoAttribution --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CoAttribution
CoAttribution is a command-line tool that tags your Git commits with Co-authored-by and Assisted-by trailers, pulling author identities from a local TOML registry.
Key Features
- Author registry: Map short aliases to names and emails in a TOML file.
- TUI: Pick authors interactively from a terminal UI.
- Commit wrapping: Adds the trailers, then runs
git commitfor you. - Dry-run: Print the resulting message without committing.
- NativeAOT: Compiled ahead-of-time for near-instant startup.
Why use it
- Less typing: No more hand-writing co-author blocks on every commit.
- Agent-friendly: Let AI coding agents attribute themselves without ceremony.
- Consistent: One format, applied the same way every time.
Usage
Initialise configuration
co-attr init
Creates a global config file and an authors.toml registry pre-populated with common AI agents.
Add a co-author
co-attr author add my-agent --type agent --name "Agent Name" --email "agent@example.com"
List registered authors
co-attr author list
Commit with co-author attribution
git add .
co-attr commit -m "Implement new feature" --coauthor copilot
This appends a Co-authored-by: copilot <copilot@github.com> trailer to the commit message and runs git commit.
Commit with assisted-by attribution
git add .
co-attr commit -m "Fix bug" --assist kilo
Commit with multiple authors
co-attr commit -m "Refactor module" --coauthor copilot --assist kilo
Dry-run (preview without committing)
co-attr commit -m "Draft change" --coauthor copilot --verbose
Project Scope
CoAttribution is an Attribution Metadata Orchestrator. Its purpose is to manage the 'Who' and 'How' of Git commit trailers.
In Scope
- Maintaining a local TOML-based registry of authors (name and email)
- Providing an interactive TUI/CLI for selecting authors and composing commit messages
- Appending
Co-authored-byandAssisted-bytrailers to commit messages - Wrapping the
git commitcommand
Out of Scope
- Staging changes: The tool does not run
git addor manage the staging area. Changes must already be staged before invoking the tool. - Message generation: The tool does not integrate with LLMs or generate commit messages. It only appends trailers to messages provided by the caller.
- Remote services: The tool does not communicate with GitHub, GitLab, Bitbucket, or any other remote API. It operates entirely on local configuration and local Git.
- Prompt or agent management: The tool is not designed for prompt engineering or AI agent orchestration.
License
This project is licensed under the MPL 2.0.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.