Why this is the best first AI project

Internal, low-risk, immediately useful, and it exposes your documentation problems before you build anything customer-facing. Teams who start here learn what their content is actually like — which is knowledge every later AI project depends on.

Every organisation has documentation nobody can find. This is the most reliable AI deployment we see, and the one with the fewest ways to go wrong.

Why traditional internal search disappoints

ProblemWhy it happens
Must know the right wordsKeyword matching, not meaning
Returns documents, not answersYou still read to find the line
Cannot combine sourcesAnswer spans two documents
Ranking is poorLittle signal about relevance
Outdated results surfaceSuperseded documents still indexed
Content is scatteredWiki, drive, email, tickets

The gap is not that people cannot search. It is that they must already know what the document calls the thing they are looking for — which is precisely what a new employee does not know.

What good looks like

  • Answers the question directly, then cites the source document and section.
  • Combines information from multiple documents where the answer requires it.
  • Says when it does not know rather than assembling something plausible.
  • Respects permissions — surfaces only what that person may see.
  • Lives where people work — Slack or Teams, not a separate portal.
  • Shows recency, so users can judge whether the source is current.

The documentation audit that comes first

Do this before commissioning anything. Take your twenty most common internal questions and try to answer each from existing documentation alone. Whatever you cannot answer, the AI cannot either — and the exercise frequently reduces question volume on its own, sometimes enough that the AI project becomes unnecessary.

What the audit typically reveals:

  • Contradictions — two documents stating different policies, both current.
  • Stale content — superseded documents never removed.
  • Undocumented knowledge — the answer exists only in someone's head.
  • Fragmentation — the answer requires three documents nobody links together.
  • Access confusion — nobody is sure who should see what.

Every one of those becomes an AI failure if left unaddressed. Fixing them is the actual project.

Sources, in order of value

SourceValueDifficulty
Policy and process documentsHighLow
Internal wikiHighLow
Product and technical documentationHighLow
Resolved support ticketsVery highModerate — needs curation
Shared drive documentsMixedModerate — much is stale
Email archivesLowHigh — noisy and sensitive
Chat historyLowHigh — conversational fragments

Resolved support tickets are the most undervalued source. They contain real questions in the words people actually use, paired with verified answers. Curated properly — the confirmed resolution, not the whole thread — they are frequently better grounding material than the formal documentation.

Permission-aware retrieval

The technical requirement that most affects architecture:

  1. Tag every chunk with the access groups permitted to see its source.
  2. Resolve the requesting user's groups at query time.
  3. Filter before ranking, so restricted content never enters the candidate set.
  4. Never rely on the model to withhold content that was placed in its context.
  5. Re-check on access changes, so departures and role changes take effect.

Measuring whether it works

  • Questions asked per week — usage is the first signal.
  • Answered versus refused — a high refusal rate points at documentation gaps.
  • Repeat questions — the same query twice suggests the first answer failed.
  • Source coverage — which documents are actually being cited?
  • Questions with no good answer — this list is your documentation backlog, generated automatically.

That last point is a genuine secondary benefit. The logs tell you exactly what your organisation cannot answer about itself.

A deployment sequence

  1. Audit documentation against your twenty most common questions.
  2. Fix the contradictions and remove stale content. Measure question volume after.
  3. Index a narrow, high-quality subset — one department or topic area.
  4. Deploy in Slack or Teams where people already are.
  5. Read the logs weekly — what was asked, what failed.
  6. Expand coverage guided by the gaps the logs reveal.

Staff repeatedly asking questions your documentation should answer? Tell us what they ask most — the audit alone is frequently worth doing. See our AI agent service, RAG architecture, and choosing a deployment channel.

Frequently asked questions

Because keyword search requires knowing the vocabulary the document used. New staff ask "how much leave do I get?" while the policy says "annual entitlement accrual". Semantic retrieval bridges that gap, which is the single largest improvement over traditional intranet search.
Then fix that first — and the fixing frequently reduces the questions on its own. An AI grounded in contradictory documentation produces contradictory answers with more confidence than a human would, which is worse than no system.
Permission-aware retrieval — filter at query time by the requesting user's access rights, before ranking. Never index restricted content into a shared corpus and rely on the model to withhold it. That approach fails.