diff --git a/.changeset/discoverability-keywords.md b/.changeset/discoverability-keywords.md
new file mode 100644
index 00000000..26a7b624
--- /dev/null
+++ b/.changeset/discoverability-keywords.md
@@ -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.
diff --git a/apps/docs-next/app/(home)/page.tsx b/apps/docs-next/app/(home)/page.tsx
index be4abe24..51dbb6a2 100644
--- a/apps/docs-next/app/(home)/page.tsx
+++ b/apps/docs-next/app/(home)/page.tsx
@@ -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' },
@@ -169,6 +170,7 @@ function Hero() {
>
See live examples
+ {/* Discord hidden until the community is large enough to warrant it. Restore when ready.
Join Discord →
+ */}
@@ -672,6 +675,7 @@ function FinalCta() {
>
Star on GitHub
+ {/* Discord hidden until the community is large enough to warrant it. Restore when ready.
Join Discord
+ */}
-
-
-)
+// Discord hidden until the community is large enough to warrant it. Restore when ready.
+// const DiscordIcon = (
+//
+// )
export const baseOptions: BaseLayoutProps = {
nav: {
@@ -42,13 +43,14 @@ export const baseOptions: BaseLayoutProps = {
children: ,
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',
}
diff --git a/packages/angular/package.json b/packages/angular/package.json
index e9b3090c..e8a6e963 100644
--- a/packages/angular/package.json
+++ b/packages/angular/package.json
@@ -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",
@@ -11,7 +11,16 @@
"typescript",
"angular",
"signals",
- "headless"
+ "headless",
+ "openai",
+ "anthropic",
+ "claude",
+ "gemini",
+ "chatgpt",
+ "ai-agents",
+ "chat-ui",
+ "streaming",
+ "ui"
],
"type": "module",
"sideEffects": false,
diff --git a/packages/react-native/package.json b/packages/react-native/package.json
index 0c707ac2..f8ce80c4 100644
--- a/packages/react-native/package.json
+++ b/packages/react-native/package.json
@@ -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",
@@ -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,
diff --git a/packages/solid/package.json b/packages/solid/package.json
index 9120dfc2..fc0809f7 100644
--- a/packages/solid/package.json
+++ b/packages/solid/package.json
@@ -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",
@@ -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,
diff --git a/packages/svelte/package.json b/packages/svelte/package.json
index b396f0d1..ec68936c 100644
--- a/packages/svelte/package.json
+++ b/packages/svelte/package.json
@@ -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",
@@ -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,
diff --git a/packages/vue/package.json b/packages/vue/package.json
index fcab852e..b860fe97 100644
--- a/packages/vue/package.json
+++ b/packages/vue/package.json
@@ -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",
@@ -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,