Files
magnus919_agent-skills/open-knowledge-format/assets/example-bundle/tables/orders.md
T
Magnus Hedemark caa46d9c05 feat: add open-knowledge-format skill
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
2026-06-18 12:18:35 -04:00

536 B

type, title, description, tags, timestamp
type title description tags timestamp
BigQuery Table Orders One row per completed customer order.
sales
orders
2026-06-18T00:00:00Z

Schema

Column Type Description
order_id STRING Globally unique order identifier.
customer_id STRING Foreign key to customers.
total_usd NUMERIC Order total in US dollars.
placed_at TIMESTAMP When the customer submitted the order.

Part of the sales dataset.