0.69.0
takahirom/arbigent0.69.0Dec 29, 2025by takahirom
AI Summary
Introduced AI Hints feature allowing apps to provide domain-specific context to AI using the [[aihint:...]] format embedded in accessibility labels.
Key Highlights
- AI Hints feature for app-provided domain context
- Uses [[aihint:...]] format in accessibility labels
- Supports structured data like JSON in hints
- Works with Android (contentDescription), iOS (accessibilityLabel), and Web (aria-label)
New Features
- AI Hints feature for app-provided context
Full Release Notes
# New feature: **AI Hints - App-Provided Context:**
* Apps can provide domain-specific hints to help the AI understand the current screen better. The hint you provide serves as additional context for the AI.
* Embed hints in the accessibility label using the `[[aihint:...]]` format:
```kotlin
// Android (contentDescription)
view.contentDescription = "Play button [[aihint:Video player, buffering]]"
```
```swift
// iOS (accessibilityLabel)
button.accessibilityLabel = "Play button [[aihint:Video player, buffering]]"
```
```html
<!-- Web (aria-label) -->
<button aria-label="Play button [[aihint:Video player, buffering]]">Play</button>
```
* The `[[...]]` format allows hints to coexist with accessibility labels and supports structured data like JSON.
* **Note:** Since this uses accessibility labels, it affects screen readers (TalkBack, VoiceOver, etc.). Enable hints only during testing to avoid accessibility issues in production.
## What's Changed
* Add ArbigentHint feature for app-provided domain context by @takahirom in https://github.com/takahirom/arbigent/pull/361
* Refactor AI hints to use [[aihint:...]] format by @takahirom in https://github.com/takahirom/arbigent/pull/362
**Full Changelog**: https://github.com/takahirom/arbigent/compare/0.68.0...0.69.0