Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Company Architect (OKF Bundle)

Interviews you across 12 phases and turns your company's strategy, finance, and operations into a version-controllable Markdown knowledge graph (OKF bundle).

Docs & OfficeIntermediate24,1513,405AI score 8/10Last updated: Aug 9, 2026

What it does

Turns a founder's vision into a company documented as code — an Open Knowledge Format bundle of cross-linked .md files readable by both humans and agents. One agent plays strategist, CFO, CMO, COO, and systems architect, and it never dumps everything at once.

  • Sequential 12 phases: foundation → strategy → market → financial → sales → marketing → product → operations → tech → people → legal → governance
  • Only 3–5 numbered questions per block; missing answers get a proposed default marked [ASSUMPTION]
  • One concept per .md file, mandatory type in YAML frontmatter, relations expressed as body links forming a graph
  • Root index.md acts as a live dashboard (✅/🚧/⬜ per phase); log.md records ISO 8601 decision history
  • Three stdlib-only Python tools: bundle scaffolder, OKF linter, index generator

Who it's for

  • Early-stage founders who want their business plan in Git instead of slide decks
  • Teams building a company wiki that AI agents can read without translation
  • Ops leads standardizing documentation for due diligence and onboarding

Examples

  1. Build from scratch: ask "document my SaaS company from zero" — it asks for the bundle name, scaffolds folders, then starts Phase 0 questions and waits.
  2. Deepen one area: say "redo phase 03-financeiro" to answer pricing/CAC/runway questions and regenerate only those concepts.
  3. Quality check: run okf_linter.py to catch missing type values and broken links, then index_generator.py to rebuild the progress tables.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .gemini/skills/arquiteto-de-empresa folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/arquiteto-de-empresa/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/arquiteto-de-empresa ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repository to a temp folder: git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/claude-skills/.gemini/skills/arquiteto-de-empresa ~/.claude/skills/
  5. Verify that ~/.claude/skills/arquiteto-de-empresa/ contains SKILL.md plus the scripts/, references/, and assets/ folders.
  6. Restart Claude Code and prompt something like "build my company from scratch as an OKF bundle" to trigger the skill.
  7. To run the helper scripts yourself, confirm Python 3 with python3 --version (no external packages required).