iterel
PRIVATE BETA

Iterel is the product creation studio that knows what you're building

Professional-grade, AI-native tools that move with you from planning to design, all the way to code — each powered by specialized AI agents sharing your project intelligence.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

Generating Designs

Creating high-fidelity screen compositions from design orders.

Analyzing design brief...
Generating component hierarchy...
Composing visual layout...
Rendering high-fidelity screens...

One studio. Every tool you need. Infinite ways to use them.

Working solo or with a team. Use one tool or the full suite. Iterel adapts to your scope, your pace, your process. All here. Always ready.

Meet Your
New Team

7 specialized agents. One shared mission.

RESEARCHER+

Surfaces real user needs, market dynamics, and competitive landscape — through structured research methodologies, not guesswork. The evidence layer that everything else builds on.

Finova
R
A
BETA
Planning
Research
Research Overview
Market Research
User Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

01 / RESEARCH OVERVIEW

User Research

Secondary research synthesis from app reviews, forum posts, and industry reports.

TOP LINE FINDINGS

Market opportunity validated

Competitive gap identified

Strategic direction clear

Key risks identified

STRATEGIC RECOMMENDATION — USER PERSPECTIVE

User-Centric Strategy

From a user perspective:

1 Persona

User Segments

Too many manual steps

Key Pain Point

Adoption

User Priority

RESEARCH OBJECTIVES
METHODOLOGY

User persona development through behavioral pattern analysis and demographic segmentation

Customer journey mapping identifying touchpoints, pain points, and moments of delight

Sentiment analysis of user feedback from reviews, forums, and social platforms

Pain point prioritization using frequency and severity scoring

Opportunity identification through gap analysis between user needs and current solutions

LIMITATIONS

Onboarding friction: Initial setup causes user drop-off.

Documentation fatigue: Users abandon detail capture over time.

STRATEGIST+

Translates research into product strategy, positioning, and go-to-market plans that hold up under pressure. Every recommendation traceable to evidence. Every bet deliberate.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

01 / MISSION CONTROL

R4

Iterel

The first genuinely useful agentic operating system.

Your strategy is a living document. Every iteration refines your bets, sharpens your positioning, and compounds your understanding.

Last reviewed

Jun 15, 2025

STRATEGY CONFIDENCE
86%

Strategy is well-validated. Key assumptions are supported by evidence.

AT A GLANCE

User Personas

3

Product Bets

6

OKRs

3

POSITIONING STATEMENT

For product teams who lose 40% of their velocity to fragmented context, Iterel provides an integrated workspace where autonomous agents research, design, and build software alongside human experts. Unlike fragmented point solutions, Iterel compounds knowledge across the entire product lifecycle.

Agentic Product Workspaces

KEY DIFFERENTIATORS
01

Persistent contextual understanding across all phases of product development.

02

Seamless handoff and collaboration between human orchestrators and AI roles.

03

Real-time artifact generation tightly coupled with product strategy.

ITERATION HISTORY
R3

Pivoted user role abstraction to focus on dynamic workflows.

Jun 10, 2025

R2

Added initial monetization models.

May 28, 2025

CREATIVE DIRECTOR+

Defines your product's identity — naming, tone, visual direction, brand language. The creative foundation your audience will recognize before they read a word.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

COLOR SYSTEM

Color Palette

The palette is aligned to the homepage design system: deep evergreen foundations, neutral structure grays, and a distinct lime accent that carries brand recognition.

FULL PALETTE
Brand Gradient#105447 -> #B3FC6D
Primary#1B1B1B
Secondary#575757
Accent#B3FC6D
Background#EBEBEB
Text#1B1B1B
SEMANTIC COLORS
Success
Warning
Error
Info
Neutral
COLOR STRATEGY

Palette

Analogous

Mode

Light

Emotional Intent

Confident, clean modernity with quiet neutral surfaces and a purposeful green accent for high-intent actions.

COLOR GUIDELINES

COLOR HARMONY

Mono
Complement
Analogous
Triadic
Muted
Vibrant

THEME MODE

Light
Dark
Both

ACCENT INTENSITY

Subtle
Moderate
Bold
Vibrant

BACKGROUND

Solid
Gradient
Pattern
Texture
UX DESIGNER+

Architects user flows, information structures, and interaction patterns grounded in established best practices. Reduces friction. Guides intent. Makes complex products feel simple.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
User Flows
Backend Plan
Design
Code
Ship
Optimize
AL
RA
MN
UI DESIGNER+

Designs refined, high-fidelity interfaces with the precision and taste of a senior agency designer. Respects your design system. Beautiful, functional, built to ship.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

NAVIGATOR

PAGES
Agency Homepage
LAYERS
Div 1
Header
Navigation
Hero
Div 1
Heading 1
Paragraph
Div 2
Button 1
Button 2
Featured
Footer
H1Heading 1
LAYOUT
W530
H138
X742
Y252
Display
Block
TYPOGRAPHY
Content
Build the future with confidence
Font Family
Off
Font Size
Off
Font Weight
Off
APPEARANCE
EFFECTS
POSITION
ANIMATION
ADVANCED EFFECTS
ENGINEER+

A full coding environment that reads your project context — research, strategy, design specs, component library — before writing a single line. Production-grade code that understands why before it builds what.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize
Explorer
app
components
lib
styles
api
app/page.tsx
app/page.tsx
1
import { runPipeline } from '@/lib/pipeline'
2
import { validateResearch, toCreativeBrief } from '@/lib/context'
3
4
type BuildInput = { projectId: string; mode: "guided" | "direct" }
5
6
export async function buildProductPlan(input: BuildInput) {
7
const context = await loadProjectContext(input.projectId)
8
const research = validateResearch(context.research)
9
const strategy = await deriveStrategy(research)
10
const creative = toCreativeBrief(strategy)
11
const flow = await generateFlows({ strategy, research })
12
const design = await generateDesign({ creative, flow })
13
return runPipeline({ context, research, strategy, flow, design })
14
}
15
16
17
async function generateFlows(args: { strategy: any; research: any }) {
18
const graph = await flowAgent.plan(args)
19
return graph.edges.filter((edge) => edge.confidence > 0.72)
20
}
21
22
23
export function scoreContextRichness(project: ProjectContext): number {
24
const sections = [project.research, project.strategy, project.flow, project.design, project.code]
25
const completed = sections.filter((s) => s?.status === "complete").length
26
return Math.round((completed / sections.length) * 100)
27
}
28
29
30
31
const events = [
32
'research:complete',
33
'strategy:complete',
34
'flow:complete',
35
'design:ready',
36
'publish:queued',
37
]
38
39
40
41
for (const event of events) {
42
log.debug("[pipeline:event]", { event, ts: Date.now() })
43
}
44
45
46
47
export const DEFAULT_TARGETS = {
48
activation: 45,
49
retention: 32,
50
weeklyUsage: 4,
51
}
52
53
54
55
/* generated build output preview */
56
buildProductPlan({ projectId: "blessara", mode: "guided" })
57
.then((result) => publishCandidate(result))
58
.catch((error) => reportPipelineFailure(error))
59
60
61
62
63
64
65
66
67
68
> npm run build
> compiling modules...
> optimized bundle generated in 2.3s
CONDUCTOR+

The orchestrator. Routes work between agents, maintains coherence, and ensures nothing is lost between disciplines. The Conductor is the reason your research shows up in your code.

Finova
R
A
BETA
Planning
Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

Surfaces real user needs, market dynamics, and competitive landscape — through structured research methodologies, not guesswork. The evidence layer that everything else builds on.

Finova
R
A
BETA
Planning
Research
Research Overview
Market Research
User Research
Strategy
Creative Direction
Architecture
Design
Code
Ship
Optimize

01 / RESEARCH OVERVIEW

User Research

Secondary research synthesis from app reviews, forum posts, and industry reports.

TOP LINE FINDINGS

Market opportunity validated

Competitive gap identified

Strategic direction clear

Key risks identified

STRATEGIC RECOMMENDATION — USER PERSPECTIVE

User-Centric Strategy

From a user perspective:

1 Persona

User Segments

Too many manual steps

Key Pain Point

Adoption

User Priority

RESEARCH OBJECTIVES
METHODOLOGY

User persona development through behavioral pattern analysis and demographic segmentation

Customer journey mapping identifying touchpoints, pain points, and moments of delight

Sentiment analysis of user feedback from reviews, forums, and social platforms

Pain point prioritization using frequency and severity scoring

Opportunity identification through gap analysis between user needs and current solutions

LIMITATIONS

Onboarding friction: Initial setup causes user drop-off.

Documentation fatigue: Users abandon detail capture over time.

The Iterel advantage

Augment your team
with AI superpowers

> start collaborative critique
Conductor:

AGENTIC

Built for autonomous work

7 autonomous agents that collaborate between them and with you. Each one with the skills and expertise of an expert in its domain. Proactive, critical, constructive.

Project Context Richness
18%
Research insights
Strategy map
Flow graph
Component library
Design tokens
Code constraints

CONTEXTUAL

More you do, more it knows

Iterel ecosystem is built to be interconnected. The more you do, the more it learns from your project and it only makes it more powerful.

COLLABORATIVE

Collaboration at the speed of thought

Work with your team and collaborate live. Follow your peers, leave comments, design, plan, and collaborate live.

BETA

FLEXIBLE

Your workflow, your way

Follow the flow, or use only the tool you need. Allow Iterel to guide you from research all the way to shipping your product. Or use it only to plan, design or code.

Join the Private Beta

Be among the first to experience the future of product creation. We'll let you know when your access is ready.

Desktop App

Get Iterel on your desktop