docs: add product architecture guides and KB entry points - #4294
docs: add product architecture guides and KB entry points#4294Soham Basu (sohambasu963) wants to merge 2 commits into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Claude finished Soham Basu (@sohambasu963)'s task in 4m 28s —— View job Docs Review
Looks good overall — the guides are accurate, the navigation wiring is complete, and I could not find anything that would leave a developer stuck. Two things worth fixing, one of which I'd call a real correctness gap. Verified
Issue 1: The callback-URL correction misses four other live referencesIssue: This PR updates the OAuth callback URL to Remaining references:
Fix: - https://backend.composio.dev/api/v1/auth-apps/add
+ https://backend.composio.dev/api/v3/toolkits/auth/callbackIssue 2: TypeScript tabs use the aliased entrypoint while Python uses the canonical oneIssue: In Fix: // Before
const session = await composio.create(appUserId, {
toolkits: ["gmail", "googlecalendar"],
});
// After
const session = await composio.sessions.create(appUserId, {
toolkits: ["gmail", "googlecalendar"],
});Non-blocking note
I also could not verify the · branch |
|
Claude finished Soham Basu (@sohambasu963)'s task in 2m 18s —— View job Docs Review (re-run after
|
Summary
Adds canonical guidance for common Composio product-integration decisions and makes the main paths easy to find from the Knowledge Base homepage. This PR is independent of #4258 and #4277 and targets
nextdirectly.Changes
/kb, before support topics and toolkit browsingType of change
How Has This Been Tested?
bun test tests/static/(528 passed)bun run lint:linksbun run types:checkbun run lintbun run buildChecklist