mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-15 13:36:35 +03:00
Google's Open Knowledge Format (OKF) v0.1 — an open, vendor-neutral spec for representing knowledge as markdown files with YAML frontmatter, designed for AI agent consumption. - SKILL.md: core instructions, frontmatter spec, conformance criteria, cross-linking rules, relationship to other formats, quick start - references/spec-summary.md: full OKF v0.1 specification reference - references/bundle-architecture.md: directory structure and conventions - references/use-cases.md: real-world adoption and patterns - scripts/okf-bundle-validate.py: validate OKF bundle structure - assets/concept-template.md: template for creating concept files - assets/example-bundle/: minimal conformant OKF bundle
21 lines
536 B
Markdown
21 lines
536 B
Markdown
---
|
|
type: BigQuery Table
|
|
title: Customers
|
|
description: One row per customer account.
|
|
tags: [sales, customer-data]
|
|
timestamp: 2026-06-18T00:00:00Z
|
|
---
|
|
|
|
# Schema
|
|
|
|
| Column | Type | Description |
|
|
|--------|------|-------------|
|
|
| `customer_id` | STRING | Unique customer identifier. |
|
|
| `name` | STRING | Customer display name. |
|
|
| `email` | STRING | Customer email address. |
|
|
| `created_at` | TIMESTAMP | Account creation timestamp. |
|
|
|
|
# Relationships
|
|
|
|
Each customer has zero or more [orders](/tables/orders.md), linked by `customer_id`.
|