Replies: 6 comments 10 replies
-
|
So you are not using /speckit.implement? |
Beta Was this translation helpful? Give feedback.
-
|
I'd be interested to know why you decided to use Superpowers for implementation rather than the spec-kit implementation?! |
Beta Was this translation helpful? Give feedback.
-
|
You might be interested in https://github.com/rhuss/cc-sdd , which adds on top of spec-kit and introduces superpowers as traits. Happy to help if there are any questions. |
Beta Was this translation helpful? Give feedback.
-
|
@rhuss Would you consider listing cc-sdd in a new section called "Community Friends" in the main Spec Kit README? And for folks asking about what constitutes a Community Friend? You integrate Spec Kit into something larger. You visualize Spec Kit stuff. You use Spec Kit's extensions to deliver another style flow. Etc. |
Beta Was this translation helpful? Give feedback.
-
|
Great, I’m currently using the same workflow as you. |
Beta Was this translation helpful? Give feedback.
-
|
Hit this exact wall — constitution drift during execution, and losing the thread when a session dies mid-task — and went a different direction than a plugin/wrapper, in case the "keep both upstreams stock" angle helps anyone here. @rhuss's cc-sdd traits and Superspec are great if you want batteries included. I wanted the opposite: change nothing about Spec Kit or Superpowers, just add a thin seam between them so either side can be upgraded independently. Three small things, no new commands grafted onto speckit:
Two deliberate choices: explicit invocation only (no auto-trigger — the dev.to comparison article flags how auto-trigger derails sessions), and the same contract peers across Claude Code and Codex, so you can plan in one and implement in the other. Division of labor stays boring: Spec Kit owns WHAT, Superpowers owns HOW, tasks.md is the contract. Not trying to win against cc-sdd / Superspec — different taste. Thick opinionated harness → those fit. Keep stock Spec Kit + stock Superpowers and just add a safety seam → this might. Honest full comparison table (incl. cc-sdd, Superspec, SuperB, Comet) + install steps: https://github.com/lihan3238/speckit-superpowers-bridge |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I'm currently using Spec-Kit together with Superpowers in my workflow:
However, I'm running into a few issues:
Lack of awareness of
constitution.mdDuring execution, Superpowers doesn't seem to take
constitution.mdinto account. This leads to inconsistencies between the defined rules/principles and the actual implementation.Task continuity between sessions
When a session ends before the work is completed, Superpowers doesn't know how to resume. It cannot easily rediscover or continue the tasks that were originally generated by Spec-Kit.
I'm wondering if anyone has experience dealing with these problems, or has suggestions on:
constitution.mdduring executionThanks in advance for any guidance.
Beta Was this translation helpful? Give feedback.
All reactions