DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Plugin Tic80 — DSH Plugin for DeepSeek Harness
← Plugins
P

dsh-plugin-tic80

Plugin Tic80

DeepSeek Harness (dsh) plugin for TIC-80 fantasy console: full console capabilities, conversational code, music, map, and sprite generation by LLM, with native & live web execution.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:NoodleStormno/dsh-plugin-tic80#4c700829b2f1e18d400db0c63e3a29c75fd91e4d
READMECompatibilityVersions
DeepSeek Harness with Embedded TIC-80 Studio

Compatibility and provenance

Plugin Tic80 is published as dsh-plugin-tic80 and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/15/2026

Versions

1.0.0stable
9/15/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/17/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-plugin-tic80

中文文档 | English

dsh-plugin-tic80 is a full-featured TIC-80 fantasy computer plugin engineered specifically for DeepSeek Harness (dsh). Explore more ecosystem plugins under the dsh-plugin topic.

It preserves 100% of TIC-80's official console capabilities while enabling conversational AI workflows where LLM agents can write game code, tracker music, world maps, sound effects, and sprite pixel art, running and testing games with live hot-reload in real-time.

DeepSeek Harness with Embedded TIC-80 Studio

⚡ Built for Rapid Prototyping

  • 🎯 Instant Game Prototyping: Designed specifically for fast gameplay iteration and mechanic testing. Go from a natural language prompt to a playable, fully-featured retro game in seconds.
  • ⚙️ Config-Driven Game Feel Tuning: Adheres to strict coding conventions where all tunable gameplay variables (such as jump impulse jump, gravity, movement speed, friction) are grouped into a configuration table (cfg = { ... }) right at the very top of the code. Effortlessly tweak platforming feel and physics without digging through complex game loops!
  • 🗺️ WYSIWYG Level Design with Map Editor: Avoid hardcoding massive 2D level tables in Lua. Design and edit levels directly with TIC-80's built-in Map Editor (F3). Powered by Sprite Flags for solid collision and dynamic entity parsing, level construction is completely "What You See Is What You Get".

🌟 Key Features

  • 🎮 Full TIC-80 Capabilities:
    • 240×136 retro resolution, 16-color customizable palette.
    • Complete dual-bank architecture: Bank 0 (256 background Tiles) + Bank 1 (256 foreground Sprites), supporting multi-tile sprites (16×16, 24×24, 32×32) and 8-bit collision/interaction flags.
    • 240×136 world map (32,640 tiles total).
    • 4-channel chiptune tracker (64 patterns, 64 tracks, tempo & speed controls).
    • 64 sound effects (SFX) with 30-note envelopes, arpeggios, and 16 custom waveforms.
    • Lossless bidirectional conversion between .lua text carts and official .tic binary ROMs.
  • 💬 Conversational Game Development:
    • Exposes 13 typed model tools (dsh-tools), allowing LLMs to design level maps, write Lua scripts, generate ASCII pixel art, synthesize retro sound effects, and arrange music through natural language.
    • Built-in static Linter checking Lua syntax, TIC() entrypoint, 512KB memory budget, and sandbox safety.
  • 🚀 Embedded Web UI & Real-Time Hot-Reload:
    • DSH Embedded 3-Column Studio: TIC-80 virtual game console is embedded directly into the DeepSeek Harness Web UI (Left: DSH sidebar, Middle: TIC-80 Console Screen, Right: AI Chat), providing an all-in-one game dev environment.
    • Turn-1 Ready Blank Cartridge: Pre-seeded with cartridge/game.lua and fully injected into the System Prompt. The LLM starts generating game logic and assets in Turn 1 without wasting turns re-creating cartridges.
    • Official TIC-80 WebAssembly Engine & Studio: Powered by the genuine official TIC-80 WebAssembly console (Emscripten / SDL2). Preserves the authentic retro CRT interface style, complete CLI command terminal, and built-in F1-F5 sub-editors (F1 Code, F2 Sprites, F3 World Map, F4 SFX, F5 Music Tracker, Ctrl+R Run, Esc Console).
    • Live Web Hot-Reload: Real-time WebSocket synchronization. Tool edits made by the LLM update the middle-column TIC-80 screen immediately.
    • Native Desktop Runner: Headless CLI execution and desktop window integration with official tic80.exe.
  • 📦 Multi-format Exporters:
    • One-click export to .lua source carts, .tic binary ROMs, and standalone playable .html web games.

📦 Installation & Setup

Using in DeepSeek Harness

Add the plugin to your cordis.yml or cordis.patch.yml:

- id: tic80
  name: 'dsh-plugin-tic80'
  config:
    defaultTemplate: minimal   # Options: minimal, platformer, sokoban, rpg, shmup
    autoRun: true              # Auto-start Web Live Studio
    webStudioPort: 3088        # Web preview port
    cartFilePath: './cart.lua' # Bind local cartridge file

Launch via dsh CLI:

dsh --profile web --patch ./cordis.patch.yml

Standalone Usage

npm install dsh-plugin-tic80
import { Context } from '@deepseek-ai/cordis';
import * as Tic80Plugin from 'dsh-plugin-tic80';

const ctx = new Context();
ctx.plugin(Tic80Plugin, {
  defaultTemplate: 'platformer',
  autoRun: true,
  webStudioPort: 3088,
});

🛠️ DSH Tools Overview

Tool NameDescription
tic80_initInitialize a cartridge project from genre templates
tic80_get_cartInspect cartridge code, sprites, map regions, or audio state
tic80_set_codeUpdate game code (Lua/JS) with validation and hot-reload
tic80_edit_spriteDraw 8×8 or multi-tile sprites using ASCII art (e.g. . transparent, 0-f colors)
tic80_batch_spritesBatch define animation frames and tilesets
tic80_edit_mapPlace tiles, fill areas, or load ASCII map diagrams on the 240×136 grid
tic80_create_sfxSynthesize sound effects using presets (jump/coin/laser/etc.) or custom notes
tic80_compose_musicCompose 4-channel retro chiptune patterns and chain into tracks
tic80_set_paletteSwitch 16-color palettes (Sweetie-16, PICO-8, DB16, GameBoy, Cyberpunk)
tic80_validatePerform static checks on cartridge limits, syntax, and API usage
tic80_runLaunch Web Live Studio (with live hot reload) or native tic80.exe
tic80_exportExport cartridge as .lua, .tic, or standalone .html
tic80_studio_statusQuery live studio status, connected players, and logs

🧪 Automated Testing

Run the full test suite (100% passing across all modules):

npm test

📄 License

MIT License © 2026 NoodleStormno

  • 🕹️ Pre-built Templates:
    • minimal, platformer, sokoban, rpg, and shmup.