Community provider plugins for agent-awareness.
Each subdirectory is a standalone plugin that can be symlinked into ~/.config/agent-awareness/plugins/.
| Plugin | Description |
|---|---|
| github-watcher | Monitors GitHub repos for new issues, PRs, and comments |
| server-health | Threshold-based server alerts with hysteresis and cooldown |
| pr-pilot | Tracks outbound PRs, detects lifecycle events, frames agent actions |
# Symlink individual plugins
ln -s /path/to/agent-awareness-plugins/github-watcher ~/.config/agent-awareness/plugins/github-watcherSee the agent-awareness provider guide for the plugin interface. Each plugin in this repo should:
- Have its own directory with
package.jsonandsrc/index.ts - Have a root
index.tsthat re-exports:export { default } from './src/index.ts'; - Export a default object conforming to
AwarenessPlugin - Include a
README.mdwith config documentation - Be self-contained (no shared dependencies between plugins)
MIT