Skip to content
Merged
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
23 changes: 17 additions & 6 deletions src/openhuman/composio/providers/github/mod.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
//! GitHub Composio toolkit — curated tool catalog only.
//! GitHub Composio provider — incremental Memory Tree ingest for issues and
//! pull requests involving the connected user.
//!
//! There is no native [`super::ComposioProvider`] implementation for
//! GitHub yet (no profile fetch / sync). The curated catalog here is
//! still consulted by [`super::catalog_for_toolkit`] so the meta-tool
//! layer applies the same whitelist + scope filtering it does for
//! Gmail and Notion.
//! Mirrors the [`crate::openhuman::composio::providers::clickup`] layout so
//! anyone familiar with ClickUp/Notion ingestion can read this without
//! re-learning a new shape:
//!
//! - `provider.rs` — `impl ComposioProvider for GitHubProvider`
//! - `sync.rs` — payload-shape helpers (result extraction, title, cursor)
//! - `tools.rs` — `GITHUB_CURATED` whitelist of Composio actions
//! - `tests.rs` — unit tests for the helpers + trait metadata
//!
//! Issue: #2408.

mod provider;
mod sync;
#[cfg(test)]
mod tests;
pub mod tools;

pub use provider::GitHubProvider;
pub use tools::GITHUB_CURATED;
Loading
Loading