Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ Want to add more functionality from Hedera Services? [Open an issue](https://git
### Third Party Plugins
The Hedera Agent Kit is extensible with third-party plugins developed by other projects. See how you can build and submit your own plugin to be listed as a Hedera Agent Kit plugin in [Hedera Docs](https://docs.hedera.com/hedera/open-source-solutions/ai-studio-on-hedera/hedera-ai-agent-kit/plugins#plugins) and in [docs/PLUGINS.md](https://github.com/hashgraph/hedera-agent-kit-js/blob/main/docs/PLUGINS.md).

- **[hak-github-pay-plugin](https://www.npmjs.com/package/hak-github-pay-plugin)** — Pays open-source contributors in HBAR when their GitHub PR is merged; payment policy, identity, receipts, and release provenance live immutably on Hedera Consensus Service. Tools: `github_pay_register_contributor`, `github_pay_set_payment_policy`, `github_pay_set_payment_cap`, `github_pay_pay_on_merge`, `github_pay_query_contributor_payments`, `github_pay_seal_release_provenance`, `github_pay_query_team_summary`. [GitHub](https://github.com/jmgomezl/hak-plugin-github-pay)

_[Contribute your own plugin](https://github.com/hashgraph/hedera-agent-kit-js/blob/main/docs/PLUGINS.md)_

### Hooks and Policies
Expand Down
12 changes: 12 additions & 0 deletions docs/PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,18 @@ See this list of available third party plugins for the Hedera Agent Kit in the [

Status: Validated by HAK team, v4-compatible release


- [HAK GitHub Pay Plugin](https://www.npmjs.com/package/hak-github-pay-plugin) pays open-source contributors in HBAR when their GitHub pull request is merged, with payment policy, the GitHub-to-Hedera identity registry, receipts, and software-release provenance all sealed immutably on Hedera Consensus Service. It exposes the core actions (`github_pay_register_contributor`, `github_pay_set_payment_policy`, `github_pay_set_payment_cap`, `github_pay_pay_on_merge`, `github_pay_query_contributor_payments`, `github_pay_seal_release_provenance`, `github_pay_query_team_summary`) for registering contributors, setting label-to-HBAR policies and spending caps, paying on merge (HMAC-validated webhook, idempotent, cap-enforced), querying payment history as CSV, and sealing SHA-256 release provenance:

NPM: https://www.npmjs.com/package/hak-github-pay-plugin

Github repository: https://github.com/jmgomezl/hak-plugin-github-pay

Version: hak-github-pay-plugin@2.3.0

Status: Not validated by HAK team, v4-compatible release


## Plugin Architecture

The tools are now organized into plugins, each containing a set functionality related to the Hedera service or project they are created for.
Expand Down
Loading