@fmatar/archlens-skill
Zero-dependency CLI, policy scaffolder, and multi-agent skill installer for the Archlens Dynamic Clean Architecture Workbench.
Analyzes any project repository, detects programming languages and package hierarchies, classifies packages into concentric Clean Architecture tiers, scaffolds .archlens/policy.json, and equips AI coding assistants (Claude Code, Gemini CLI, Google Antigravity) with mailbox refactoring protocols.
Quickstart
Option A: Run via NPX
# Production Stable (recommended)
npx @fmatar/archlens-skill
# Canary / Development Preview (tracks latest develop branch)
npx @fmatar/archlens-skill@dev
# Direct GitHub Execution (zero registry dependencies)
npx github:fmatar/archlens
Option B: Install Globally via NPM
npm install -g @fmatar/archlens-skill
archlens-skill
Option C: Run from Local Repository Clone
# Install globally from the local repository:
npm install -g ./cli
archlens-skill
# Or execute directly with Node:
node ./cli/bin/index.js
Key Features
- Zero External Dependencies: Engineered with pure Node.js standard libraries (
node:fs,node:path,node:readline,node:test,node:os). Executes immediately vianpxwithout latency. - Interactive Terminal UI: Displays styled ANSI diagnostics, ASCII branding banner, and interactive guided choices when run in a terminal.
- Polyglot Codebase Analyzer: Auto-detects project language and layout across Java, Kotlin, TypeScript, JavaScript, Python, Rust, Go, and Clojure.
- Concentric Tier Classification: Maps packages automatically to Clean Architecture layers:
- Level 0 (Domain Core):
domain,model,entities,core,types - Level 1 (Application):
usecase,application,service,port,interactor - Level 2 (Adapters):
adapter,controller,gateway,presenter,repository,dto,api - Level 3 (Infrastructure):
infrastructure,config,db,web,server,client
- Level 0 (Domain Core):
- Multi-Agent Skill Deployment: Installs the
archlens-install-policyskill globally into Claude Code (~/.claude/skills/), Gemini CLI / Antigravity (~/.gemini/config/skills/), and custom agent workspaces. - Safe Incremental Updates: Re-scans codebases for newly introduced packages, updating
orderandlevelswhile preserving user custom rules and configurations. - Seamless Upgrade Migration: Automatically migrates legacy
.uml-viewer/folders and companion files to modern.archlens/viaarchlens-skill upgrade. - Model Context Protocol (MCP) Client Auto-Configuration: Detects and configures host AI client manifests (Claude Desktop, Google Antigravity, Claude Code, Cursor, VS Code) in a single command (
--mcp). - On-Demand Container Orchestration & Stdio Bridge: Automatically spins up the Archlens container when needed, bridges MCP over stdio (
mcpcommand), and provides an instant offline AST fallback if Docker is unavailable. - Mailbox Protocol Integration: Injects the Clean Architecture Companion Protocol into
CLAUDE.mdandAGENTS.mdfor seamless asynchronous mailbox refactoring (to-agent.json,to-viewer.json).
Usage & CLI Reference
Common Workflows
1. Interactive Setup Wizard
Guides you through repository inspection and option selection:
npx @fmatar/archlens-skill
2. Headless Local Initialization
Initializes Clean Architecture governance in the current repository with default settings:
npx @fmatar/archlens-skill --yes
Target a specific repository directory:
npx @fmatar/archlens-skill --path /path/to/project --yes
3. Global AI Agent Skill Installation
Deploys the skill globally so Claude Code, Gemini CLI, and Antigravity can scaffold policies on demand:
npx @fmatar/archlens-skill global
4. Synchronize Existing Policy
Re-scans code after adding new modules or packages to incorporate them into .archlens/policy.json:
npx @fmatar/archlens-skill update
5. Upgrade Legacy Configuration
Migrates older .uml-viewer/ directories and companions to the standard .archlens/ layout:
npx @fmatar/archlens-skill upgrade
6. Export LLM Refactoring Prompt Dossier
Generates copy-ready architectural diagnostics and concrete Dependency Inversion Principle (DIP) instructions for Claude Code, Gemini, ChatGPT, or Antigravity:
# Print dossier to stdout
npx @fmatar/archlens-skill prompt
# Or copy directly to system clipboard
npx @fmatar/archlens-skill prompt --copy
7. Model Context Protocol (MCP) Setup & Stdio Bridge
Configures detected AI client manifests or launches an interactive stdio bridge:
# Auto-configure Claude Desktop, Google Antigravity, Claude Code, Cursor, and VS Code
npx @fmatar/archlens-skill --mcp
# Launch MCP stdio transport bridge (spins up Docker container automatically when needed)
npx @fmatar/archlens-skill mcp
8. Start Workbench Container & Auto-Resurrection
Starts the Archlens container, mounts the workspace, verifies readiness, and optionally opens your browser. If the container is killed or stopped, running start (or calling an MCP tool) automatically starts it again:
# Start container and automatically open workbench in browser:
npx @fmatar/archlens-skill start --open
# Start container in background on default port 8088:
npx @fmatar/archlens-skill start
# Specify a custom port or target workspace directory:
npx @fmatar/archlens-skill start --path /path/to/project --port 8088 --open
Command-Line Options
| Flag | Shorthand | Description | Default |
|---|---|---|---|
start |
Start Archlens Workbench container (auto-resurrects on demand) | ||
--open |
-o |
Open visual workbench in default browser upon startup | false |
--port <PORT> |
Workbench HTTP port | 8088 |
|
--path <DIR> |
-p |
Target repository directory | . (current directory) |
--title <NAME> |
-t |
Project title in visual workbench | Formatted folder name |
--prefix <PKG> |
Common package prefix (e.g. com.example.service) |
Auto-detected | |
--server-url <URL> |
Visual Workbench server endpoint | http://localhost:8088 |
|
--mcp |
-m |
Auto-configure MCP client manifests (Claude, Antigravity, Cursor) | false |
--copy |
-c |
Copy LLM prompt output directly to system clipboard | false |
--global |
-g |
Install skill into global agent directories | false |
--update |
-u |
Re-scan code and update existing policy | false |
--upgrade |
Migrate legacy .uml-viewer to .archlens |
false |
|
--force |
-f |
Overwrite existing configuration files | false |
--dry-run |
Simulate execution without writing files | false |
|
--yes |
-y |
Accept defaults automatically (non-interactive) | false |
--version |
-v |
Display package version | |
--help |
-h |
Display help reference |
Artifacts Generated
Running the installer creates the following governance structure:
my-project/
├── .archlens/
│ ├── policy.json # Clean Architecture concentric tiers & rules
│ └── workbench.config.json # Workbench endpoint and mailbox IPC configuration
├── CLAUDE.md # Clean Architecture Mailbox companion protocol
└── AGENTS.md # Agent instructions for DIP refactoring & AST reload
Visualizing in Archlens Workbench
Once configured, launch the Archlens workbench and open your project:
http://localhost:8088/?projectRoot=/absolute/path/to/my-project
Or open the visual workbench and press ⌘O / Ctrl+O to browse and select your project root.
Testing
Execute the test suite with Node's native test runner:
npm test
License
Apache-2.0 Fady Matar