Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Update docs [AGE-41]#731

Draft
stevepeak wants to merge 2 commits intomainfrom
feature/age-41-remove-docs-on-publishing
Draft

Update docs [AGE-41]#731
stevepeak wants to merge 2 commits intomainfrom
feature/age-41-remove-docs-on-publishing

Conversation

@stevepeak
Copy link
Copy Markdown
Collaborator

Hid publishing for the time being, removed banner, and updated the introduction page

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.
@vercel
Copy link
Copy Markdown

vercel bot commented Oct 6, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
agentic-platform-web Ready Ready Preview Oct 6, 2025 6:31pm

@stevepeak stevepeak marked this pull request as draft October 6, 2025 18:31
@stevepeak
Copy link
Copy Markdown
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

"tabs": [
{
"tab": "MCP Marketplace",
"tab": "Tools and Agents",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(opinion) From a consumer perspective, the protocol does not matter. They are shopping for tools/agents not "MCP" stuff.

},
{
"anchor": "MCP Marketplace",
"anchor": "Tools and Agents",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(opinion) More direct category

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),
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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,

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants