Waymaker frameworks
Discover and apply Waymaker's business frameworks. Frameworks are structured methodologies for roles, strategy, goals, and operations that enable "Waymaker-styled" implementations.
Overview
Discover and apply Waymaker's business frameworks. Frameworks are structured methodologies for roles, strategy, goals, and operations that enable "Waymaker-styled" implementations.
Usage
waymaker frameworks <subcommand> [options]
Subcommands
| Subcommand | Description |
|---|---|
list | List available frameworks |
get | Get framework details (with optional book context) |
categories | List framework categories |
search | Search frameworks by keyword |
apply | Apply a framework |
knowledge | List frameworks with book context available |
Framework Categories
waymaker frameworks categories
| Category | Description |
|---|---|
strategy | Strategic planning and business direction |
roles | Role definitions, accountability, org structure |
goals | OKRs, objectives, goal setting |
operations | Operational excellence and processes |
leadership | Leadership methodology and team alignment |
Available Frameworks
| Framework | Category | Description |
|---|---|---|
role-description-builder | roles | Build comprehensive role descriptions |
strategy-map | strategy | Create strategic planning documents |
okr-builder | goals | Structure OKRs and objectives |
7-questions | leadership | Apply the 7 Questions of Leadership |
decision-matrix | operations | Build decision-making frameworks |
meeting-agenda | operations | Create effective meeting agendas |
Examples
List All Frameworks
waymaker frameworks list
Output:
Waymaker Frameworks (6)
Your Tier: pro
id name category tier sections
---------------------------------------------------------------------------------
role-description-builder Role Description Builder roles starter 6
strategy-map Strategy Map Builder strategy pro 5
okr-builder OKR Builder goals starter 4
7-questions 7 Questions of Leadership leadership pro 7
decision-matrix Decision Matrix operations starter 4
meeting-agenda Meeting Agenda Builder operations starter 5
Filter by Category
waymaker frameworks list --category roles
Filter by Tier
waymaker frameworks list --tier starter
Get Framework Details
waymaker frameworks get role-description-builder
Output:
Role Description Builder
Build comprehensive role descriptions using Waymaker's accountability framework.
ID: role-description-builder
Category: roles
Tier: starter
Version: 1.0.0
Output Format: markdown
Sections
Role Purpose (required)
Define the core purpose and value this role creates
Prompts:
• What is the primary purpose of this role?
• What value does this role create for the organization?
• How does this role contribute to the company mission?
Key Results & Accountabilities (required)
Define measurable outcomes this role must deliver
Prompts:
• What are the 3-5 most important outcomes this role must deliver?
• What metrics define success for each key result?
...
Search Frameworks
waymaker frameworks search "role"
Output:
Search Results for "role" (1)
id name category
------------------------------------------------------------
role-description-builder Role Description Builder roles
Apply a Framework
Generate template (stdout):
waymaker frameworks apply role-description-builder \
--context "Head of Product role for a B2B SaaS startup with 50 employees"
Save to file:
waymaker frameworks apply role-description-builder \
--context "Head of Product for B2B SaaS" \
--output head-of-product.md
With AI assistance (uses OneAI credits):
waymaker frameworks apply role-description-builder \
--context "Head of Product for B2B SaaS" \
--output head-of-product.md \
--ai-assist
Options Reference
| Option | Type | Description |
|---|---|---|
--category | enum | Filter by category |
--tier | enum | Filter by tier (starter, pro, enterprise) |
--context | string | Business context for framework |
--output | string | Output file path |
--ai-assist | flag | Use OneAI for content generation |
--json | flag | Output as JSON |
JSON Output
waymaker frameworks list --json
[
{
"id": "role-description-builder",
"name": "Role Description Builder",
"description": "Build comprehensive role descriptions...",
"category": "roles",
"tier": "starter",
"section_count": 6
}
]
Tier Access
Your access to frameworks depends on your organization's subscription tier:
| Your Tier | Accessible Frameworks |
|---|---|
| Starter | starter tier only |
| Pro | starter + pro tiers |
| Enterprise | all frameworks |
AI-Assisted Generation
When using --ai-assist, the framework is processed by OneAI to generate content based on your context. This:
- Consumes OneAI credits
- Produces more complete output
- Tailors content to your specific situation
Without AI (free): Returns a template with prompts for manual completion.
With AI (credits): Generates content based on your context and the framework structure.
Use Cases
Create Role Description
# Generate role description template
waymaker frameworks apply role-description-builder \
--context "Senior Software Engineer at a fintech startup" \
--output senior-engineer-role.md
# Review and customize the generated template
cat senior-engineer-role.md
Strategic Planning
# Apply strategy map framework
waymaker frameworks apply strategy-map \
--context "E-commerce company expanding to European markets" \
--output europe-expansion-strategy.md
Set Up OKRs
# Generate OKR structure
waymaker frameworks apply okr-builder \
--context "Q1 2026 Engineering team objectives" \
--output q1-engineering-okrs.md
AI Agent Workflow
# Get framework structure
FRAMEWORK=$(waymaker frameworks get role-description-builder --json)
# Parse sections
echo $FRAMEWORK | jq '.sections[] | {name, required}'
# Apply with context
waymaker frameworks apply role-description-builder \
--context "$(cat job-requirements.txt)" \
--output role-description.md \
--ai-assist
Framework Output Format
Applied frameworks output markdown with this structure:
# Framework Name
## Context
Your provided context...
---
## Section Name *
**Prompt question?**
<!-- Your answer here -->
**Another prompt?**
<!-- Your answer here -->
---
*Generated using Waymaker Framework: framework-id*
Knowledge Context System
Frameworks are backed by methodology content from the Resolute book series. The knowledge context system provides AI assistants with book chapter content for enhanced framework application.
Knowledge Sources
| Book | Frameworks | Description |
|---|---|---|
| Resolute: The 7 Questions of Leadership | 29 | Strategic leadership, 7 Questions, 5 Questions of Management |
| Resolute Teams | 13 | Department-specific (Sales, Marketing, Service, Finance, IT, People & Culture) |
Total: 42 frameworks with book context
List Frameworks with Knowledge
waymaker frameworks knowledge
Output:
Frameworks with Book Context
These frameworks have Resolute book chapter context available for AI consumption.
Total Frameworks: 35
Resolute: The 7 Questions of Leadership
• leadership-curve
• 12-questions
• 7-questions
• 5-questions-management
• vision-canvas
• market-canvas
...
Resolute Teams
• sales-leadership-curve
• sales-plan-canvas
• marketing-leadership-curve
...
View Knowledge Sources
waymaker frameworks knowledge --sources
Output:
Knowledge Sources
Waymaker frameworks are backed by methodology from these books:
Resolute: The 7 Questions of Leadership:
Strategic leadership framework for future-state creation. Covers vision,
market, strategy, business model, customer experience, employee experience,
and goals.
Resolute Teams:
Department-specific leadership frameworks for Sales, Marketing, Service,
Finance, IT, and People & Culture teams.
Get Framework with Book Context
The --with-context flag returns framework details plus related book chapter content:
waymaker frameworks get 7-questions --with-context
Output:
7 Questions of Leadership
The foundational Waymaker framework for strategic clarity...
ID: 7-questions
Category: leadership
Tier: starter
Has Knowledge Context: Yes
Book Source: Resolute: The 7 Questions of Leadership
Related Chapters: 8
Context content is available. To save for AI consumption:
waymaker frameworks get 7-questions --with-context --output context.md
Save Context for AI Consumption
waymaker frameworks get 7-questions --with-context --output 7q-context.md
This creates a comprehensive context file (~300-500 lines) containing:
- Framework metadata and description
- Related book chapter summaries
- Framework methodology content
- Section prompts and examples
AI agents can read this file to produce methodology-accurate outputs.
AI Agent Workflow with Knowledge Context
# 1. Check available frameworks with knowledge
waymaker frameworks knowledge --json | jq '.frameworks'
# 2. Get framework with full book context
waymaker frameworks get 7-questions --with-context --output context.md
# 3. AI assistant reads context.md and applies the methodology
# The context includes:
# - Book chapters explaining the framework theory
# - Framework sections with guided prompts
# - Examples and application guidance
# 4. Generate output using the framework
waymaker frameworks apply 7-questions \
--context "$(cat business-situation.txt)" \
--output business-plan.md
Knowledge Context JSON
waymaker frameworks get 7-questions --with-context --json
{
"framework": {
"id": "7-questions",
"name": "7 Questions of Leadership",
"sections": [...]
},
"has_knowledge_context": true,
"knowledge": {
"book": "resolute",
"description": "The 7 Questions of Leadership - strategic framework",
"chapters": ["ch19-intro-leadership", "ch20-lq1-vision", ...],
"context_content": "# Knowledge Context for: 7-questions\n..."
}
}
Why Knowledge Context Matters
Without context:
- AI applies framework structure mechanically
- May miss methodology nuances
- Generic outputs
With context:
- AI understands the "why" behind each section
- Applies Waymaker methodology accurately
- Produces outputs aligned with Resolute book principles
MCP Tools (Claude Desktop)
When using the Waymaker MCP server with Claude Desktop or other AI assistants, these tools are available for framework operations:
commander_framework_list
List available Waymaker Resolute frameworks.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
category | string | No | Filter by category: strategy, roles, goals, operations, leadership |
tier | string | No | Filter by tier: starter, pro, enterprise |
with_knowledge | boolean | No | Only show frameworks with Resolute book context |
Example prompts:
"List all available Waymaker frameworks"
"Show me the leadership frameworks"
commander_framework_get
Get a specific framework with optional Resolute book context.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
framework_id | string | Yes | Framework ID (e.g., "7-questions", "role-description-builder") |
with_context | boolean | No | Include Resolute book chapter content for AI consumption |
Example prompts:
"Get the 7 Questions of Leadership framework with book context"
"Show me the OKR Builder framework sections"
commander_framework_apply
Apply a framework to generate structured business content.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
framework_id | string | Yes | Framework ID to apply |
context | string | Yes | Business context (your situation) |
section_inputs | object | No | Optional inputs for specific sections |
Example prompts:
"Apply the 7 Questions framework to help me plan strategy for my B2B SaaS startup with 50 employees"
"Use the Role Description Builder to create a Head of Product role for a fintech company"
commander_framework_categories
List framework categories and knowledge sources.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
include_sources | boolean | No | Include Resolute book information |
AI-Powered Framework Workflow
The MCP tools enable Claude to act as a Waymaker business strategist:
1. List frameworks to find the right one
2. Get framework with book context (with_context=true)
3. Claude reads Resolute methodology
4. Apply framework with your business context
5. Claude generates outputs aligned with Waymaker principles
Example conversation:
"I need to create a strategic plan for Q2. What frameworks can help?"
Claude lists relevant frameworks, recommends the 7 Questions or Strategy Map, retrieves the book context, and guides you through each section using the actual Resolute methodology.