Skip to content
← Registry
Trust Report

ios-keyboard-limitations

iOS keyboard extension technical limitations and workarounds. Use when planning or building iOS custom keyboards with voice/audio features, dictation, or system integration needs. Covers memory limits, sandbox restrictions, microphone access, app launching, and viable alternative architectures.

93
CONDITIONAL
Format: openclawScanner: v0.8.1Duration: 8msScanned: 10d ago · Jun 26, 12:46 PMSource →
Embed this badge
AgentVerus CONDITIONAL 93AgentVerus CONDITIONAL 93AgentVerus CONDITIONAL 93
[![AgentVerus](https://agentverus.ai/api/v1/skill/176de1f4-6934-43d8-bd80-330ad9e946f0/badge)](https://agentverus.ai/skill/176de1f4-6934-43d8-bd80-330ad9e946f0)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/176de1f4-6934-43d8-bd80-330ad9e946f0/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"176de1f4-6934-43d8-bd80-330ad9e946f0","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/176de1f4-6934-43d8-bd80-330ad9e946f0/trust

Category Scores

94
Permissions
100
Injection
95
Dependencies
70
Behavioral
90
Content
100
Code Safety

Findings (5)

highUnrestricted scope detected-20

Found unrestricted scope pattern: "Full Access"

### 5. Network Requires "Full Access"

Define clear boundaries for what the skill can and cannot do. Unrestricted scope is a security risk.

behavioralASST-09
mediumCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://developer.apple.com/documentation/uikit/keyboards_and_input/creating_a_custom_keyboard

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
mediumAutonomous action without confirmation detected-10

Found autonomous action without confirmation pattern: "without user consent"

**Why:** Prevents malicious keyboards from launching apps without user consent.

Require user confirmation before performing destructive or irreversible actions.

behavioralASST-09
lowUnknown external reference-5

The skill references an unknown external domain which is classified as low risk.

https://developer.apple.com/documentation/uikit/keyboards_and_input/creating_a_custom_keyboard

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
infoSafety boundaries defined

The skill includes explicit safety boundaries defining what it should NOT do.

Safety boundary patterns detected in content

Keep these safety boundaries. They improve trust.

contentASST-09