/submit-to-sui-overflow
Submit a project to Sui Overflow on deepsurge.xyz. Use when the user wants to submit to Overflow or prepare a hackathon submission.
$ npx -y skills add pivyme/suiperpower --skill submit-to-sui-overflow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/submit-to-sui-overflow
Context preview
The summary Claude sees to decide when to auto-load this skill.
Submit a project to Sui Overflow on deepsurge.xyz. Use when the user wants to submit to Overflow or prepare a hackathon submission.
SKILL.md
submit-to-sui-overflow.SKILL.mdname: submit-to-sui-overflow
description: Submit a project to Sui Overflow on deepsurge.xyz. Use when the user wants to submit to Overflow or prepare a hackathon submission.
Preamble (run first)
# Suiperpower telemetry. Routes through the CLI so projects.json + Convex stay in sync.
# Silent on failure so the skill never blocks. Opt out: SUIPERPOWER_TELEMETRY=off.
#
# AGENT NOTE: when this skill finishes, run the matching completion command:
# suiperpower track submit-to-sui-overflow ship completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track submit-to-sui-overflow ship started >/dev/null 2>&1 &
true
If `TEL_PROMPTED` is `no`, before doing real work, ask the user:
> Help suiperpower get better. We track which skills get used and how long they take. No code, no file paths, no PII. Change anytime in `~/.suiperpower/config.json`. > > A) Sure, anonymous > B) No thanks
Write the answer to `~/.suiperpower/config.json` `telemetryTier` field and create `~/.suiperpower/.telemetry-prompted`. Then continue.
What this skill does
Runs the full Sui Overflow submission flow, following `skills/data/guides/deepsurge-submission.md`. The skill prepares everything the user needs to paste into the deepsurge.xyz form, validates assets to spec, generates a tight demo video script, and runs a day-of preflight gate that catches the obvious last-minute mistakes.
The skill writes everything captured to `.suiperpower/submission-context.md` per the phase-handoff spec. Submission stays append-only so re-runs can refine without losing prior state.
When to use it
- After the package is deployed and `track-pick.md` has named a primary track.
- When the user wants to submit to Sui Overflow and asks what is left.
- For the day-of submission window when preflight matters.
When NOT to use it
- Before the project deploys. Run `deploy-to-testnet` or `deploy-to-mainnet` first.
- Without a track pick. Run `pick-my-sui-track` first; the form needs a primary track.
- For non-Overflow submissions. Other Sui hackathons may use different forms; this skill targets deepsurge.xyz.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
Inputs
- `.suiperpower/idea-context.md`: chosen idea, target user, one-liner.
- `.suiperpower/deploy-context.md`: package id, env (mainnet or testnet), modules.
- `.suiperpower/track-pick.md`: primary track, optional secondary.
- `.suiperpower/business-model.md` and `.suiperpower/retention-loop.md`, used to draft the project description.
- The team roster (names, roles).
- Asset files: a 1280x1280 logo, a 1920x1080 cover image, a demo video link or file.
- Optional: a roast and product-review pass so the form copy is sharper.
Outputs
A `.suiperpower/submission-context.md` entry following the canonical headers from `skills/data/specs/phase-handoff.md`:
## Submission, <timestamp>
### Hackathon
- name: Sui Overflow 2026
- portal: https://deepsurge.xyz
- track primary: <sponsor or thematic>
- track secondary: <sponsor or thematic | none>
- submission deadline: <yyyy-mm-dd HH:MM TZ>
### Project copy
- name: <project name>
- one-liner: <one sentence>
- description: <one paragraph, 80-150 words>
- problem: <one paragraph>
- solution: <one paragraph>
- why-Sui: <one paragraph naming the Sui primitives load-bearing for the project>
### Artifacts
- package id (mainnet or testnet): <0x...>
- demo URL: <https://...>
- repo URL: <https://...>
- video URL: <https://...>
- pitch deck URL: <https://...>
- logo (1280x1280, PNG, transparent OK): <path or URL>
- cover image (1920x1080, PNG): <path or URL>
### Demo video
- length: <60-180 seconds>
- script: <inline or path to script>
### Team
- members: <list of name, role, contact>
### Day-of preflight
- form fields filled: <yes | no>
- assets uploaded: <yes | no>
- demo URL reachable: <yes | no>
- video URL reachable: <yes | no>
- package id verified on the right env: <yes | no>
- pitch deck readable: <yes | no>
- track aligned with deepest sponsor integration: <yes | no>
- final submitted: <yes | no>
Workflow
1. **Read context**
- Verify `idea-context.md`, `deploy-context.md`, `track-pick.md` exist. If any are missing, route to the relevant skill.
- Read `business-model.md`, `retention-loop.md`, `product-review.md`, `roast.md` if they exist; the form copy will be sharper.
2. **Draft project copy**
- Name and one-liner: pull from `idea-context.md`. Sharpen for the form: under 80 characters.
- Description: one paragraph, 80 to 150 words. Lead with the problem, then the solution, then the user.
- Problem: one paragraph, concrete and named.
- Solution: one paragraph, concrete. Mention Sui primitives only when load-bearing.
- Why Sui: one paragraph naming the primitives (objects, capabilities, PTBs, sponsor protocols) the project genuinely depends on. Refuse to claim Sui is load-bearing if `pick-my-sui-track` says otherwise.
3. **Validate assets**
- Logo: confirm 1280x1280, PNG. If the user provides a different size, either auto-resize (with consent) or block the submission until corrected.
- Cover: confirm 1920x1080 PNG.
- Demo URL: HEAD or HTTP GET to confirm a 200.
- Video URL: confirm a 200 and an embeddable target.
- Pitch deck URL: confirm a 200.
4. **Demo video script**
- 60 to 180 seconds. Structure:
- 0 to 10s: hook, the problem in one sentence.
- 10 to 30s: the solution, with a working demo cut.
- 30 to 90s: walk the load-bearing flow showing the sponsor integration in action.
- 90 to 120s: the team in one beat. Optional.
- 120 to 180s: the ask, where to find more.
- See `references/video-script-template.md`.
5. **Form copy**
- Generate the exact text to paste into each deepsurge.xyz field per `skills/data/guides/deepsurge-submission.md`. The skill does not auto-submit; it produces text.
Read more
name: submit-to-sui-overflow description: Submit a project to Sui Overflow on deepsurge.xyz. Use when the user wants to submit to Overflow or prepare a hackathon submission.
Preamble (run first)
# Suiperpower telemetry. Routes through the CLI so projects.json + Convex stay in sync. # Silent on failure so the skill never blocks. Opt out: SUIPERPOWER_TELEMETRY=off. # # AGENT NOTE: when this skill finishes, run the matching completion command: # suiperpower track submit-to-sui-overflow ship completed # Or use "failed" / "aborted" if it ended that way. command -v suiperpower >/dev/null 2>&1 && suiperpower track submit-to-sui-overflow ship started >/dev/null 2>&1 & true
If `TEL_PROMPTED` is `no`, before doing real work, ask the user:
> Help suiperpower get better. We track which skills get used and how long they take. No code, no file paths, no PII. Change anytime in `~/.suiperpower/config.json`. > > A) Sure, anonymous > B) No thanks
Write the answer to `~/.suiperpower/config.json` `telemetryTier` field and create `~/.suiperpower/.telemetry-prompted`. Then continue.
What this skill does
Runs the full Sui Overflow submission flow, following `skills/data/guides/deepsurge-submission.md`. The skill prepares everything the user needs to paste into the deepsurge.xyz form, validates assets to spec, generates a tight demo video script, and runs a day-of preflight gate that catches the obvious last-minute mistakes.
The skill writes everything captured to `.suiperpower/submission-context.md` per the phase-handoff spec. Submission stays append-only so re-runs can refine without losing prior state.
When to use it
- After the package is deployed and `track-pick.md` has named a primary track.
- When the user wants to submit to Sui Overflow and asks what is left.
- For the day-of submission window when preflight matters.
When NOT to use it
- Before the project deploys. Run `deploy-to-testnet` or `deploy-to-mainnet` first.
- Without a track pick. Run `pick-my-sui-track` first; the form needs a primary track.
- For non-Overflow submissions. Other Sui hackathons may use different forms; this skill targets deepsurge.xyz.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
Inputs
- `.suiperpower/idea-context.md`: chosen idea, target user, one-liner.
- `.suiperpower/deploy-context.md`: package id, env (mainnet or testnet), modules.
- `.suiperpower/track-pick.md`: primary track, optional secondary.
- `.suiperpower/business-model.md` and `.suiperpower/retention-loop.md`, used to draft the project description.
- The team roster (names, roles).
- Asset files: a 1280x1280 logo, a 1920x1080 cover image, a demo video link or file.
- Optional: a roast and product-review pass so the form copy is sharper.
Outputs
A `.suiperpower/submission-context.md` entry following the canonical headers from `skills/data/specs/phase-handoff.md`:
## Submission, <timestamp> ### Hackathon - name: Sui Overflow 2026 - portal: https://deepsurge.xyz - track primary: <sponsor or thematic> - track secondary: <sponsor or thematic | none> - submission deadline: <yyyy-mm-dd HH:MM TZ> ### Project copy - name: <project name> - one-liner: <one sentence> - description: <one paragraph, 80-150 words> - problem: <one paragraph> - solution: <one paragraph> - why-Sui: <one paragraph naming the Sui primitives load-bearing for the project> ### Artifacts - package id (mainnet or testnet): <0x...> - demo URL: <https://...> - repo URL: <https://...> - video URL: <https://...> - pitch deck URL: <https://...> - logo (1280x1280, PNG, transparent OK): <path or URL> - cover image (1920x1080, PNG): <path or URL> ### Demo video - length: <60-180 seconds> - script: <inline or path to script> ### Team - members: <list of name, role, contact> ### Day-of preflight - form fields filled: <yes | no> - assets uploaded: <yes | no> - demo URL reachable: <yes | no> - video URL reachable: <yes | no> - package id verified on the right env: <yes | no> - pitch deck readable: <yes | no> - track aligned with deepest sponsor integration: <yes | no> - final submitted: <yes | no>
Workflow
1. **Read context**
- Verify `idea-context.md`, `deploy-context.md`, `track-pick.md` exist. If any are missing, route to the relevant skill.
- Read `business-model.md`, `retention-loop.md`, `product-review.md`, `roast.md` if they exist; the form copy will be sharper.
2. **Draft project copy**
- Name and one-liner: pull from `idea-context.md`. Sharpen for the form: under 80 characters.
- Description: one paragraph, 80 to 150 words. Lead with the problem, then the solution, then the user.
- Problem: one paragraph, concrete and named.
- Solution: one paragraph, concrete. Mention Sui primitives only when load-bearing.
- Why Sui: one paragraph naming the primitives (objects, capabilities, PTBs, sponsor protocols) the project genuinely depends on. Refuse to claim Sui is load-bearing if `pick-my-sui-track` says otherwise.
3. **Validate assets**
- Logo: confirm 1280x1280, PNG. If the user provides a different size, either auto-resize (with consent) or block the submission until corrected.
- Cover: confirm 1920x1080 PNG.
- Demo URL: HEAD or HTTP GET to confirm a 200.
- Video URL: confirm a 200 and an embeddable target.
- Pitch deck URL: confirm a 200.
4. **Demo video script**
- 60 to 180 seconds. Structure:
- 0 to 10s: hook, the problem in one sentence.
- 10 to 30s: the solution, with a working demo cut.
- 30 to 90s: walk the load-bearing flow showing the sponsor integration in action.
- 90 to 120s: the team in one beat. Optional.
- 120 to 180s: the ask, where to find more.
- See `references/video-script-template.md`.
5. **Form copy**
- Generate the exact text to paste into each deepsurge.xyz field per `skills/data/guides/deepsurge-submission.md`. The skill does not auto-submit; it produces text.
Showing the first part of this file.
Build something meaningful, on Sui. A superpower for AI coding agents to ship real products on Sui. Your AI coding agent has never written Move before. Suiperpower fixes that.
Repo: pivyme/suiperpower
Other skills on suiperpower.
- /brand-design
Pick a brand name, color palette, or typography for a Sui product. Use when the user wants to name or brand a Sui project.
Open skill - /build-ai-agent
Build an AI agent that signs Sui transactions or runs onchain actions. Use when the user wants an AI agent on Sui.
Open skill - /build-data-pipeline
Build a Sui data indexer or analytics pipeline. Use when the user wants to index Sui events, build a pipeline, or query Sui RPC data.
Open skill - /build-mobile-sui
Build a mobile Sui app with React Native or the Sui Mobile SDK. Use when the user wants iOS, Android, or mobile Sui flows.
Open skill - /build-with-claude
Pair with a coding agent to build a Sui MVP step by step. Use when the user wants to build the MVP iteratively with an agent.
Open skill - /build-with-move
Author Sui Move modules and packages with a senior Move dev as your pair. Use when the user wants to write, build, author, add, or scaffold Move code, smart contracts, or Sui programs at the module or function level, in any phrasing.
Open skill

