一键导入
transmissions-app
Guide for creating new Transmissions applications with decision support for core vs remote development
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for creating new Transmissions applications with decision support for core vs remote development
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | transmissions-app |
| description | Guide for creating new Transmissions applications with decision support for core vs remote development |
This skill guides you through creating a new Transmissions application, helping you choose between core and remote development based on your needs.
Choose your development path:
Use when: Learning, prototyping, or contributing to core
Use when: Building production apps, maintaining separate repos
Ask the user:
my-data-processor)src/apps/) or Remote (~/hyperdata/trans-apps/apps/)?Execute based on chosen path:
# Copy example app
cp -r src/apps/example-app src/apps/{APP_NAME}
# List created files
ls -la src/apps/{APP_NAME}/
# Ensure remote apps directory exists
mkdir -p ~/hyperdata/trans-apps/apps
# Copy example app
cp -r src/apps/example-app ~/hyperdata/trans-apps/apps/{APP_NAME}
# List created files
ls -la ~/hyperdata/trans-apps/apps/{APP_NAME}/
Edit the following files in the new app directory:
about.md - Update runner path and description:
# {APP_NAME}
## Runner
```sh
./trans {APP_NAME}
{USER_PROVIDED_DESCRIPTION}
**transmissions.ttl** - Update transmission definition:
```turtle
:{APP_NAME} a :EntryTransmission ;
:pipe (:p10 :p20 :p30) .
config.ttl - Customize configuration as needed
./trans {APP_NAME} -v
./trans ~/hyperdata/trans-apps/apps/{APP_NAME} -v
After basic app creation:
Reference templates/app-structure.md for:
App not found:
src/apps/{APP_NAME}/ existsProcessor not found:
transmissions-processor skillRemote app loading issues:
src/apps/example-app/docs/manual/user/apps.mddocs/manual/user/concepts.md