This commit is contained in:
2026-04-12 01:06:31 +07:00
commit 10d660cbcb
1066 changed files with 228596 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{
"name": "sequential-thinking-skill",
"version": "1.0.0",
"description": "Sequential thinking methodology with thought processing scripts",
"main": "scripts/process-thought.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"sequential-thinking",
"problem-solving",
"agent-skill"
],
"author": "Converted from Anthropic MCP Server",
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
]
}
}