원클릭으로
ironclaw-hackathon
Official skill for the NEAR Legion's IronClaw Hackathon series. Register your agent and submit your final entry for judging.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Official skill for the NEAR Legion's IronClaw Hackathon series. Register your agent and submit your final entry for judging.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | ironclaw-hackathon |
| version | 0.3.2 |
| description | Official skill for the NEAR Legion's IronClaw Hackathon series. Register your agent and submit your final entry for judging. |
| author | Julien Carbonnell (NEAR Legion Barcelona) |
| trunk | nova-submit |
| tags | ["hackathon","near-legion","ironclaw","competition","nova"] |
| activation | {"keywords":["hackathon","register","registration","submit","submission","compete","skill-a-thon","clawathon"],"patterns":["register.*(hackathon|competition|skill-a-thon|clawathon)","sign me up","(submit|send).*(entry|submission|project)","(register|enroll).*agent","ready for judging","compete in"],"tags":["hackathon","competition"],"max_context_tokens":3000} |
Official skill for the NEAR Legion IronClaw Hackathon. Two steps: register so staff can grant your agent access to the submission group, then submit your final entry, which is encrypted and uploaded to the hackathon's NOVA group for judging.
This skill is a branch of the nova-submit tool (its trunk). submit_final_entry calls the nova-submit tool to do the encryption and upload — that tool must be installed on the agent for submission to work.
register_competing_agent and submit_final_entry. Do nothing else.memory_read and memory_write.nova-submit. Do not use the http tool, the shell tool, or any other tool to perform the upload.nova-submit tool as a parameter.nova-submit tool returned a CID. If the tool returns an error, the participant is NOT submitted — tell them clearly.The hackathon collects submissions in a single NOVA group that the organizer owns. To upload into it, the participant's NOVA account must first be added as a member of that group — and only the organizer can do that. So there are two steps, in order:
register_competing_agent) — the participant gives their NOVA account ID. The skill records it locally AND prints a registration block in the chat. The participant must copy that block and send it to the hackathon staff (event Telegram) — that is how the organizer learns the participant's NOVA account ID and can grant group access. The skill itself cannot send anything to the organizer; the participant relays the block.submit_final_entry) — once access is granted, the participant provides their entry details and NOVA credentials, and the skill uploads the encrypted submission via the nova-submit tool.All submissions for this event go to one fixed NOVA group. The group ID is:
ironclaw-hackathon-260618
This is hardcoded for this event. A different city node running this skill changes only this value.
Records the participant's intent to compete and their NOVA account ID, then prints a registration block the participant must send to the hackathon staff (event Telegram) so the organizer can add their NOVA account to the submission group.
Parameters (ask for any not already clear from the conversation):
| Parameter | Required | Notes |
|---|---|---|
agent_id | yes | The participant's IronClaw agent ID or a short handle. Used as the registration record's filename. No whitespace, slashes, or quotes. |
participant_name | yes | Name or @handle for the leaderboard. |
nova_account_id | yes | The participant's NOVA account, e.g. alice.nova-sdk.near. This exact account is what gets added to the submission group, and it MUST be the same account used later in submit_final_entry. If the participant registers one account and submits with another, the upload will fail. |
Important to tell the participant: the nova_account_id they give here must be the same NOVA account they will submit with. Make this explicit.
Flow:
agent_id contains no whitespace, slashes, or quotes.memory_write to hackathon/registrations/{agent_id}.md with this content:# {participant_name} — {agent_id}
status: registered
registered_at_utc: {current UTC timestamp, ISO 8601}
nova_account_id: {nova_account_id}
=== IRONCLAW HACKATHON REGISTRATION === participant_name: {participant_name} agent_id: {agent_id} nova_account_id: {nova_account_id}
The NOVA account ID is not sensitive, so writing it to memory and printing it in chat is fine. Do not ask for or store the NOVA API key here — that is only needed at submission time.
Encrypts the participant's final entry and uploads it to the hackathon's NOVA group by calling the nova-submit tool.
Preconditions:
hackathon/registrations/{agent_id}.md exists). If not, ask them to run register_competing_agent first.ironclaw-hackathon-260618 group by the organizer. The skill cannot check this; if the upload fails with an authorization error, this is the most likely cause — tell the participant to confirm with staff that their access was granted.Parameters:
| Parameter | Required | Notes |
|---|---|---|
nova_account_id | yes | The participant's NOVA account. Must match the one used at registration. |
nova_api_key | yes | The participant's NOVA API key. A SECRET — see the handling note below. |
title | yes | Short project title. |
workflow_description | yes | One sentence describing the secure AI workflow. 280 characters maximum. |
demo_url | yes | A link to a pre-recorded demo video of about 5 minutes. Mandatory. Must be an https:// URL, and must be viewable publicly without a login — judges will not request access. |
github_repo | no | Optional. A public repository URL if the team has one. |
skills_list | no | Optional. Comma-separated names of custom skills or tools the team built. |
demo_notes | no | Optional. Anything judges should know before watching the demo or testing the agent. |
Validation before submitting:
workflow_description must be 280 characters or fewer. If longer, ask the participant to shorten it.demo_url must be present and start with https://. If missing, ask for it — it is mandatory. Remind the participant it must be publicly viewable without login.github_repo, if provided, must start with https://. If absent, that is fine — leave it blank.API KEY HANDLING — read carefully:
nova_api_key is a secret. Do NOT write it to memory. Do NOT repeat it back in chat. Do NOT include it in any confirmation message.api_key parameter of the nova-submit tool call.Flow:
# {participant_name} — {agent_id}
submitted_at_utc: {current UTC timestamp, ISO 8601}
nova_account: {nova_account_id}
## Project
title: {title}
workflow_description: {workflow_description}
## Demo
demo_url: {demo_url}
## Links
github_repo: {github_repo, or "—" if not provided}
## Skills and tools
skills_list: {skills_list, or "—" if not provided}
## Notes
{demo_notes, or "—" if not provided}
Read this back to the participant for confirmation before uploading. This is the last step before judging — confirm the title, demo URL, and description are correct.
Call the nova-submit tool with these parameters:
account_id: the participant's nova_account_idapi_key: the participant's nova_api_keygroup_id: ironclaw-hackathon-260618filename: {agent_id}-submission.mdfile_content: the Markdown submission content built in step 2Read the tool's result:
cid. Tell the participant their submission is uploaded, show them the CID as proof, and give the rotate-your-key reminder. Optionally update hackathon/registrations/{agent_id}.md to set status: submitted (NOVA account ID only — never the key).error. The participant is NOT submitted. Show them the error. If it mentions authorization or membership, tell them their NOVA account has not yet been added to the submission group and they should contact staff. Do not claim success.nova-submit tool is not installed, submit_final_entry cannot work. Tell the participant the nova-submit tool must be installed on their agent first, and to follow the hackathon setup guide.memory_write fails during registration, surface the error and suggest one retry. If it fails again, the participant should flag staff.judge.mjs tool, which reads the NOVA group directly. Participants do not need a list method.nova-submit tool's job. This skill formats the entry and calls the tool.