Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 545 Bytes

File metadata and controls

36 lines (30 loc) · 545 Bytes

Release Checklist

1. Push to GitHub

git push -u origin main

2. Publish to npm

npm publish --access public

3. Create GitHub Release

git tag v1.0.0
git push origin v1.0.0

Then go to: https://github.com/haasonsaas/deliberate-reasoning-engine/releases/new

4. Test Installation

npm install -g deliberate-reasoning-engine

5. Update Claude Desktop Config

{
  "mcpServers": {
    "dre": {
      "command": "npx",
      "args": ["deliberate-reasoning-engine"]
    }
  }
}