Add CLAUDE.md project guide and Composio GitHub integration wrapper - #378
Open
kspade21-pixel wants to merge 2 commits into
Open
Conversation
Adds guidance for Claude Code covering build/test commands, the subsystem map (agent loop, policy engine, heartbeat, memory, financial system), and the security-sensitive areas that should come with test coverage. Points to ARCHITECTURE.md/DOCUMENTATION.md for full detail rather than duplicating them.
Thin wrapper around @composio/core (src/integrations/composio.ts) so the automaton can authorize and call third-party toolkits, GitHub first, on behalf of a user via OAuth. Not yet wired into the agent tool system; provides getComposio/isConnected/beginAuthorization/connectToolkit/listToolSlugs/executeTool/getGithubUser as building blocks for that follow-up. Requires COMPOSIO_API_KEY at runtime. Adds the composio/core dependency and updates the lockfile.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
CLAUDE.md: guidance for Claude Code covering build/test commands, the subsystem map (agent loop, policy engine, heartbeat, memory, financial system), and the security-sensitive areas that should come with test coverage. Points to the existingARCHITECTURE.md/DOCUMENTATION.mdfor full detail rather than duplicating them.src/integrations/composio.ts: a thin wrapper around@composio/coreso the automaton can authorize and call third-party toolkits (GitHub first) on behalf of a user via OAuth. ExposesgetComposio/isConnected/beginAuthorization/connectToolkit/listToolSlugs/executeTool/getGithubUseras building blocks. RequiresCOMPOSIO_API_KEYat runtime. Not yet wired into the agent's tool system.@composio/coredependency and updatespnpm-lock.yamlaccordingly.Anything a reviewer should know
pnpm installandpnpm typecheckpass cleanly with these changes.src/agent/tools.tsand adding tests, per the security-sensitive-areas note in the new CLAUDE.md.