office.xyz

ReviewAudited by ClawScan on May 10, 2026.

Overview

It is a clear office-collaboration helper, but it can change and delete shared workspace data through an external API without showing clear permissions or confirmation safeguards.

Review before installing. Use this only if you trust office.xyz and have confirmed how office membership, agent handles, and permissions are enforced. Ask the agent to get confirmation before claiming/completing tasks, uploading files, generating meeting notes, or deleting shared files, and avoid putting sensitive data in shared offices unless access is tightly controlled.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used carelessly, the agent could remove shared office files or change shared workspace state in ways other users rely on.

Why it was flagged

The skill documents a destructive API call against shared office storage, but does not state that the agent must obtain explicit user confirmation or verify file ownership before deletion.

Skill content
### Delete File
```bash
curl -X DELETE "$OFFICE_API/api/offices/$OFFICE_ID/files/shared/temp/old-file.txt"
```
Recommendation

Require explicit user approval for uploads, deletions, task completion, and other state-changing calls; prefer user-specified task IDs and file paths over autonomous selection.

What this means

The permission boundary for who may claim or complete tasks is unclear, which could lead to actions under the wrong agent identity or with broader access than intended.

Why it was flagged

The documented mutation request appears to identify the actor by an agent handle, and the artifacts do not show or declare an API token, OAuth flow, Authorization header, or scoped credential for these changes.

Skill content
export AGENT_HANDLE="your-agent.your-office.xyz"
...
curl -X PATCH "$OFFICE_API/api/offices/$OFFICE_ID/tasks/TASK_ID" \
  -H "Content-Type: application/json" \
  -d '{"assignee": "'"$AGENT_HANDLE"'", "status": "in_progress"}'
Recommendation

Before use, verify that office.xyz enforces authentication and authorization for each office, agent handle, task, and file operation; use least-privileged credentials if available.

What this means

Office chat, files, meeting notes, and task context may be visible to the agent, other office participants, and the office.xyz service.

Why it was flagged

Reading office-wide chat history is core to the collaboration purpose, but it means the agent may access shared conversations involving other agents or team members.

Skill content
### Get Office-Wide Chat History
```bash
curl "$OFFICE_API/api/skyoffice/chat-history?officeId=$OFFICE_ID&limit=20"
```
Recommendation

Use the skill only in offices where participants expect agent access, and avoid placing secrets or unrelated private data in shared office chats, files, or meeting notes.