Commit Graph

88 Commits

Author SHA1 Message Date
Sam Julien 03930e2484 chore(docs, shell-docs): add favicon.ico
Neither app had a favicon configured locally, so the browser tab
showed the generic globe icon. Drop the canonical copilotkit.ai
favicon (3-image .ico, 16×16 + 32×32) into each app's app/ directory
so Next.js auto-serves it via its file-system convention. Same asset
on both surfaces.
2026-05-14 20:36:44 -05:00
Sam Julien 62facacee1 feat(quickstart): add platform signup as Step 1 across integration quickstarts
Every integration quickstart in docs/ and showcase/shell-docs/ now opens with
a "Create a free account" step that points the reader at the Enterprise
Intelligence Platform before the framework path. Existing top-of-page
<OpsPlatformCTA> blocks on the six integrations that already had one are
left in place.

- New <SignupLink surface="docs_<int>_quickstart_step1">…</SignupLink> MDX
  component in both apps. It mirrors OpsPlatformCTA's URL+UTM contract
  (https://dashboard.operations.copilotkit.ai/ with the canonical docs
  UTMs, picked up from NEXT_PUBLIC_INTELLIGENCE_SIGNUP_URL when set) and
  fires the same PostHog event the other CTAs use:
  posthog.capture("try_for_free_clicked", { location: surface }).
- Registered as an MDX global in:
    docs/app/integrations/[[...slug]]/page.tsx
    docs/app/(home)/[[...slug]]/page.tsx
    showcase/shell-docs/src/lib/mdx-registry.tsx
- All 28 integration quickstart .mdx files now lead with a Step that uses
  this component as an inline link inside a single sentence of prose —
  no CTA card inside <Steps>.

The <TailoredContent> "Choose your starting point" / "How do you want to
get started?" selector is now wrapped in its own <Step> so it advances
the counter, and the inner CLI/manual paths render as steps 3, 4, 5, …
instead of 2, 3, 4, …. Applies to all 20 quickstarts that use the
picker.

- Indigo→purple gradient text on the Step 1 heading on both surfaces
  (`.fd-steps > .fd-step:first-child h3` on docs/,
  `.docs-steps > div:first-child h3` on shell-docs). Direct-child
  combinator scopes it to the outer first Step so inner first-children
  inside TailoredContentOption don't pick it up. Bump weight to 700
  and font-size to 1.375rem on docs/ to compensate for the
  background-clip:text rendering path (grayscale AA, no solid fill)
  which makes glyphs look lighter/smaller than the adjacent solid
  600/20px headings.
- Tone down the selected TailoredContent option card on both surfaces
  to a near-grayscale wash (from-slate-50 → to-indigo-50/30) and
  shorten the card itself (smaller padding, smaller icon, smaller
  title; extra left padding for breathing room) so the picker takes
  less vertical space and doesn't compete with the Step 1 gradient
  heading. Indigo ring still does the "selected" signal.
- Bump the tablist's bottom margin in shell-docs (my-2 → mt-2 mb-6)
  so the gap between the picker and the first inner Step matches the
  1.5rem gap that every other consecutive-Step transition uses.
- Black SignupLink color in Step 1 on shell-docs so the link doesn't
  clash with the gradient heading above it.
- Shell-docs: reset margin-top on the first heading inside any Step so
  the badge and heading align, and nudge the badge top from -0.125rem
  to 0.1875rem so its vertical center matches the heading line center.
  Moved the badge's appearance (background/border/color/font-weight)
  out of inline style and into globals.css so :first-child overrides
  can win without fighting inline-style specificity.
2026-05-13 11:38:29 -07:00
Ben Taylor e723ef9b7f chore(docs): improve image alt text for a11y + SEO (#4637)
<!--
Thank you for sending the PR! We appreciate you spending the time to
work on these changes.

Help us understand your motivation by explaining why you decided to make
this change.


**Please PLEASE reach out to us first before starting any significant
work on new or existing features.**

By the time you've gotten here, you're looking at creating a pull
request so hopefully we're not too late.

We love community contributions! That said, we want to make sure we're
all on the same page before you start.
Investing a lot of time and effort just to find out it doesn't align
with the upstream project feels awful, and we don't want that to happen.
It also helps to make sure the work you're planning isn't already in
progress.

As described in our contributing guide, please file an issue first:
https://github.com/ag-ui-protocol/ag-ui/issues
Or, reach out to us on Discord: https://discord.com/invite/6dffbvGU3D


You can learn more about contributing to copilotkit here:
https://github.com/copilotkit/copilotkit/blob/master/CONTRIBUTING.md

Happy contributing!

-->

## What does this PR do?

(Describe the changes introduced in this PR)

- Logo component: "Logo" → "CopilotKit" (both light/dark variants)
- Examples carousel: empty alt → example.title
- Scarf tracking pixel: add aria-hidden so SR/audit tools skip it

## Related PRs and Issues

- (Direct link to related PR or issue, if relevant)

## Checklist

- [ ] I have read the [Contribution
Guide](https://github.com/copilotkit/copilotkit/blob/master/CONTRIBUTING.md)
- [ ] If the PR changes or adds functionality, I have updated the
relevant documentation
- [ ] "Allow edits by maintainers" is checked (lets us help iterate on
your PR directly — faster turnaround for everyone)
2026-05-04 14:19:11 -05:00
Benjamin Taylor 140cf65ead chore(docs): improve image alt text for a11y + SEO
- Logo component: "Logo" → "CopilotKit" (both light/dark variants)
- Examples carousel: empty alt → example.title
- Scarf tracking pixel: add aria-hidden so SR/audit tools skip it

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-04 14:06:54 -05:00
Sam Julien 25e0e3c8ad feat(docs): add sign-up CTA component and dashboard navbar link
Introduces a reusable OpsPlatformCTA component with four visual variants
(card, info, inline, tile) for placing dashboard sign-up calls-to-action
across the docs. Each click captures a `cta_clicked` PostHog event tagged
with surface, variant, and page path, and navigates to the dashboard with
UTM parameters identifying the source surface.

Registers the component in both MDX provider maps (home and integrations
slug routes) so it can be used in any MDX file.

Repoints the navbar "Free Developer Access" link to the dashboard and
wires the same PostHog tracking to its left and right placements.
2026-05-04 10:00:44 -05:00
Benjamin Taylor b08da79700 docs: remove Threads + Intelligence Platform docs
Removes the unreleased Threads management surface (useThreads hook,
multi-conversation tutorial, the per-integration Threads how-to, the
shared snippet) and the Intelligence Platform / self-hosting pages
introduced alongside them, plus the ThreadsEarlyAccess gate that wrapped
them. The Learn landing page stays; just drops the Threads card and the
Intelligence Platform card. Sidebars (root, learn, reference/v2/hooks,
12 integrations + their premium subsections) are pruned to match.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 14:56:51 -07:00
Benjamin Taylor 55af709e51 feat(docs): gate Threads docs behind early-access password wrapper
Wrap the Threads documentation surface with the existing
InsecurePasswordProtected component via a thin ThreadsEarlyAccess
wrapper that surfaces Threads-specific splash copy and the shareable
early-access URL. Register the wrapper in both route handlers so the
gate works for docs under both (home) and integrations slug routes.

Wraps learn/threads.mdx and reference/v2/hooks/useThreads.mdx; the
remaining Threads pages are wrapped in the follow-up commit that also
fixes the cross-links to the new Self-Hosting docs.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-20 23:12:52 -05:00
Benjamin Taylor 7db5d068ac docs(threads): Add initial docs for Threads, plus a Learn landing page 2026-04-20 23:12:52 -05:00
Tyler Slaton cc8c945893 refactor(docs): optimize structure, content and navigability
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2026-03-02 11:30:16 -05:00
Jordan Ritter 0f47b01d06 feat: Enable Git LFS for binary assets (.gif, .jpg, .png, .pdf, .mp4) (#3238)
Co-authored-by: Alem Tuzlak <t.zlak@hotmail.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-02-23 13:56:48 +01:00
Max Korp 980d3f5b55 docs: add v2 interface reference docs (#3197)
Also fixing some linting/build issues.

Co-authored-by: Tyler Slaton <tyler@copilotkit.ai>
2026-02-17 17:14:41 -05:00
Alem Tuzlak 7b838547a9 feat: re-architeture the monorepo setup (#3187) 2026-02-13 11:01:44 +01:00
John Rae-Grant ead15aab50 Improve posthog broken link logging (#3121) 2026-01-28 18:32:39 -08:00
John Rae-Grant ad96277485 feat: implement comprehensive broken link handling system (#2600) 2026-01-28 12:58:40 -08:00
John Rae-Grant c00059c202 Docs/2026 01 15 tweaks (#3032) 2026-01-19 09:44:37 -08:00
John Rae-Grant 02ff998136 fix: use session storage to fix new tab bug (#3000) 2026-01-13 14:14:20 -08:00
John Rae-Grant 02568353d0 Docs/feature sidebar integrations (#2994) 2026-01-11 18:17:19 -08:00
John Rae-Grant e9e6fbdd85 Docs Rebranding with fixes (#2982)
Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
Co-authored-by: Santiago Cubino <scubino@litebox.ai>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-08 14:28:26 -08:00
johnprg eaedc9e078 Revert "Docs Rebranding"
This reverts commit 1810c76223.
2026-01-06 19:50:23 -08:00
John Rae-Grant 1810c76223 Docs Rebranding
Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
Co-authored-by: Santiago Cubino <scubino@litebox.ai>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-06 19:39:56 -08:00
sonleoracle e1ad392d40 Docs: add docs for new AG-UI integration: Open Agent Spec (#2874)
Co-authored-by: Brandon McConnell <brandon@dreamthinkbuild.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-12-20 02:08:58 -05:00
Brandon McConnell c7d215cffd [Docs] update fumadocs (#2870) 2025-12-17 23:01:05 -05:00
John Rae-Grant ab0d4e74b0 Final docs changes for a2UI launch (#2854) 2025-12-15 09:42:25 -08:00
Max Korp 5bfd86282d A2A/A2UI getting started guide 2025-12-14 11:53:39 -07:00
John Rae-Grant 4695d618dd feat: Docs Update for v1.5 announcement, GenUI specs and Agentic Protocols (#2815)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
Co-authored-by: Tyler Slaton <tyler@copilotkit.ai>
Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
2025-12-11 02:49:41 -05:00
Tyler Slaton 02c4095565 docs(aws-strands): add documentation tab (#2791)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-12-02 23:55:27 -05:00
Tyler Slaton a96b13b1db docs(maf): improve and release microsoft agent-framework docs (#2705)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-11-10 20:31:35 -05:00
Brandon McConnell d6a6c89d98 feat: add Microsoft Agent Framework to integrations docs (#2680)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
Co-authored-by: Tyler Slaton <tyler@copilotkit.ai>
2025-11-07 18:16:54 -05:00
John Rae-Grant d0e882846e Docs/discord link (#2617) 2025-10-14 18:17:54 -07:00
Tyler Slaton e6faf6f1ed docs: general polish (#2550)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-09-30 19:29:54 -04:00
johnprg 96506acbff Revert "Docs/rebranding (#2519)"
This reverts commit 360d404555.
2025-09-30 11:01:35 -07:00
johnprg dea53897d7 Revert "Docs/dark mode fixes (#2533)"
This reverts commit d24cffe7e1.
2025-09-30 11:01:10 -07:00
John Rae-Grant d24cffe7e1 Docs/dark mode fixes (#2533) 2025-09-29 13:51:11 -07:00
John Rae-Grant 360d404555 Docs/rebranding (#2519)
Co-authored-by: Max Korp <maxkorp@8bytealchemy.com>
Co-authored-by: Luis Valdés <luis@copilotkit.ai>
Co-authored-by: Ran Shemtov <ran@copilotkit.ai>
Co-authored-by: Muhammad Abubakar <abubakaran102025@gmail.com>
Co-authored-by: Chan Meng <chanmeng.dev@gmail.com>
Co-authored-by: Atai Barkai <atai.barkai@gmail.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
Co-authored-by: Sourabh Bagrecha <sourabhbagrecha@gmail.com>
Co-authored-by: Suhas Deshpande <suhasdeshpande@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-09-29 10:45:48 -07:00
johnprg aa0005c648 Revert "Docs/rebranding (#2455)"
This reverts commit f612cd5477.
2025-09-24 12:06:00 -07:00
John Rae-Grant f612cd5477 Docs/rebranding (#2455)
Mainly top nav addition and responsive work
Line up with upcoming docs rebranding from litebox
2025-09-24 11:52:46 -07:00
Max Korp 820a675d48 Add ADK to the docs (#2469) 2025-09-19 15:17:12 -07:00
Luis Valdés 74b70afa21 Add Reo to docs (#2432) 2025-09-09 20:10:12 -03:00
Luis Valdés f4611d41f0 Add script (#2412) 2025-09-03 17:38:38 -03:00
Tyler Slaton 3e60897bf9 docs: updating sidebar layout and updating subcomponents guide (#2363)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-08-28 11:21:46 -04:00
John Rae-Grant b839af7ddb separated error-debugging and error observability into separate pages… (#2348) 2025-08-22 16:53:35 -07:00
Tyler Slaton 31e1f7d2d4 refactor(docs): upgrade versions and overhaul structure and content (#2120)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-08-14 19:02:06 -04:00
John Rae-Grant 6bb3804d06 Pr/premium badge (#2304) 2025-08-08 16:48:33 -07:00
John Rae-Grant f25510b1c8 Docs/better vp landing pages (#2246)
Extensive changes to mainly the landing pages for each integration and the operation of the left nav.  
- Clearer immediate demonstration of CopilotKit + each integration value prop
- Embedded videos and app showing the value prop.
- Easier navigation experience
- Lots of content updates.
2025-08-07 21:45:07 -07:00
Tyler Slaton 42384e8c4f docs: overhaul messaging of cloud, premium and new features
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
Co-authored-by: Suhas Deshpande <suhas2u@gmail.com>
Co-authored-by: johnprg <john@theartofwork.com>
2025-08-07 17:27:54 -04:00
Tyler Slaton 098cef9b69 docs: make duplicate code more dry and add new headless hook doc (#2270)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-08-04 14:53:49 -04:00
Markus Ecker 100ba20b59 Add pydantic AI documentation (#2201)
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
Co-authored-by: Tyler Slaton <tyler@copilotkit.ai>
2025-07-23 18:02:46 +02:00
Tyler Slaton 20f18db75a refactor(docs): use cdn instead of storing in public (#2196) 2025-07-20 11:38:52 -04:00
johnprg e22446fea4 refactor(docs): overhaul new user experience and navigation
We're overhauling our documentation such that the experience
of selecting an agent framework or LLM is very clear. Doing
this is intended to greatly improve the experience of new
and existing users trying to find relevant documentation to them.

Signed-off-by: johnprg <john@theartofwork.com>
Co-authored-by: Tyler Slaton <tyler@copilotkit.ai>
2025-06-23 14:00:05 -04:00
Tyler Slaton 8a33b5212d docs(llamaindex): drastically improve quickstart experience
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2025-06-19 13:52:09 -04:00