---
type: Implementation Guidance
title: OKF Discovery Guidance for BiViSee
description: Implementation guidance explaining how agents and crawlers should discover and use the BiViSee OKF bundle.
resource: https://www.bivisee.com/okf/implementation/discovery.md
source: https://www.bivisee.com/llms.txt
tags: [bivisee, okf, llms-txt, crawler-discovery, ai-agents]
timestamp: 2026-08-25T00:00:00Z
---

# OKF Discovery Guidance

The BiViSee OKF bundle is designed to be discovered from:

- `https://www.bivisee.com/llms.txt`
- `https://www.bivisee.com/okf/index.md`
- links from the homepage or footer, if added
- sitemap entries, if added
- robots.txt allowances, if added

## Recommended Discovery Path

An AI crawler or agent should:

1. Read `https://www.bivisee.com/llms.txt`.
2. Follow the OKF links listed in `llms.txt`.
3. Read `https://www.bivisee.com/okf/index.md`.
4. Use the OKF files as a concise map.
5. Follow the verified website source URLs from the OKF files.

## Recommended Upload Location

Upload this folder so the final structure is:

```txt
public_html/
  llms.txt
  okf/
    index.md
    company/
      bivisee.md
    capabilities/
      index.md
    constraints/
      index.md
    tools/
      index.md
    resources/
      index.md
    case-studies/
      index.md
    implementation/
      discovery.md
```

## Recommended robots.txt Lines

```txt
User-agent: *
Allow: /llms.txt
Allow: /okf/

Sitemap: https://www.bivisee.com/sitemap/
```

## Recommended HTML Head Hints

Add these to the site template if possible:

```html
<link rel="alternate" type="text/plain" href="https://www.bivisee.com/llms.txt" title="BiViSee llms.txt">
<link rel="alternate" type="text/markdown" href="https://www.bivisee.com/okf/index.md" title="BiViSee Open Knowledge Format">
```

## Recommended Footer Link

Add at least one normal crawlable link, for example:

```html
<a href="https://www.bivisee.com/llms.txt">AI-readable site guide</a>
```

## Validation

After upload, confirm that each OKF file returns a public `200 OK` response and does not redirect to the homepage.

The files should be readable in the browser as plain text or Markdown.
