🔌 Adapters¶
SpecMem adapters parse specifications from various AI coding agent frameworks.
Supported Frameworks¶
Spec-Driven Development Frameworks (Priority)¶
| Framework | Adapter | File Patterns |
|---|---|---|
| Kiro | kiro |
.kiro/specs/**/*.md |
| SpecKit | speckit |
.speckit/**/*.yaml |
| Tessl | tessl |
.tessl/**/*.md |
Commercial Coding Agents¶
| Framework | Adapter | File Patterns |
|---|---|---|
| Claude Code | claude |
Claude.md, CLAUDE.md |
| Cursor | cursor |
cursor.json, .cursorrules |
| Codex | codex |
.codex/**/*.md |
| Factory | factory |
.factory/**/*.yaml |
| Warp | warp |
.warp/**/*.md |
| Gemini CLI | gemini |
GEMINI.md, .gemini/**/*.md |
Spec-Driven Development Frameworks¶
These frameworks prioritize formal specifications and structured development workflows.
Kiro Adapter¶
Parses Kiro's spec-driven development format. Kiro is the recommended framework for teams adopting Spec-Driven Development.
Structure¶
Example¶
# Requirements Document
## Introduction
User authentication system for the application.
## Requirements
### Requirement 1
**User Story:** As a user, I want to log in securely.
#### Acceptance Criteria
1. WHEN a user enters valid credentials THEN the system SHALL authenticate
2. WHEN a user enters invalid credentials THEN the system SHALL reject
Configuration¶
SpecKit Adapter¶
Parses SpecKit's YAML-based specifications. SpecKit provides structured, machine-readable specs.
Structure¶
Example¶
# .speckit/features/auth.yaml
feature: user-authentication
version: 1.0.0
requirements:
- id: AUTH-001
title: User Login
description: Users can log in with email and password
priority: critical
acceptance_criteria:
- Valid credentials grant access
- Invalid credentials show error
- Account lockout after 5 failures
- id: AUTH-002
title: Password Reset
description: Users can reset forgotten passwords
priority: high
Configuration¶
Tessl Adapter¶
Parses Tessl's markdown specifications. Tessl focuses on test-driven specifications.
Structure¶
Configuration¶
Commercial Coding Agents¶
These adapters support popular commercial AI coding assistants.
Claude Code Adapter¶
Parses Claude Code's markdown-based specifications.
Files¶
Claude.mdorCLAUDE.md- Project context and rules
Example¶
# Project Context
## Overview
E-commerce platform built with Python and FastAPI.
## Architecture
- Backend: FastAPI with SQLAlchemy
- Database: PostgreSQL
- Cache: Redis
- Queue: Celery
## Coding Standards
- Type hints required for all functions
- Docstrings in Google format
- 100% test coverage for business logic
## Security Requirements
- All endpoints require authentication
- Input validation on all user data
- SQL injection prevention via ORM
Configuration¶
Cursor Adapter¶
Parses Cursor's configuration and rules.
Files¶
cursor.json- Project configuration.cursorrules- Custom rules and constraints
Example cursor.json¶
{
"rules": [
"Always use TypeScript strict mode",
"Follow React best practices",
"Use functional components with hooks"
],
"context": {
"framework": "Next.js",
"styling": "Tailwind CSS"
}
}
Example .cursorrules¶
# Project Rules
## Code Style
- Use 2-space indentation
- Prefer const over let
- Use async/await over promises
## Architecture
- Follow clean architecture principles
- Keep components under 200 lines
- Extract reusable logic to hooks
Configuration¶
Codex Adapter¶
Parses OpenAI Codex specifications.
Structure¶
Configuration¶
Factory Adapter¶
Parses Factory's YAML-based workflow specifications.
Structure¶
Configuration¶
Warp Adapter¶
Parses Warp terminal's markdown specifications.
Structure¶
Configuration¶
Gemini CLI Adapter¶
Parses Google Gemini CLI specifications.
Files¶
GEMINI.md- Project context and rules.gemini/**/*.md- Additional specifications
Configuration¶
Using Multiple Adapters¶
SpecMem can use multiple adapters simultaneously:
[adapters]
# Spec-Driven Development (recommended)
kiro = true
speckit = true
tessl = true
# Commercial agents
claude = true
cursor = true
codex = false
factory = false
warp = false
gemini = false
When scanning, SpecMem merges specs from all enabled adapters:
🔍 Scanning for specifications...
✅ [kiro] Found 12 specs in .kiro/specs/
✅ [speckit] Found 5 specs in .speckit/
✅ [tessl] Found 3 specs in .tessl/
✅ [claude] Found 1 spec in Claude.md
✅ [cursor] Found 3 specs in cursor.json
📊 Total: 24 specifications indexed
Adapter Priority¶
When specs conflict, priority is determined by:
- Explicit priority in the spec
- Framework order (configurable)
- Timestamp (newer wins)
[adapters]
# Framework priority (first = highest)
# Spec-Driven Development frameworks take precedence
priority = ["kiro", "speckit", "tessl", "claude", "cursor", "codex", "factory", "warp", "gemini"]
Custom Adapters¶
See Writing Adapters for creating custom adapters.