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

organization-operating-skill组织运作能力

Agent Skill

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

总安装

3,175

周安装

135

GitHub Stars

公开资料未说明

下载量

1,112
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:organization-operating-skill(组织运作能力)
来源仓库:https://github.com/urzeye/organization-operating-skill
安装命令:
openclaw skills install organization-operating-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install organization-operating-skill

简介

organization-operating-skill 连接 OpenClaw 平台与外部组织数据接口实现信息同步。

  • 可用于查询用户资料、获取活动动态或检索内部帖子等内容。
  • 支持标准 RESTful API 调用与身份鉴权机制对接。
  • 依赖目标组织开放相应接口权限方可正常使用。
  • 建议在使用前验证 API 密钥有效性并关注调用频率限制规则。

SKILL.md

name
organization-operating-skill
description
A general-purpose skill for connecting the organization platform with external agents. Use it to access user, organization, post, and activity APIs, and to complete authentication, organization operations, content publishing, and activity workflows whenever an agent needs to execute actions through the platform APIs.

Organization Operating Skill

Overview

This skill turns the organization platform APIs into stable, executable actions for agents. It focuses on authentication, session reuse, organization operations, post publishing, activity publishing, and signup flows. Prefer reusable platform-wide capabilities, and leave organization-specific behavior to configuration or prompt snippets instead of building one-off skill logic for each organization.

Workflow

  1. First determine which task category applies:

Auth / environment / token: read references/auth_reference.md. Organization operations: read references/org_reference.md. Posts: read references/content_reference.md. Activities: read references/activity_reference.md. Capability scope and prioritization: read references/capability_inventory.md.

  1. Do not load all references by default.

Start with scripts/org_skill_cli.py --help, then read only the documents relevant to the current task.

  1. Keep platform-wide capabilities separate from organization-specific rules.

Put rule differences into organization configuration whenever possible instead of expanding the skill for one-off cases.

Common Flows

  • First-time agent account setup:

run session show, then guest-generate, then agent-login, and finally user-info to verify the identity.

  • Existing agent session:

run session show, then user-info to verify the identity. If the token expires, prefer refresh instead of calling agent-login again by default.

  • Organization operations flow:

check isAllowCreate through user-info, then use org-create or org-detail, then post-create. A "help post" is currently just a normal post, so publish it through post-create. For activities, always run activity-save first to get the draft id, then activity-publish --draft-id <id>.

  • Multi-agent usage:

different accounts must use different --session-file values so one token does not overwrite another in the same environment.

  • Environment convention:

default to production; explicitly pass --env test for integration testing and --env local for local backend work.

Core Capabilities

  • Authentication and environment switching
  • Organization create, query, update, join, and member pagination
  • Post publishing
  • Activity draft, publish, detail, search, and signup flows
  • See references/capability_inventory.md for future capability priorities

Integration Rules

  • Keep the skill generic, and push organization-specific behavior into organization configuration or prompt snippets.
  • Prefer completing workflows through existing APIs instead of adding code for one-time organization rules.
  • Before integrating any endpoint, document authentication mode, required parameters, key response fields, error codes, and code locations.
  • Keep human fallback for high-risk operations, including bans, dispute handling, credit penalties, and offline safety issues.
  • When platform APIs cannot express a rule cleanly, document the gap first and only then decide whether a new API is justified.

Resources

Use it for capability scope and prioritization, not for request-body details.

Navigation-only index.

Authentication, headers, token handling, environment rules, and session rules.

Organization APIs, default org avatars, and creation or update constraints.

Post publishing APIs and share-link conventions.

Activity draft, publish, search, signup, and share-link conventions.

  • scripts/

The current executable entry point is scripts/org_skill_cli.py. When you need the command list, start with python scripts/org_skill_cli.py --help.

Runtime Defaults

  • Default base URL is production: https://api.zingup.club/biz
  • Session state is not written back into the skill repository.
  • The safest approach is to pass --session-file explicitly.
  • If --session-file is not provided:

- the CLI will default to ~/.organization-operating-skill/sessions/ and create it automatically - the current implementation can be overridden through ORG_SKILL_STATE_DIR - older .codex-state/... sessions are still readable for smooth migration

  • Prefer switching environments with --env

- prod - test - local

  • You can also pass --base-url explicitly.
  • Default request headers include:

- x-platform=3 - x-language=ch - x-package=com.groupoo.zingup - x-timezone=<current agent timezone offset>

  • English-speaking users can explicitly switch to --language us.
  • For header details, prefer auth_reference.md and the actual CLI behavior.
  • Web-style requests:

- web-config-get and post-create automatically include the required web-specific headers

  • x-device-id strategy:

- generate one automatically if it does not exist yet - once it is stored in session state, reuse it by default

  • Common debug entry points:

- start with python scripts/org_skill_cli.py --help - python scripts/org_skill_cli.py --env prod session show - python scripts/org_skill_cli.py --env test session show

  • Login convention:

- first-time agent setup: guest-generate -> agent-login - for the same agent later: reuse the session and call refresh when needed

  • Organization lookup convention:

- use org-detail as the default member-view detail endpoint

  • If org-create is called without an avatar, it will automatically use web-config-get to select a default organization avatar.
  • Activity publish convention:

- activity-save submits the complete draft payload - activity-publish normally only needs the draft id

  • Multi-account convention:

- if you need both a publisher and an attendee in the same environment, use separate --session-file values explicitly

Context Discipline

Load only the references needed for the current task, and avoid dumping the entire API surface into context at once.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

72.2%
按下载量换算803

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills