This repository was archived by the owner on Feb 11, 2026. It is now read-only.
Draft
Conversation
Introduced a new local resource for serving documentation, including a command to run the docs server and a link to access it. This enhances the local development setup by providing easy access to project documentation.
Revised the main documentation to reflect a new introduction and key use cases for Agentic. Updated the navigation tabs and removed outdated references to the MCP Marketplace. Adjusted text in publishing guides to standardize terminology, replacing "MCP Marketplace" with "marketplace" for consistency.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Collaborator
Author
|
@transitive-bullshit we should chat more about the introduction page, let it sit and simmer before we merge this up 🙏 Very happy for your feedback and thoughts |
stevepeak
commented
Oct 6, 2025
| "tabs": [ | ||
| { | ||
| "tab": "MCP Marketplace", | ||
| "tab": "Tools and Agents", |
Collaborator
Author
There was a problem hiding this comment.
(opinion) From a consumer perspective, the protocol does not matter. They are shopping for tools/agents not "MCP" stuff.
stevepeak
commented
Oct 6, 2025
stevepeak
commented
Oct 6, 2025
| }, | ||
| { | ||
| "anchor": "MCP Marketplace", | ||
| "anchor": "Tools and Agents", |
Collaborator
Author
There was a problem hiding this comment.
(opinion) More direct category
stevepeak
commented
Oct 6, 2025
Comment on lines
+29
to
+40
| + import { createAISDKTools } from '@agentic/ai-sdk' | ||
| + import { AgenticToolClient } from '@agentic/platform-tool-client' | ||
| import { createOpenAI } from '@ai-sdk/openai' | ||
| import { generateText } from 'ai' | ||
|
|
||
| async function main() { | ||
| + const searchTool = await AgenticToolClient.fromIdentifier('@agentic/search') | ||
| const openai = createOpenAI({ compatibility: 'strict' }) | ||
|
|
||
| const result = await generateText({ | ||
| model: openai('gpt-4o-mini'), | ||
| + tools: createAISDKTools(searchTool), |
Collaborator
Author
There was a problem hiding this comment.
This is a good time to point out that having a tighter integration story could be valuable.
Something like this would be really clutch
+ import { Agentic } from 'agentic'
import { createOpenAI } from '@ai-sdk/openai'
import { generateText } from 'ai'
async function main() {
+ const tools = await Agentic(tools:['@agentic/search', '...'])
const openai = createOpenAI({ compatibility: 'strict' })
const result = await generateText({
model: openai('gpt-4o-mini'),
+ tools: tools,
transitive-bullshit
approved these changes
Oct 7, 2025
ezzcodeezzlife
approved these changes
Oct 11, 2025
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Hid publishing for the time being, removed banner, and updated the introduction page