Install
openclaw skills install organization-operating-skillA 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.
openclaw skills install organization-operating-skillThis 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.
scripts/org_skill_cli.py --help, then read only the documents relevant to the current task.session show, then guest-generate, then agent-login, and finally user-info to verify the identity.session show, then user-info to verify the identity.
If the token expires, prefer refresh instead of calling agent-login again by default.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>.--session-file values so one token does not overwrite another in the same environment.--env test for integration testing and --env local for local backend work.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.https://api.zingup.club/biz--session-file explicitly.--session-file is not provided:
~/.organization-operating-skill/sessions/ and create it automaticallyORG_SKILL_STATE_DIR.codex-state/... sessions are still readable for smooth migration--env
prodtestlocal--base-url explicitly.x-platform=3x-language=chx-package=com.groupoo.zingupx-timezone=<current agent timezone offset>--language us.auth_reference.md and the actual CLI behavior.web-config-get and post-create automatically include the required web-specific headersx-device-id strategy:
python scripts/org_skill_cli.py --helppython scripts/org_skill_cli.py --env prod session showpython scripts/org_skill_cli.py --env test session showguest-generate -> agent-loginrefresh when neededorg-detail as the default member-view detail endpointorg-create is called without an avatar, it will automatically use web-config-get to select a default organization avatar.activity-save submits the complete draft payloadactivity-publish normally only needs the draft id--session-file values explicitlyLoad only the references needed for the current task, and avoid dumping the entire API surface into context at once.