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

motokomotoko 命令行

Agent Skill

motoko 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,616

周安装

66

GitHub Stars

16

下载量

517
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dfinity/icskills --skill motoko

简介

motoko 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态和代码变更进行整理。
  • 可通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • motoko 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Motoko Language

What This Is

Motoko is the native programming language for Internet Computer canisters. It has actor-based concurrency, built-in persistence (orthogonal persistence), and a type system designed for safe canister upgrades. This skill covers the syntax and type system pitfalls that cause compilation errors or runtime traps when generating Motoko code.

Prerequisites

mops.toml at the project root:

[toolchain]
moc = "1.3.0"

[dependencies]
core = "2.3.1"

moc must be pinned — the @dfinity/motoko recipe resolves the compiler from this field. Without it, icp build fails. Install the package manager with npm i -g ic-mops.

Compilation Error Pitfalls

  1. Writing actor instead of persistent actor. Since moc 0.15.0, the persistent keyword is mandatory on all actors and actor classes. Plain actor produces error M0220. ` // Wrong — error M0220: this actor or actor class should be declared persistent actor {var count: Nat = 0;}; // Correct persistent actor {var count: Nat = 0;}; // Actor classes also require it persistent actor class Counter(init: Nat) {var count: Nat = init;}; **Migrating from Caffeine:** The Caffeine platform used a moc fork with --default-persistent-actors, making persistent optional and all variables implicitly stable. On standard moc, add persistent to every actor and use transient var` for variables that should reset on upgrade (see pitfall #3).
  2. Putting type declarations before the actor. Only import statements are allowed before persistent actor. All type definitions, let, and var declarations must go inside the actor body. Violation produces error M0141. // Wrong — error M0141: move these declarations into the body of the main actor or actor class import Nat "mo:core/Nat"; type UserId = Nat; let MAX = 100; persistent actor {}; // Correct import Nat "mo:core/Nat"; persistent actor {type UserId = Nat; let MAX = 100;};
  3. Using stable keyword in persistent actors. In persistent actor, all let and var declarations are stable by default. Writing stable var is redundant and produces warning M0218. Use transient var for data that should reset on upgrade. ` persistent actor {// Wrong — warning M0218: redundant stable keyword stable var count: Nat = 0; // Correct — implicitly stable var count: Nat = 0; // Correct — resets to 0 on every upgrade transient var requestCount: Nat = 0;}; The old keyword flexible was renamed to transient in moc 0.13.5. Never use flexible`.
  4. Using HashMap, Buffer, TrieMap, or RBTree in persistent actors. These types from the old base library contain closures and are NOT stable. Using them in a persistent actor produces error M0131. They do not exist in mo:core — the modern standard library has stable replacements. // Wrong — these types do not exist in mo:core and are not stable import HashMap "mo:base/HashMap"; import Buffer "mo:base/Buffer"; // Correct — use mo:core stable collections import Map "mo:core/Map"; // key-value map (B-tree, stable) import Set "mo:core/Set"; // set (B-tree, stable) import List "mo:core/List"; // growable list (stable) import Queue "mo:core/Queue"; // FIFO queue (stable)
  5. Reassigning let bindings. let is immutable in Motoko — there is no reassignment. Use var for mutable values. // Wrong — cannot assign to immutable let binding let count = 0; count:= 1; // Correct var count = 0; count:= 1; // Also correct — let is fine for collections (they mutate internally) let users = Map.empty<Nat, Text>(); Map.add(users, Nat.compare, 0, "Alice"); // mutates the map in place
  6. Using continue or break without labels (moc < 1.2.0). Unlabeled break and continue in loops require moc >= 1.2.0. For older compilers, or when targeting an outer loop, use labeled loops. // Works since moc 1.2.0 for (x in items.vals()) {if (x == 0) continue;}; // Required for moc < 1.2.0, or to target a specific loop label outer for (x in items.vals()) {label inner for (y in other.vals()) {if (y == 0) continue inner; if (x == y) break outer;};};
  7. Shared function parameter types must be shared. All parameters and return types of public actor functions must be shared types. Closures, mutable records, Error, and async* are NOT shared types. Error codes: M0031, M0032, M0033. // Wrong — functions are not shared types public func register(callback: () -> ()): async () {}; // Wrong — mutable records are not shared types public func store(data: {var count: Nat}): async () {}; // Correct — use immutable records and avoid closures public func store(data: {count: Nat}): async () {};
  8. Incomplete pattern matches. Switch expressions must cover all possible values. Missing cases produce error M0145. type Color = {#red; #green; #blue}; // Wrong — error M0145: pattern does not cover value #blue func name(c: Color): Text {switch (c) {case (#red) "Red"; case (#green) "Green";}}; // Correct — cover all cases (or use a wildcard) func name(c: Color): Text {switch (c) {case (#red) "Red"; case (#green) "Green"; case (#blue) "Blue";}};
  9. Variant tag argument precedence. Variant constructors with arguments bind tightly. When passing a complex expression, use parentheses to avoid unexpected parsing. type Action = {#transfer: Nat; #none}; // Potentially confusing — what does this parse as? let a = #transfer 1 + 2; // parsed as (#transfer(1)) + 2 — type error // Clear — use parentheses for complex expressions let a = #transfer(1 + 2); // #transfer(3)
  10. Using do? {} blocks incorrectly. The ! operator (null break) only works inside a do? {} block. Using it outside produces error M0064. // Wrong — error M0064: misplaced '!' (no enclosing 'do? {...}' expression) func getName(map: Map.Map<Nat, Text>, id: Nat):?Text {let name = Map.get(map, Nat.compare, id)!;?name}; // Correct — wrap in do? {} func getName(map: Map.Map<Nat, Text>, id: Nat):?Text {do? {let name = Map.get(map, Nat.compare, id)!; name}};

mo:core Standard Library

The core library (package name core on mops) is the modern standard library. It replaces the deprecated base library. Minimum moc version: 1.0.0.

Import pattern

Always import from mo:core/, never from mo:base/:

import Map "mo:core/Map";
import Set "mo:core/Set";
import List "mo:core/List";
import Nat "mo:core/Nat";
import Text "mo:core/Text";
import Int "mo:core/Int";
import Option "mo:core/Option";
import Result "mo:core/Result";
import Iter "mo:core/Iter";
import Principal "mo:core/Principal";
import Time "mo:core/Time";
import Debug "mo:core/Debug";
import Runtime "mo:core/Runtime";

Available modules

Array, Base64, Blob, Bool, CertifiedData, Char, Cycles, Debug, Error, Float, Func, Int, Int8, Int16, Int32, Int64, InternetComputer, Iter, List, Map, Nat, Nat8, Nat16, Nat32, Nat64, Option, Order, Principal, PriorityQueue, Queue, Random, Region, Result, Runtime, Set, Stack, Text, Time, Timer, Tuples, Types, VarArray, WeakReference.

Key collection APIs

Map (B-tree, O(log n), stable):

import Map "mo:core/Map";
import Nat "mo:core/Nat";

persistent actor {
  let users = Map.empty<Nat, Text>();

  public func addUser(id : Nat, name : Text) : async () {
    Map.add(users, Nat.compare, id, name);
  };

  public query func getUser(id : Nat) : async ?Text {
    Map.get(users, Nat.compare, id)
  };

  public query func userCount() : async Nat {
    Map.size(users)
  };

  public func removeUser(id : Nat) : async () {
    Map.remove(users, Nat.compare, id);
  };
};

Set (B-tree, O(log n), stable):

import Set "mo:core/Set";
import Text "mo:core/Text";

let tags = Set.empty<Text>();
Set.add(tags, Text.compare, "motoko");
Set.contains(tags, Text.compare, "motoko"); // true

List (growable, stable):

import List "mo:core/List";

let items = List.empty<Text>();
List.add(items, "first");
List.add(items, "second");
List.get(items, 0);  // ?"first" — returns ?T, null if out of bounds
List.at(items, 0);   // "first" — returns T, traps if out of bounds

Note: List.get returns ?T (safe). List.at returns T and traps on out-of-bounds. In core < 1.0.0 the names were different (get was getOpt, at was get).

Text.join parameter order

import Text "mo:core/Text";

// First parameter is the iterator, second is the separator
let result = Text.join(["a", "b", "c"].vals(), ", "); // "a, b, c"

Type parameters often need explicit annotation

Invariant type parameters cannot always be inferred. When the compiler says "add explicit type instantiation", provide type arguments:

import VarArray "mo:core/VarArray";

// May fail type inference
let doubled = VarArray.map(arr, func x = x * 2);

// Fix: add explicit type arguments
let doubled = VarArray.map<Nat, Nat>(arr, func x = x * 2);

Common Patterns

Actor with Map and query methods

import Map "mo:core/Map";
import Nat "mo:core/Nat";
import Text "mo:core/Text";
import Time "mo:core/Time";
import Iter "mo:core/Iter";

persistent actor {

  type Profile = {
    name : Text;
    bio : Text;
    created : Int;
  };

  let profiles = Map.empty<Nat, Profile>();
  var nextId : Nat = 0;

  public func createProfile(name : Text, bio : Text) : async Nat {
    let id = nextId;
    nextId += 1;
    Map.add(profiles, Nat.compare, id, {
      name;
      bio;
      created = Time.now();
    });
    id
  };

  public query func getProfile(id : Nat) : async ?Profile {
    Map.get(profiles, Nat.compare, id)
  };

  public query func listProfiles() : async [(Nat, Profile)] {
    Iter.toArray(Map.entries(profiles))
  };
};

Option handling with switch

public query func greetUser(id : Nat) : async Text {
  switch (Map.get(profiles, Nat.compare, id)) {
    case (?profile) { "Hello, " # profile.name # "!" };
    case null { "User not found" };
  }
};

Error handling with try/catch

import Error "mo:core/Error";

// try/catch only works with inter-canister calls (async contexts)
public func safeTransfer(to : Principal, amount : Nat) : async Result.Result<(), Text> {
  try {
    await remoteCanister.transfer(to, amount);
    #ok()
  } catch (e) {
    #err(Error.message(e))
  }
};

Reading canister environment variables

import Runtime "mo:core/Runtime";

// Injected by icp deploy — available in mo:core >= 2.1.0
// Returns ?Text — null if the variable is not set
let ?backendId = Runtime.envVar("PUBLIC_CANISTER_ID:backend")
  else Debug.trap("PUBLIC_CANISTER_ID:backend not set");

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.23%
按下载量换算192

Claude

28.59%
按下载量换算148

Cursor

16.7%
按下载量换算86

Gemini CLI

8.62%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills