
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@oneqode/pattern-store-mcp
Advanced tools
Pattern Store MCP for Cracked Jacked Claude - Stores and retrieves code patterns, conventions, and learnings
The Pattern Store MCP (Model Context Protocol) server stores and retrieves code patterns, conventions, and project-specific learnings for the Cracked Jacked Claude framework.
# Global installation
npm install -g @oneqode/pattern-store-mcp
# Or use via npx
npx @oneqode/pattern-store-mcp
Add to your .claude.json:
{
"mcpServers": {
"pattern-store": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@oneqode/pattern-store-mcp@latest"],
"description": "Pattern storage for code conventions and learnings"
}
}
}
Store a new code pattern or convention.
pattern_store.store_pattern({
name: "error-boundary-react",
category: "react",
language: "typescript",
pattern: "class ErrorBoundary extends React.Component<Props, State> {...}",
description: "React error boundary pattern for catching component errors",
tags: ["error-handling", "react", "components"],
quality_score: 9
})
Search for patterns by query, category, or language.
pattern_store.search_patterns({
query: "error handling",
category: "react",
min_quality: 7
})
Get a specific pattern by name.
pattern_store.get_pattern({
name: "error-boundary-react"
})
Update the quality score of a pattern based on usage experience.
pattern_store.update_quality({
name: "error-boundary-react",
quality_score: 10,
reason: "Works perfectly in production"
})
List all available pattern categories with statistics.
pattern_store.list_categories()
Patterns are stored in ~/.pattern-store/patterns.json as a JSON file for simplicity and portability.
# Install dependencies
npm install
# Build
npm run build
# Development mode
npm run dev
MIT © OneQode
FAQs
Pattern Store MCP for Cracked Jacked Claude - Stores and retrieves code patterns, conventions, and learnings
We found that @oneqode/pattern-store-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.