用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/420company/artemis --skill create-timeout-rule命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-timeout-rule |
| disable-model-invocation | true |
| argument-hint | <rule_name> <reauth_timeout_seconds> [idle_timeout_seconds] [app_or_group] |
| description | Create a ZPA timeout policy rule for session re-authentication and idle timeout. |
Create timeout rule: $ARGUMENTS
Extract:
zpa_list_application_segments()
zpa_list_segment_groups()
```text
## Step 3: Build Conditions
If scoped to specific applications:
```json
[{"operands": [{"object_type": "APP", "values": ["<segment_id>"]}]}]
```text
## Step 4: Create the Rule
```text
zpa_create_timeout_policy_rule(
name="<rule_name>",
reauth_timeout=<seconds>,
reauth_idle_timeout=<idle_seconds>,
conditions=[...]
)
```text
## Step 5: Verify
```text
zpa_list_timeout_policy_rules()
```text
Present summary with rule details and human-readable timeout values (e.g., "24 hours re-auth, 30 minutes idle").