Claude Code Commands — 43+ Slash Commands Directory (2026)
Head of AI Research

🔍
⭐ Popular
🕑 Newest
🔤 A – Z
43 commands found
Sorted by Popular
No results found
Try a different search term or category filter.
Frequently Asked Questions about Claude Code Commands
{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “What are Claude Code Commands?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Commands are custom slash commands you can add to Claude Code CLI. They provide quick, standardized access to specific workflows like running tests, generating docs, deploying code, or analyzing code quality.”
}
},
{
“@type”: “Question”,
“name”: “How do I use a command after installing it?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Once installed, type the command’s slash shortcut in your Claude Code session. For example, if you install a test command, you might use /test to run your project’s test suite with intelligent configuration.”
}
},
{
“@type”: “Question”,
“name”: “Can I customize existing commands?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Yes, most commands are configurable. You can modify their behavior through settings files or by editing the command’s source code directly. Community commands are open source and designed to be customizable.”
}
},
{
“@type”: “Question”,
“name”: “Do commands work in all operating systems?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Commands in this directory are tested on macOS, Linux, and Windows. Some commands that rely on system-specific tools may have platform requirements, which are noted in their descriptions.”
}
},
{
“@type”: “Question”,
“name”: “How do commands differ from shell aliases?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Commands are AI-aware — they understand your project context, can make intelligent decisions, and produce structured output. A shell alias runs a fixed command, while a Claude Code command adapts to your specific project and situation.”
}
},
{
“@type”: “Question”,
“name”: “Can I chain multiple commands together?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Yes, commands can be composed into workflows. You can create meta-commands that call multiple sub-commands in sequence, or use agents to orchestrate complex multi-command workflows.”
}
}
]
}
(function() {
var activeCat = ‘all’;
window.ecoFilter = function() {
var query = document.getElementById(‘eco-search’).value.toLowerCase().trim();
var cards = document.querySelectorAll(‘#eco-grid > div[data-name]’);
var visible = 0;
cards.forEach(function(card) {
var name = (card.getAttribute(‘data-name’) || ”).toLowerCase();
var desc = (card.getAttribute(‘data-desc’) || ”).toLowerCase();
var cat = (card.getAttribute(‘data-cat’) || ”).toLowerCase();
var matchSearch = !query || name.indexOf(query) !== -1 || desc.indexOf(query) !== -1;
var matchCat = activeCat === ‘all’ || cat === activeCat.toLowerCase();
if (matchSearch && matchCat) {
card.style.display = ”;
visible++;
} else {
card.style.display = ‘none’;
}
});
document.getElementById(‘eco-count-num’).textContent = visible;
document.getElementById(‘eco-no-results’).style.display = visible === 0 ? ‘block’ : ‘none’;
};
window.ecoFilterCat = function(cat) {
activeCat = cat;
var pills = document.querySelectorAll(‘.eco-pill’);
pills.forEach(function(p) {
if (p.getAttribute(‘data-cat’) === cat) {
p.style.background = ‘#FF6804’;
p.style.borderColor = ‘#FF6804’;
p.style.color = ‘#ffffff’;
} else {
p.style.background = ‘transparent’;
p.style.borderColor = ‘#2a2a4a’;
p.style.color = ‘#a0a0b0’;
}
});
ecoFilter();
};
window.ecoSort = function() {
var sel = document.getElementById(‘eco-sort’).value;
var grid = document.getElementById(‘eco-grid’);
var cards = Array.prototype.slice.call(grid.querySelectorAll(‘:scope > div[data-name]’));
var labels = { popular: ‘Popular’, newest: ‘Newest’, az: ‘A u2013 Z’ };
document.getElementById(‘eco-sort-label’).textContent = labels[sel] || sel;
cards.sort(function(a, b) {
if (sel === ‘az’) {
return (a.getAttribute(‘data-name’) || ”).localeCompare(b.getAttribute(‘data-name’) || ”);
} else if (sel === ‘newest’) {
return parseInt(b.getAttribute(‘data-date’) || ‘0’) – parseInt(a.getAttribute(‘data-date’) || ‘0’);
} else {
return parseInt(b.getAttribute(‘data-stars’) || ‘0’) – parseInt(a.getAttribute(‘data-stars’) || ‘0’);
}
});
cards.forEach(function(c) { grid.appendChild(c); });
};
window.ecoCopy = function(text, btn) {
if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(text).then(function() {
var orig = btn.textContent;
btn.textContent = ‘Copied!’;
btn.style.background = ‘#00d4aa’;
setTimeout(function() { btn.textContent = orig; btn.style.background = ‘#FF6804’; }, 1500);
});
} else {
var ta = document.createElement(‘textarea’);
ta.value = text;
ta.style.position = ‘fixed’;
ta.style.opacity = ‘0’;
document.body.appendChild(ta);
ta.select();
document.execCommand(‘copy’);
document.body.removeChild(ta);
var orig = btn.textContent;
btn.textContent = ‘Copied!’;
btn.style.background = ‘#00d4aa’;
setTimeout(function() { btn.textContent = orig; btn.style.background = ‘#FF6804’; }, 1500);
}
};
})();
Explore the Full Claude Code Ecosystem
Recommended AI Tools
played.fm
Sell your music and keep 100%: played.fm is a direct-to-fan store + sync marketplace with 0% commission, no gatekeepers, and no bans — a strong fit for AI musicians.
View Review →OpenCode
The open-source AI coding agent: terminal-first TUI, 75+ model providers, LSP context, subagents, and privacy-first design. Free software, ~180K GitHub stars.
View Review →Exa
The neural web search API for AI agents: embeddings-based retrieval, cited highlights, sub-180ms latency, and an MCP server. 20,000 free requests/month.
View Review →Google Antigravity
Google's agent-first IDE: run a fleet of AI agents from a Manager surface, on Gemini 3 Pro, Claude Sonnet 4.5, or OpenAI models. Free in public preview.
View Review →