mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-08-03 12:46:03 +00:00
Some checks are pending
CI / Format (push) Waiting to run
CI / Test (push) Waiting to run
CI / FFI Python Smoke (push) Waiting to run
CI / FFI Header Drift (push) Waiting to run
CI / FFI Panic Guard (push) Waiting to run
CI / FFI Stub-Adapter Passthrough (push) Waiting to run
CI / FFI Codegen Drift (push) Waiting to run
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
CodeQL / Analyze (rust) (push) Waiting to run
Release / Release Please (push) Waiting to run
Release / Build (aarch64-apple-darwin) (push) Blocked by required conditions
Release / Build (x86_64-apple-darwin) (push) Blocked by required conditions
Release / Build FFI (aarch64-apple-darwin) (push) Blocked by required conditions
Release / Build FFI (x86_64-apple-darwin) (push) Blocked by required conditions
Release / Build FFI (x86_64-unknown-linux-gnu) (push) Blocked by required conditions
Release / Build FFI (aarch64-unknown-linux-gnu) (push) Blocked by required conditions
Release / Build FFI (x86_64-pc-windows-msvc) (push) Blocked by required conditions
Release / FFI Release Gates (push) Blocked by required conditions
Release / Publish to GitHub Release (push) Blocked by required conditions
Release / Publish to npm (push) Blocked by required conditions
Release / Publish Skills to ClawHub (push) Blocked by required conditions
Supply Chain / Audit (push) Waiting to run
Completes the recommended community profile (opensource.guide best practices): - CODE_OF_CONDUCT.md — Contributor Covenant v2.1 - CONTRIBUTING.md — repo-accurate dev workflow, quality gates, coding standards, conventional-commit and command-extensibility guidance - SUPPORT.md — where to get help / report issues - .github/ISSUE_TEMPLATE/ — bug + feature issue forms and config (security and docs contact links; blank issues disabled) - .github/PULL_REQUEST_TEMPLATE.md — summary, type, gate checklist
66 lines
2.1 KiB
YAML
66 lines
2.1 KiB
YAML
name: Feature Request
|
|
description: Propose a new command, flag, or behavior for agent-desktop
|
|
title: "[Feature]: "
|
|
labels: ["enhancement"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for proposing an improvement to agent-desktop.
|
|
agent-desktop is a **machine-facing tool** — features are evaluated by how they help AI agents observe and control desktop applications more effectively.
|
|
Please be as specific as possible about the use case.
|
|
|
|
- type: textarea
|
|
id: problem_use_case
|
|
attributes:
|
|
label: Problem / use case
|
|
description: |
|
|
Describe the agent workflow that is blocked or degraded today.
|
|
Frame it from the agent's perspective: "As an agent I want to…"
|
|
placeholder: |
|
|
As an agent I want to read the selected text in any app so that I can
|
|
operate on clipboard contents without issuing a separate `clipboard get` command.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: proposed_solution
|
|
attributes:
|
|
label: Proposed solution
|
|
description: |
|
|
Describe the new command, flag, or behavior you have in mind.
|
|
Include example CLI invocations and the JSON output you would expect.
|
|
placeholder: |
|
|
Add a `--selection` flag to `snapshot` that appends a `selected_text` field
|
|
to the response envelope when the focused element has a non-empty selection.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives considered
|
|
description: What workarounds or alternative designs did you explore, and why do they fall short?
|
|
validations:
|
|
required: false
|
|
|
|
- type: dropdown
|
|
id: platform
|
|
attributes:
|
|
label: Target platform(s)
|
|
description: Which platform(s) should this feature cover?
|
|
options:
|
|
- macOS
|
|
- Windows
|
|
- Linux
|
|
- All platforms
|
|
validations:
|
|
required: false
|
|
|
|
- type: checkboxes
|
|
id: prior_search
|
|
attributes:
|
|
label: Prior search
|
|
options:
|
|
- label: I have searched existing issues and discussions and did not find a duplicate
|
|
required: true
|