A collection of custom skills for Claude Code.
Guide users through brainstorming, specifying, designing, and planning new product projects using Socratic method, provocations, and enforced articulation.
Trigger phrases: "let's brainstorm", "new project", "product spec", "design a product", "plan a project", "spec out", "architect this"
cd ~/.claude/skills
git clone git@github.com:nixolas1/skills.gitThen in your ~/.claude/skills.json, add:
{
"skills": [
{
"path": "skills/product-architect"
}
]
}cd ~/.claude/skills
git submodule add git@github.com:nixolas1/skills.git shared-skillsThen in your ~/.claude/skills.json, add:
{
"skills": [
{
"path": "shared-skills/product-architect"
}
]
}If ~/.claude/skills is already a git repository, you can add this repo as a submodule:
cd ~/.claude/skills
git submodule add git@github.com:nixolas1/skills.git nixolas1-skillsThen reference in skills.json:
{
"skills": [
{
"path": "nixolas1-skills/product-architect"
}
]
}Once installed, you can invoke skills by using their trigger phrases in conversation with Claude Code, or by using /skill-name commands.
For example:
/product-architector "let's brainstorm a new app idea"
Feel free to open issues or submit PRs with improvements!
MIT