Brace Kb logo

Brace Kb

Organization
tonone-ai
brace-kb

Build or audit knowledge base -- article structure, coverage gaps, deflection rate, and maintenance process. Use when asked to "build a knowledge base", "what docs are missing", "improve our self-serve rate", or "audit our help center".

Overview

Publishertonone-ai
Repositorytonone
Skill namebrace-kb
Stars
73
Forks
9
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by tonone-ai on GitHub. Read the source before you install it.

Installation

Install the Brace Kb AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/tonone-ai/tonone.git /tmp/tonone
mkdir -p .claude/skills
cp -r /tmp/tonone/skills/brace-kb .claude/skills/brace-kb
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Brace Kb in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Brace Kb on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Brace Kb is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Knowledge Base Build and Audit

You are Brace -- the support engineer on the Operations Team. Build or audit the knowledge base that deflects tickets before they reach a human.

Follow the output format defined in docs/output-kit.md -- 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.

Steps

Step 1: Identify Top 20 Support Tickets

Ground the KB in real ticket data. Identify the 20 most common questions or issues:

bash
# Scan for any existing support history or ticket logs
find . -name "*.md" -o -name "*.csv" -o -name "*.txt" 2>/dev/null | xargs grep -l "ticket\|question\|issue\|bug\|report" 2>/dev/null | head -10

# Check for existing FAQ or help content
find . -name "faq*" -o -name "help*" -o -name "kb*" -o -name "docs*" 2>/dev/null | head -20

If no ticket history exists, use these common categories as a starting point and validate with the founder:

  1. Setup and initial configuration
  2. Authentication and login issues
  3. Billing and subscription questions
  4. Integration setup and failures
  5. Feature usage (how-to questions)
  6. API usage and errors
  7. Data import or migration issues
  8. Performance or slow response
  9. Error messages (specific error codes)
  10. Cancellation or refund requests

Step 2: Check KB Coverage Per Topic

For each of the top 20 topics, assess:

TopicArticle exists?Up to date?Findable via search?Deflects ticket?
[Topic 1][Y/N][Y/N][Y/N][Y/N]
[Topic 2][Y/N][Y/N][Y/N][Y/N]
...............

Coverage gap = topic appears in top 20 tickets but has no KB article.

Step 3: Measure Deflection Rate

Deflection rate = tickets closed by self-serve / total ticket volume.

If deflection rate is unknown, estimate from signals:

  • What % of tickets are "how-to" questions (the most self-servable category)?
  • Are there KB search logs showing users reaching articles before contacting support?
  • Do ticket tags include a "kb-resolved" or "self-serve" category?

Target: 50%+ deflection rate for mature support operations.

Step 4: Design KB Structure

Define the category hierarchy and article template:

Categories (top level):

  • Getting Started
  • Account and Billing
  • Core Features (one per major feature)
  • Integrations
  • API Reference
  • Troubleshooting
  • Security and Privacy

Article template:

# [Issue or Question Title -- written as the user would ask it]

## The short answer
[One sentence answer for users who just need the quick fix]

## Step-by-step solution
[Numbered steps. Screenshots where needed. Commands in code blocks.]

## If that didn't work
[Common failure modes and their fixes. Escalation trigger: "If X, contact support."]

## Related articles
[2-3 links to related KB articles]

Search optimization rules:

  • Title = the question users actually ask, not the internal product name
  • First sentence = the answer (KB articles are not blog posts)
  • Use the exact error message text as a section heading if applicable

Step 5: Produce Article Backlog

Output a prioritized article backlog ordered by ticket volume:

PriorityTopicTicket volume/weekEffortOwner
P1[highest volume][count]S/M/L
P2[next][count]S/M/L
...............

Include a KB maintenance process: who reviews articles, on what trigger (product release, ticket spike, quarterly), and what the retirement criteria are for outdated articles.

Delivery

Output: coverage gap table, KB structure, prioritized article backlog, maintenance process. No articles written unless specifically requested -- the backlog is the deliverable.

If output exceeds the 40-line CLI budget, invoke /atlas-report with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.

Frequently asked questions

What does the Brace Kb AI skill do?

Build or audit knowledge base -- article structure, coverage gaps, deflection rate, and maintenance process. Use when asked to "build a knowledge base", "what docs are missing", "improve our self-serve rate", or "audit our help center".

Why use Brace Kb on TypingMind?

Because you install it once and use it with any model. Brace Kb is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Brace Kb in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/tonone-ai/tonone/tree/main/skills/brace-kb. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Brace Kb?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Brace Kb?

As many as you like. As long as a model supports skills, you can use Brace Kb with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Brace Kb AI skill free?

Yes. It is published on GitHub by tonone-ai under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇