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.
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.
Start with scripts/org_skill_cli.py --help, then read only the documents relevant to the current task.
Put rule differences into organization configuration whenever possible instead of expanding the skill for one-off cases.
run session show, then guest-generate, then agent-login, and finally user-info to verify the identity.
run session show, then user-info to verify the identity.
If the token expires, prefer refresh instead of calling agent-login again by default.
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 .
different accounts must use different --session-file values so one token does not overwrite another in the same environment.
default to production; explicitly pass --env test for integration testing and --env local for local backend work.
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.
https://api.zingup.club/biz
--session-file explicitly.
--session-file is not provided:
~/.organization-operating-skill/sessions/ and create it automatically
ORG_SKILL_STATE_DIR
.codex-state/... sessions are still readable for smooth migration
--env
prod
test
local
--base-url explicitly.
x-platform=3
x-language=ch
x-package=com.groupoo.zingup
x-timezone=
--language us.
auth_reference.md and the actual CLI behavior.
web-config-get and post-create automatically include the required web-specific headers
x-device-id strategy:
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
guest-generate -> agent-login
refresh when needed
org-detail as the default member-view detail endpoint
org-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 payload
activity-publish normally only needs the draft id
--session-file values explicitly
Load only the references needed for the current task, and avoid dumping the entire API surface into context at once.
共 1 个版本