create-smart-app

Create, validate, and package Wework Smart apps as DeepSeek Harness plugin bundles.

772|135|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/wecode-ai/Wegent --skill create-smart-app
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: create-smart-app
Source: https://github.com/wecode-ai/Wegent/tree/main/wework/resources/bundled-plugins/wework-personal/plugins/smart-app-builder/skills/create-smart-app
Command: npx skills add https://github.com/wecode-ai/Wegent --skill create-smart-app

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @deepseek-ai/dsh, and includes scripts (resource) components.

What problem does it solve?

Building a Wework Smart app requires coordinating DeepSeek Harness plugin discovery, environment setup, profile bundle composition, browser-based verification, and distributable packaging, which is error-prone when done manually.

Core Features & Use Cases

  • Environment and Dependency Checks: Runs a bundled doctor command to verify Node 22+ and Corepack/pnpm before scaffolding any files.
  • DSH Plugin Discovery and Composition: Searches the DeepSeek Harness plugin ecosystem, pins exact versions in plugin-manifest.json, and composes the cordis.patch.yml profile bundle.
  • Verification and Packaging: Launches the profile on a loopback port, verifies flows in the Wework built-in browser, validates after every change, and packs a distributable ZIP excluding credentials and node_modules.
  • Use Case: A user wants to add a new capability to their Wework Smart app; the skill inspects the existing project in place, finds compatible DSH plugins, builds and tests the bundle in the built-in browser, then hands off installation through the native preview and model-selection confirmation.

Quick Start

Create a Wework Smart app in my workspace that adds a notes panel, then verify it in the built-in browser and package it as a ZIP.

Frequently Asked Questions about create-smart-app

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Wework Smart app with DeepSeek Harness?▼

Run the helper's doctor command to verify Node 22+ and Corepack/pnpm, search the DSH plugin ecosystem for compatible packages, then compose the bundle in plugin-manifest.json and cordis.patch.yml. Build, test on a loopback port, and verify in the Wework built-in browser before packaging.

How do I add plugins to an existing Wework Smart app?▼

Treat the existing directory as the durable project and edit it in place; never replace it with a new scaffold. Read the current plugin-manifest.json and cordis.patch.yml, then add compatible DSH plugins incrementally with pinned exact versions.

What files must a Wework Smart app ZIP package contain?▼

A distributable ZIP must include plugin-manifest.json, PLUGIN.md, INSTALL.zh-CN.md, the cordis.patch.yml profile bundle, source, and built output. Never package node_modules, credentials, .env files, test output, or VCS metadata.

Can I modify the DeepSeek Harness source tree to build a Smart app?▼

No. A Smart app is an external DSH plugin bundle, so the DeepSeek Harness source tree must never be modified. If a DSH package changes its compatibility contract, stop and report the exact version conflict instead of copying code.

Why does Smart app installation require the Wework preview confirmation?▼

Installation into Wework always ends with the native preview and model-selection confirmation to keep the runtime model under user control. Editing Wework data files to bypass that confirmation is explicitly prohibited.