The $5M pitch

Command Code AI announced that they recently raised $5M to build a proprietary AI agent that learns your coding style; taste.

Meanwhile, session-commit does the same thing with a markdown file and some vibes.

How I discovered Command Code AI

When I posted about session-commit on X, another developer replied that he uses @CommandCodeAI for taste learning. I was intrigued.

Command Code AI vs session-commit


session-commit vs. Command Code AI

Dimensionsession-commitCommand Code AI
What it learnsDurable project knowledge: architecture decisions, conventions, debugging playbooksPersonal coding style: naming, patterns, formatting preferences
Where it storesAGENTS.md, a human-readable, version-controlled file in your repoProprietary model weights / taste profile (opaque)
How it learnsExplicit: you run the skill, review proposals, approve changesImplicit: watches every accept/reject/edit continuously
GranularityProject-level knowledgeDeveloper-level preferences
PortabilityFully portable. It’s just a markdown file that any agent can readLocked to their CLI (npx taste push/pull)
Tool lock-inNone. Works with Claude Code, Codex, Gemini CLI, OpenCodeRequires command-code CLI
Transparency100%. You see exactly what’s stored and can edit itBlack box. You don’t see the taste model internals
Team sharingShare via git (it’s in the repo)Share via npx taste push/pull
CostFree / open source$10 credits, then paid

The philosophical difference

  • Command Code AI says: “I’ll silently watch how you code and adapt to your style.” It’s implicit, continuous, and developer-scoped.
  • session-commit says: “Let’s explicitly capture what we learned and write it down for future sessions.” It’s explicit, intentional, and project-scoped.

In reality, they’re complementary more than competitive. Command Code optimizes how code is written (style/taste), session-commit optimizes what the agent knows about your project (architecture, conventions, gotchas).

I still find it amazing that a simple open source skill can likely get you half of the way to a product that raised a $5M seed round.

Try it yourself

Install the skill:

$ npx skills add olshansk/agent-skills

Start a Claude Code session and do some work:

$ claude

When you’re done, tell Claude capture your learnings:

> Use your session-commit skill!

That’s it! More details on GitHub.

session-commit feedback loop