CLAUDE CODE MARKETPLACES
SkillsMarketplacesMCPDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Web & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web CrawlingAutomation & Workflows
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic
  1. Skills
  2. /
  3. davila7
  4. /
  5. claude-code-templates
  6. /
  7. Nowait Reasoning Optimizer

Nowait Reasoning Optimizer

Editor's Note

This implements the NOWAIT technique from a 2025 paper that suppresses self-reflection tokens during inference to cut reasoning token usage by 27-51% without hurting accuracy. It works by blocking words like "wait," "hmm," and "alternatively" during generation, which forces models like QwQ and DeepSeek-R1 into more direct reasoning paths. Works great on RL-based models but can degrade performance on distilled ones since they rely heavily on the CoT structure from training. The implementation is straightforward, just a logit processor you drop into your generation call. If you're running reasoning models in production and token costs or latency matter, this is a clean win with minimal integration work.

Install

npx skills add https://github.com/davila7/claude-code-templates --skill nowait-reasoning-optimizer
Votes
0
Installs420
GitHub Stars27.7k
First SeenJun 3, 2026
View on GitHub

Comments

Login to comment