Dev-Card: A Claude Code Skill That Generates Developer Identity Cards from Git History

Dev-Card is a Claude Code skill that analyzes a git repository and generates a shareable Developer Identity Card. The tool assigns developers one of 11 archetypes based on their git history analysis.
How It Works
The skill runs a Python analyzer that processes git data locally without API calls. It examines four key metrics:
- Commit timing: Hour-of-day and day-of-week distribution
- Language breakdown: Programming languages used in the repository
- Commit message patterns: Ratios of fix/feat/refactor/wip commit types
- Commit size distribution: Distinguishes between sprinter vs. marathon coding styles
The Python analyzer outputs JSON data, which Claude then reads along with an archetypes reference to generate the final card. The result includes a developer archetype name, tagline, and specific metrics about coding patterns.
Example Output
One user's result on their repository showed:
# 🃏 Dev Card: K — The Dawn Deployer > "Ships before standup. Commits at dawn." | Peak Window | 6am – 8am | | Most Active | Monday | | Commit Style | Marathon · avg 417 lines/commit | | Dominant Intent | Feature builder (77%) |
The archetype "The Dawn Deployer" was assigned based on commit timing showing peak activity between 6am-8am, with Monday being the most active day. The commit style was identified as "Marathon" with an average of 417 lines per commit, and 77% of commits were feature-related.
The skill is available as an open-source project on GitHub at https://github.com/likw99/agent-skills.
📖 Read the full source: r/ClaudeAI
👀 See Also

CK Search: Local Semantic Search Tool with MCP Server Integration
CK Search is a local semantic search tool with a built-in MCP server that indexes any text directory without cloud dependencies. The tool can be used by AI agents via MCP, and the source provides a practical walkthrough covering setup, strengths, and limitations compared to grep.

ToolLoop: Open-Source Agent Framework for Claude-Style Tools with Any Model
ToolLoop is an open-source Python framework with 11 tools for file operations, code search, shell access, and sub-agents that works with any LLM through LiteLLM. The 2,700-line framework allows switching models mid-conversation with shared context.

Transloadit MCP Server Connects AI Agents to Media Processing Pipeline
Transloadit built an MCP server that connects Claude and other AI agents to their media processing pipeline with 86 Robots for video, audio, image, and document processing. Setup in Claude Code requires one line: npx -y @transloadit/mcp-server stdio with TRANSLOADIT_KEY and TRANSLOADIT_SECRET environment variables.

OmniCoder-9B: 9B Parameter Coding Agent Fine-Tuned on 425K Agentic Trajectories
Tesslate released OmniCoder-9B, a 9-billion parameter coding agent model fine-tuned on Qwen3.5-9B's hybrid architecture. It was trained on 425,000+ curated agentic coding trajectories from Claude Opus 4.6, GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro.