Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

code-engine代码引擎

Agent Skill

code-engine 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,224

周安装

50

GitHub Stars

15

下载量

392
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-engine(代码引擎)
来源仓库:https://github.com/stahura/domo-ai-vibe-rules
仓库路径:skills/code-engine
安装命令:
npx skills add https://github.com/stahura/domo-ai-vibe-rules --skill code-engine
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/stahura/domo-ai-vibe-rules --skill code-engine

简介

code-engine 针对 Domo App Platform 制定代码调用契约,推荐直接 post 请求至指定端点。

  • 它区分运行时调用与包生命周期管理,前者用 domo.post 后者交由 CLI 技能处理。
  • 适用于平台内应用开发,需配合 ryuu.js 等 SDK 使用以实现参数序列化和响应解析。
  • 使用前应熟悉 Domo 平台 API 规范,否则可能因参数格式错误导致调用失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Rule: Domo App Platform Code Engine (Toolkit-First)

Use a contract-first pattern for Code Engine calls. In practice, prefer direct domo.post('/domo/codeengine/v2/packages/{alias}', params) when wiring app calls.

Package lifecycle operations are handled by CLI skills:

  • ~/.agents/skills/code-engine-create/SKILL.md
  • ~/.agents/skills/code-engine-update/SKILL.md

Use this skill for runtime invocation patterns inside app code, not package create/update orchestration.

Working call pattern (domo.post)

npm install ryuu.js
import domo from 'ryuu.js';

const response = await domo.post('/domo/codeengine/v2/packages/calculateTax', {
  amount: 1000,
  state: 'CA'
});

Response parsing requirement

// First integration pass: inspect exact response shape for this function
console.log('Code Engine response:', response);

const body = response?.body ?? response?.data ?? response;

// Some package contracts return nested envelopes:
// { response: { ... } } or { response: { response: { ... } } }
const unwrapResponse = (value: unknown) => {
  let current = value as any;
  let depth = 0;
  while (current && typeof current === 'object' && 'response' in current && depth < 6) {
    current = current.response;
    depth += 1;
  }
  return current;
};
const normalized = unwrapResponse(body);

// Handle common output shapes
const output =
  normalized?.output ??
  normalized?.result ??
  normalized?.value ??
  normalized;

if (typeof output === 'number') {
  // numeric output
} else if (typeof output === 'string') {
  // string output
} else if (output && typeof output === 'object') {
  // structured object output
} else {
  throw new Error('Code Engine returned no usable output');
}

Manifest requirement: packagesMapping (with s)

Use packagesMapping and define full parameter/output contracts.

{
  "packagesMapping": [
    {
      "name": "myPackage",
      "alias": "myFunction",
      "packageId": "00000000-0000-0000-0000-000000000000",
      "version": "1.0.0",
      "functionName": "myFunction",
      "parameters": [
        {
          "name": "param1",
          "displayName": "param1",
          "type": "decimal",
          "value": null,
          "nullable": false,
          "isList": false,
          "children": [],
          "entitySubType": null,
          "alias": "param1"
        }
      ],
      "output": {
        "name": "result",
        "displayName": "result",
        "type": "number",
        "value": null,
        "nullable": false,
        "isList": false,
        "children": [],
        "entitySubType": null,
        "alias": "result"
      }
    }
  ]
}

Version pinning rule:

  • If the user expects a fixed package build, set "version": "x.y.z" explicitly in each packagesMapping entry.
  • Do not leave version as null unless the user explicitly wants unpinned/latest behavior.

Required contract disclosure to user

When recommending or generating Code Engine calls, the agent must explicitly tell the user:

  • exact input parameter names, types, and nullable expectations
  • expected output name, type, and shape (number/string/object)
  • whether output is wrapped in a response envelope (and if nested envelopes are possible)

This is required so the user can build a matching Code Engine function and manifest contract.

Error Handling Pattern

async function executeFunction(alias: string, payload: Record<string, unknown>) {
  try {
    const response = await domo.post(`/domo/codeengine/v2/packages/${alias}`, payload);
    console.log('Code Engine response:', response);
    return response?.body ?? response?.data ?? response;
  } catch (error) {
    console.error(`Code Engine call failed for alias ${alias}`, error);
    throw error;
  }
}

Discovering function names on global Domo packages

When calling a Domo-provided global package (e.g. DOMO Notifications, DOMO DataSets, DOMO Users), the exported function names and their exact parameter signatures are not discoverable via the REST API — GET /api/codeengine/v2/packages/{id}/versions/{v} returns "functions": [] for all global packages.

How to find them: navigate to the package source in the Domo UI:

https://{instance}.domo.com/codeengine/{packageId}

This opens the Code Engine editor showing the full JavaScript source for the package. Read it to find:

  • Exact exported function names (e.g. sendEmail, sendBuzzRequest)
  • Positional parameter names and order (Code Engine maps by position, not key name)
  • Which parameters are optional / nullable
Why this matters: guessing function names against the API returns 404 for every wrong name, giving no indication of what the correct name is. Without reading the source first, you will burn multiple round-trips and may need the user to paste the source manually.

Example — DOMO Notifications (03ba6971-98d0-4654-9bfd-aa897816df33)

Key functions found in source:

FunctionParameters (positional)Notes
sendEmailrecipientEmails, subject, body, personRecipients, groupRecipients, attachments, attachment, includeReplyAllrecipientEmails is a single comma-separated string, not an array
sendEmailToListOfEmailsto, subject, body, attachments, attachment, includeReplyAllto is an array of strings
sendBuzzRequestchannelId, messagechannelId must be a valid UUID
sendExternalEmailto, subject, body, attachments, attachment, includeReplyAllValidates against authorized domain whitelist
Gotcha: sendEmail takes recipientEmails as a plain string (e.g. "user@example.com"), not an array. Passing an array causes silent failure or incorrect routing.

Checklist

  • Read package source at https://{instance}.domo.com/codeengine/{packageId} before writing any call
  • Exact function name confirmed from source (do not guess)
  • Parameter names and types confirmed from source JSDoc comments
  • Calls use domo.post('/domo/codeengine/v2/packages/{alias}', params) pattern
  • Manifest uses packagesMapping (not packageMapping)
  • packagesMapping.version is explicitly pinned when deterministic package behavior is required
  • packagesMapping.parameters and output include full contract fields (name, displayName, type, value, nullable, isList, children, entitySubType, alias)
  • Agent states input parameter names, types, and nullable status to user
  • Agent states expected output name/type/shape to user
  • First implementation logs response and validates real response shape
  • Output parsing handles body/data/raw response shape and nested response envelopes
  • Errors handled and surfaced to UI or logs

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.5%
按下载量换算127

Claude

29.96%
按下载量换算117

Cursor

20.21%
按下载量换算79

Gemini CLI

10.51%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills