Finalize Zip Deliverable logo

Finalize Zip Deliverable

OrganizationPopular
HKUDS
finalize-zip-deliverable

Ensures codebase deliverables are properly archived into a ZIP file before marking task complete

Overview

PublisherHKUDS
RepositoryOpenSpace
Skill namefinalize-zip-deliverable
Stars
7.7K
Forks
918
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by HKUDS on GitHub. Read the source before you install it.

Installation

Install the Finalize Zip Deliverable AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/HKUDS/OpenSpace.git /tmp/OpenSpace
mkdir -p .claude/skills
cp -r /tmp/OpenSpace/benchmarks/gdpval/skills/finalize-zip-deliverable .claude/skills/finalize-zip-deliverable
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Finalize Zip Deliverable in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Finalize Zip Deliverable on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Finalize Zip Deliverable is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Finalize ZIP Deliverable

CRITICAL: This skill defines a MANDATORY workflow that MUST be executed before any task can be marked complete. Task completion is BLOCKED until ZIP verification passes.

Agents often assume that creating the project directory and files constitutes task completion. However, many tasks require a single downloadable artifact (ZIP file) for delivery. You are forbidden from declaring task completion until the ZIP artifact is created and verified.

ITERATION-AWARE PRIORITY: If the agent's iteration count approaches the task limit (e.g., iteration 25 of 30), ZIP creation MUST be elevated to highest priority. Do not continue adding features or refining code—execute the ZIP command immediately with whatever files exist.

Early Warning System

TRIGGER CONDITION: When iteration count reaches 25/30 (or 80% of any iteration limit), activate the following protocol:

  1. Immediately halt any non-essential code generation or refinement.
  2. Assess current state: List all files currently in the project directory.
  3. Execute minimum viable ZIP: Package whatever exists, even if incomplete.
  4. Document the fallback: Note in completion summary that ZIP was created as fallback due to iteration constraints.

RATIONALE: A partial ZIP deliverable is ALWAYS preferable to zero deliverable. Never exhaust iterations without creating the required artifact.

Minimum Viable ZIP Fallback

When triggered by the early warning system, execute this fallback procedure:

bash
# Create ZIP with whatever files currently exist
zip -r project_fallback.zip ./project/ 2>/dev/null || zip -r project_fallback.zip ./*

# Verify creation succeeded
ls -lh project_fallback.zip

Acceptable fallback scenarios:

  • ZIP contains partial codebase (better than nothing)
  • ZIP contains only configuration files
  • ZIP contains even a single source file

Unacceptable outcome: No ZIP file created due to iteration exhaustion.

Workflow Steps

1. Verify Project Completeness

0. Monitor Iteration Count (ONGOING)

Throughout task execution, track your iteration count relative to the task limit.

  • Normal operation (iterations 1-24 of 30): Follow standard workflow, building codebase systematically.
  • Warning zone (iterations 25-27 of 30): Begin preparing ZIP command; ensure project directory exists.
  • Critical zone (iterations 28-30 of 30): ZIP creation is the ONLY remaining task. Execute minimum viable ZIP fallback if necessary.

Before archiving, confirm that all intended source code, configuration files, and assets exist within the project directory.

  • Check that the root project directory exists.
  • Verify critical files (e.g., package.json, README.md, source files) are present.
  • Ensure no build artifacts or temporary files unintended for delivery are included (unless specified).

2. Execute Archive Command

Run the compression command explicitly as a dedicated action. Do not bundle this step with code generation.

bash
zip -r <output_filename>.zip <project_directory>/

Example:

bash
zip -r project.zip ./project

3. Verify Artifact Creation

Confirm the ZIP file was successfully created and is not empty.

  • Check file existence: ls -lh <output_filename>.zip
  • Check file size: Ensure the size is greater than 0 bytes.
  • Optionally inspect contents: unzip -l <output_filename>.zip

4. Declare Completion

4. Mandatory Pre-Completion Checklist (BLOCKING)

BEFORE declaring task complete, you MUST verify all items below. Task completion is BLOCKED until this checklist passes:

  • All required source code and configuration files exist in the project directory ITERATION STATUS CHECK: If approaching iteration limit (≥25/30), execute ZIP fallback immediately regardless of project completeness.

  • All required source code and configuration files exist in the project directory (OR fallback triggered due to iteration limit)

  • zip -r <output_filename>.zip <project_directory>/ command has been executed

  • If in fallback mode, ZIP filename includes fallback suffix for clarity (e.g., project_fallback.zip)

  • ZIP file exists at the expected path (verify with ls -lh <output_filename>.zip)

  • ZIP file size is greater than 0 bytes

  • ZIP contents have been inspected (optional but recommended: unzip -l <output_filename>.zip)

COMPLETION RULE: The zip command MUST be executed as the FINAL step before any <COMPLETE> declaration. Never declare completion after file generation without first creating and verifying the ZIP artifact.

ITERATION OVERRIDE RULE: If iteration count ≥25/30, the ZIP command becomes the IMMEDIATE next action, superseding all other pending work.

FAILURE CONSEQUENCE: Declaring task complete without ZIP verification = task failure. Directory creation alone does NOT equal deliverable completion. CRITICAL FAILURE: Exhausting all iterations without ZIP creation = complete task failure regardless of code quality.

Common Pitfalls

  • Assuming Completion: Stopping after writing the last source file without packaging.
  • Wrong Path: Zipping the parent directory instead of the project directory, or vice versa.
  • Missing Files: Hidden files (e.g., .env, .gitignore) may need explicit inclusion depending on requirements.
  • Tool Availability: Ensure the zip utility is available in the execution environment. If not, install it or use an alternative (e.g., tar).
  • Iteration Exhaustion: Failing to monitor iteration count and running out of budget before ZIP creation.

Checklist

  • Project directory contains all required files.
  • Iteration count checked; if ≥25/30, fallback ZIP executed immediately.
  • zip command executed successfully.
  • ZIP file exists and has non-zero size.
  • Task status updated to complete.

Frequently asked questions

What does the Finalize Zip Deliverable AI skill do?

Ensures codebase deliverables are properly archived into a ZIP file before marking task complete

Why use Finalize Zip Deliverable on TypingMind?

Because you install it once and use it with any model. Finalize Zip Deliverable is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Finalize Zip Deliverable in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/HKUDS/OpenSpace/tree/main/benchmarks/gdpval/skills/finalize-zip-deliverable. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Finalize Zip Deliverable?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Finalize Zip Deliverable?

As many as you like. As long as a model supports skills, you can use Finalize Zip Deliverable with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Finalize Zip Deliverable AI skill free?

Yes. It is published on GitHub by HKUDS under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇