ast-editor
A robust, language-agnostic Model Context Protocol (MCP) server that provides AI coding agents with the ability to edit files surgically via Abstract Syntax Trees (AST) instead of relying on token-heavy, brittle search-and-replace or diff operations.
README
agent-skills
A personal collection of Claude Code agent skills and MCP servers, can be used with other agents too.
Available Skills
| Skill | Command | Description |
|---|---|---|
| git-workflow | /git-workflow |
Guided Git workflow: branching, commits, PRs, and conflict resolution |
| code-review | /code-review |
Thorough code review covering correctness, security, performance, and style |
| english-humanizer | /humanize |
Humanize the text |
| grill-master | /grill, /grill-master, /grill-me |
Get relentlessly interviewed about a topic, plan or design until every branch of the decision tree is resolved. |
| spec-writer | /spec, /spec-writer |
Create a PRD through user interview, codebase exploration, and module design, then submit as a GitHub issue. Use when user wants to write a PRD, create a product requirements document, or plan a new feature. |
| slice-the-spec | /slice, /slice-the-spec |
Break a PRD into independently-grabbable GitHub issues using vertical slices. |
| incremental-tdd | /tdd, /incremental-tdd |
Test-driven development with a red-green-refactor loop. Builds features or fixes bugs one vertical slice at a time. |
| deep-codebase-audit | /deep-codebase-audit, /deep-audit, /codebase-audit |
Explore a codebase the way an AI agent experiences it: by reading files, following references, and trying to understand how to make safe changes. It surfaces architectural friction (shallow modules, tangled dependencies, missing seams) and suggests deep-module improvements that make the codebase easier to test, reason about, and modify with AI. |
| spec-to-plan | /spec-plan, /spec-to-plan |
Turn a PRD into a multi-phase implementation plan using tracer-bullet vertical slices. |
| domain-glossary | /domain-glossary, /glossary |
Turn an ongoing conversation into a DDD-style ubiquitous language document. It scans for domain terms, resolves ambiguities, proposes canonical names, and writes a living glossary to DOMAIN_GLOSSARY.md in the working directory. |
| script-writer | /script-writer, /write-a-script |
Script-writer that drafts presentations, essays, emails, and slides using only the cognitive and persuasive heuristics from Patrick Winston's "How to Speak" lecture. |
MCP Servers
| Server | Description |
|---|---|
| ast-editor | AST-targeted code editing MCP server with 32 surgical tools: functions, classes, methods, fields, parameters, imports, comments, docstrings, dict/list editing (JSON/YAML/TOML config AND Python module-level literals), plus AST reader tools (read_symbol, read_interface, read_imports) for 10-20x input token savings. Built on tree-sitter. Supports 11 languages: Python, JavaScript, TypeScript, C, C++, Ruby, Go, Java, JSON, YAML, and TOML. |
| notebook-editor | Jupyter notebook editing MCP server with 22 cell-level tools: cell structure (add/delete/move/split/merge), content editing (replace/prepend/append), outputs & metadata management, notebook-wide symbol discovery, and kernel execution (execute_cell, execute_all_cells, restart/interrupt/shutdown kernel). Complements ast-editor — use this for .ipynb files, ast-editor for everything else. |
Skills installation via skills.sh
Install multiple skills at once:
npx skills@latest add kambleakash0/agent-skills
or, install individual skills:
npx skills@latest add kambleakash0/agent-skills/skills/git-workflow
npx skills@latest add kambleakash0/agent-skills/skills/code-review
npx skills@latest add kambleakash0/agent-skills/skills/english-humanizer
npx skills@latest add kambleakash0/agent-skills/skills/grill-master
npx skills@latest add kambleakash0/agent-skills/skills/spec-writer
npx skills@latest add kambleakash0/agent-skills/skills/slice-the-spec
npx skills@latest add kambleakash0/agent-skills/skills/incremental-tdd
npx skills@latest add kambleakash0/agent-skills/skills/deep-codebase-audit
npx skills@latest add kambleakash0/agent-skills/skills/spec-to-plan
npx skills@latest add kambleakash0/agent-skills/skills/domain-glossary
npx skills@latest add kambleakash0/agent-skills/skills/script-writer
Skill Format
Each skill is a Markdown file with a YAML front-matter block followed by the prompt body, following the skills.sh spec:
---
name: skill-name
description: >
What the skill does and when to trigger it.
TRIGGER when the user writes /skill-name.
metadata:
author: kambleakash0
version: x.y.z
triggers:
- /trigger-1
- /trigger-2
- ...
---
Skill prompt body goes here…
Adding New Skills
- Create a new folder in the root of
skills/. The folder name must strictly match your skill'snamein the YAML frontmatter. - Add a
SKILL.mdfile in the root of the new folder. Ensure it contains aname(max 64 chars) anddescription(non-empty, max 1024 chars) inside the YAML frontmatter. - If needed, add a
resources/folder in the root of the new folder and populate it with the necessary files. - Add a row to the Available Skills table in this README.
- Test it locally by placing the folder from
skills/in~/.claude/skills/or~/.agents/skills/.
MCP Servers' installation
Refer to their respective READMEs for installation instructions.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.