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
9 changes: 9 additions & 0 deletions .changeset/discoverability-keywords.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@agentskit/angular": patch
"@agentskit/react-native": patch
"@agentskit/solid": patch
"@agentskit/svelte": patch
"@agentskit/vue": patch
---

Expand npm `keywords` and sharpen `description` on the framework wrappers (Angular, React Native, Solid, Svelte, Vue) for discoverability. Adds high-traffic terms (`openai`, `anthropic`, `claude`, `gemini`, `chatgpt`, `ai-agents`, `chat-ui`, `streaming`) so npm search and AI tooling surface these packages alongside the core ecosystem. No code or API changes.
7 changes: 6 additions & 1 deletion apps/docs-next/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export const metadata = {
}

const GITHUB = 'https://github.com/AgentsKit-io/agentskit'
const DISCORD = 'https://discord.gg/zx6z2p4jVb'
// Discord hidden until the community is large enough to warrant it. Restore when ready.
// const DISCORD = 'https://discord.gg/zx6z2p4jVb'

const PACKAGE_CARDS = [
{ name: 'core', href: '/docs/reference/packages/core' },
Expand Down Expand Up @@ -169,6 +170,7 @@ function Hero() {
>
See live examples
</Link>
{/* Discord hidden until the community is large enough to warrant it. Restore when ready.
<a
href={DISCORD}
target="_blank"
Expand All @@ -177,6 +179,7 @@ function Hero() {
>
Join Discord →
</a>
*/}
</div>

<p className="mt-4 font-mono text-[11px] leading-relaxed text-ak-graphite sm:text-xs">
Expand Down Expand Up @@ -672,6 +675,7 @@ function FinalCta() {
>
Star on GitHub
</a>
{/* Discord hidden until the community is large enough to warrant it. Restore when ready.
<a
href={DISCORD}
target="_blank"
Expand All @@ -680,6 +684,7 @@ function FinalCta() {
>
Join Discord
</a>
*/}
<Link
href="/docs/reference/contribute"
className="inline-flex items-center gap-2 rounded-md border border-ak-border bg-ak-surface px-5 py-3 text-sm font-medium text-ak-foam transition hover:border-ak-blue sm:px-6"
Expand Down
38 changes: 20 additions & 18 deletions apps/docs-next/app/layout.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'
import { AnimatedLogo } from '@/components/brand/animated-logo'
import { LanguageToggle } from '@/components/brand/language-toggle'

const DiscordIcon = (
<svg
viewBox="0 0 24 24"
fill="currentColor"
aria-label="Discord"
role="img"
className="size-4"
>
<path d="M20.317 4.369a19.79 19.79 0 0 0-4.885-1.515.07.07 0 0 0-.074.035c-.21.375-.445.864-.608 1.249a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.07.07 0 0 0-.074-.034 19.736 19.736 0 0 0-4.885 1.515.064.064 0 0 0-.03.027C.533 9.045-.32 13.58.099 18.057a.08.08 0 0 0 .031.055 19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.027 14.21 14.21 0 0 0 1.226-1.994.076.076 0 0 0-.041-.105 13.1 13.1 0 0 1-1.872-.892.077.077 0 0 1-.008-.128c.126-.094.252-.192.372-.29a.074.074 0 0 1 .077-.01c3.927 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.009c.12.099.246.197.373.292a.077.077 0 0 1-.006.127 12.3 12.3 0 0 1-1.873.891.077.077 0 0 0-.04.106 16.05 16.05 0 0 0 1.225 1.993.076.076 0 0 0 .084.028 19.84 19.84 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.06.06 0 0 0-.031-.028zM8.02 15.331c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.418 2.157-2.418 1.211 0 2.177 1.094 2.157 2.418 0 1.334-.956 2.419-2.157 2.419zm7.974 0c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.418 2.157-2.418 1.21 0 2.176 1.094 2.157 2.418 0 1.334-.946 2.419-2.157 2.419z" />
</svg>
)
// Discord hidden until the community is large enough to warrant it. Restore when ready.
// const DiscordIcon = (
// <svg
// viewBox="0 0 24 24"
// fill="currentColor"
// aria-label="Discord"
// role="img"
// className="size-4"
// >
// <path d="M20.317 4.369a19.79 19.79 0 0 0-4.885-1.515.07.07 0 0 0-.074.035c-.21.375-.445.864-.608 1.249a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.07.07 0 0 0-.074-.034 19.736 19.736 0 0 0-4.885 1.515.064.064 0 0 0-.03.027C.533 9.045-.32 13.58.099 18.057a.08.08 0 0 0 .031.055 19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.027 14.21 14.21 0 0 0 1.226-1.994.076.076 0 0 0-.041-.105 13.1 13.1 0 0 1-1.872-.892.077.077 0 0 1-.008-.128c.126-.094.252-.192.372-.29a.074.074 0 0 1 .077-.01c3.927 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.009c.12.099.246.197.373.292a.077.077 0 0 1-.006.127 12.3 12.3 0 0 1-1.873.891.077.077 0 0 0-.04.106 16.05 16.05 0 0 0 1.225 1.993.076.076 0 0 0 .084.028 19.84 19.84 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.06.06 0 0 0-.031-.028zM8.02 15.331c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.418 2.157-2.418 1.211 0 2.177 1.094 2.157 2.418 0 1.334-.956 2.419-2.157 2.419zm7.974 0c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.418 2.157-2.418 1.21 0 2.176 1.094 2.157 2.418 0 1.334-.946 2.419-2.157 2.419z" />
// </svg>
// )

export const baseOptions: BaseLayoutProps = {
nav: {
Expand Down Expand Up @@ -42,13 +43,14 @@ export const baseOptions: BaseLayoutProps = {
children: <LanguageToggle />,
secondary: true,
},
{
type: 'icon',
icon: DiscordIcon,
text: 'Discord',
label: 'Discord',
url: 'https://discord.gg/zx6z2p4jVb',
},
// Discord hidden until the community is large enough to warrant it. Restore when ready.
// {
// type: 'icon',
// icon: DiscordIcon,
// text: 'Discord',
// label: 'Discord',
// url: 'https://discord.gg/zx6z2p4jVb',
// },
],
githubUrl: 'https://github.com/AgentsKit-io/agentskit',
}
13 changes: 11 additions & 2 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agentskit/angular",
"version": "0.2.4",
"description": "Angular service + components for AgentsKit.",
"description": "Angular signals service + headless chat components for AgentsKit — streaming, tools, and memory across any LLM provider.",
"keywords": [
"agentskit",
"ai",
Expand All @@ -11,7 +11,16 @@
"typescript",
"angular",
"signals",
"headless"
"headless",
"openai",
"anthropic",
"claude",
"gemini",
"chatgpt",
"ai-agents",
"chat-ui",
"streaming",
"ui"
],
"type": "module",
"sideEffects": false,
Expand Down
14 changes: 12 additions & 2 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agentskit/react-native",
"version": "0.2.4",
"description": "React Native + Expo hook + components for AgentsKit.",
"description": "React Native + Expo hook and headless chat components for AgentsKit — streaming, tools, and memory across any LLM provider.",
"keywords": [
"agentskit",
"ai",
Expand All @@ -12,7 +12,17 @@
"react-native",
"expo",
"mobile",
"hooks"
"hooks",
"openai",
"anthropic",
"claude",
"gemini",
"chatgpt",
"ai-agents",
"chat-ui",
"streaming",
"ios",
"android"
],
"type": "module",
"sideEffects": false,
Expand Down
13 changes: 11 additions & 2 deletions packages/solid/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agentskit/solid",
"version": "0.2.4",
"description": "Solid hook + components for AgentsKit.",
"description": "Solid hook + headless chat components for AgentsKit — streaming, tools, and memory across any LLM provider.",
"keywords": [
"agentskit",
"ai",
Expand All @@ -11,7 +11,16 @@
"typescript",
"solid",
"solid-js",
"headless"
"headless",
"openai",
"anthropic",
"claude",
"gemini",
"chatgpt",
"ai-agents",
"chat-ui",
"streaming",
"ui"
],
"type": "module",
"sideEffects": false,
Expand Down
14 changes: 12 additions & 2 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agentskit/svelte",
"version": "0.2.4",
"description": "Svelte 5 store + components for AgentsKit.",
"description": "Svelte 5 store + headless chat components for AgentsKit — streaming, tools, and memory across any LLM provider.",
"keywords": [
"agentskit",
"ai",
Expand All @@ -11,7 +11,17 @@
"typescript",
"svelte",
"store",
"headless"
"headless",
"openai",
"anthropic",
"claude",
"gemini",
"chatgpt",
"ai-agents",
"chat-ui",
"streaming",
"svelte5",
"ui"
],
"type": "module",
"sideEffects": false,
Expand Down
14 changes: 12 additions & 2 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agentskit/vue",
"version": "0.2.4",
"description": "Vue 3 composable + components for AgentsKit.",
"description": "Vue 3 composable + headless chat components for AgentsKit — streaming, tools, and memory across any LLM provider.",
"keywords": [
"agentskit",
"ai",
Expand All @@ -12,7 +12,17 @@
"vue",
"vue3",
"composable",
"headless"
"headless",
"openai",
"anthropic",
"claude",
"gemini",
"chatgpt",
"ai-agents",
"chat-ui",
"streaming",
"composition-api",
"ui"
],
"type": "module",
"sideEffects": false,
Expand Down
Loading