一键导入
using-inline-cta
Use when writing blog posts in .mdx format that need a call-to-action at the end. Use when adding InlineCTA (InlineCta) component to blog posts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when writing blog posts in .mdx format that need a call-to-action at the end. Use when adding InlineCTA (InlineCta) component to blog posts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Preflight review of blog posts before publication. Use when reviewing or doing a final check on a blog post (.mdx), or when asked to "review this post" or "preflight check".
Write or edit blog posts in Katie Schilling's voice. Use when drafting case studies, product feature posts, or partner-focused content for the Tigris blog. Katie writes technically grounded prose that centers the customer's problem and lets specifics do the persuading. Also use when reviewing prose that should match Katie's style.
Rewrite prose so it reads like one real person actually said it. Use when text feels constructed, overcorrected, evenly paced, or generically "well-written" in the way AI output tends to be. Strips rehearsed phrasing, breaks rhythmic patterns, and restores a clear point of view.
Audit a piece of prose for AI-generated tells. Use when checking whether text reads as AI-written, when reviewing AI-assisted drafts before publication, or when triaging third-party content. Triggers on "is this AI?", "does this sound like AI?", "check for AI patterns", "audit for slop", "scan for tells". Output is a structured forensic report — quotes, locations, severity, confidence. This skill detects; `stop-slop` rewrites.
Audit a blog post for engagement and reader pull. Use when checking whether a draft will actually hold attention — separate from correctness, AI tells, or SEO. Triggers on "is this interesting", "make this more engaging", "will anyone read this", "why does this feel flat", or any review where pulling the reader through is the question.
Create outlines for "build with me" blog posts -- dramatic retellings of engineering decisions, not tutorials. Use when outlining a "deep dive", "how we built", or "walkthrough" style post.
| name | using-inline-cta |
| description | Use when writing blog posts in .mdx format that need a call-to-action at the end. Use when adding InlineCTA (InlineCta) component to blog posts. |
InlineCta is a React component for adding a call-to-action at the end of blog posts. It provides a visually distinct card with a title, subtitle, and button that links to documentation or getting-started pages.
import InlineCta from "@site/src/components/InlineCta";
| Prop | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Short, punchy headline (often a question or value proposition) |
subtitle | string | JSX | Yes | 1-2 sentence description connecting blog topic to Tigris value prop |
button | string | Yes | Call-to-action button text |
link | string | No | URL for button link (defaults to tigrisConfig.getStartedUrl) |
Place InlineCta at the end of your blog post:
<InlineCta
title="Ready to fork your data like code?"
subtitle="Get instant, isolated copies of your data for development, testing, or experimentation."
button="Read the Bucket Forking Docs"
link="https://www.tigrisdata.com/docs/buckets/snapshots-and-forks/"
/>
<p> tags if
needed)Match button text to the link destination:
link prop to use default (getStartedUrl)| Mist | Fix |
|---|---|
| Placing CTA in middle of content | Always put at end, after conclusion |
| Generic title like "Get Started" | Use specific, compelling headline |
| Subtitle too long (3+ sentences) | Keep to 1-2 sentences |
Missing link when sending to specific page | Always include link for non-default URLs |
// Question-style title
<InlineCta
title="Ready to fork your data like code?"
subtitle="Get instant, isolated copies of your data for development, testing, or experimentation."
button="Read the Bucket Forking Docs"
link="https://www.tigrisdata.com/docs/buckets/snapshots-and-forks/"
/>
// Value proposition title
<InlineCta
title="Global storage for your files and feeds"
subtitle="Fast, global, reliable: pick three. Tigris lets you store your datasets, models, streams, backups, and more close to where they're needed."
button="Read the Docs"
/>
// JSX subtitle for formatting
<InlineCta
title="Set and forget object storage"
subtitle={
<p>
Configure your rules, then let Tigris handle the rest. Automatic lifecycle management keeps your storage costs predictable.
</p>
}
button="Get started"
/>