UiPath Documentation
autopilot
latest
false
Autopilot ガイド
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

RPA ワークフロー

RPA with Autopilot: what RPA is good for, how to brief a workflow, the role of UI Automation, and where human review matters most.

Robotic Process Automation (RPA) automates repetitive, rule-based work across the systems people use every day. With Autopilot, you describe the work in plain language and it produces a runnable workflow. Your part is to describe it well and review what comes back.

RPA が有効な用途

RPA is best for well-defined, deterministic work, especially where systems have no usable API:

  • ファイルやスプレッドシートの読み取りと変換。
  • システム間でデータを移動し、レコードを更新します。
  • より大きなプロセスの一部として API を呼び出す。
  • デスクトップ、Web、および仮想アプリケーションをインターフェイスを介して駆動します。

求めることができるもの

Building a new workflow is only the starting point. Autopilot works across the whole life of an automation, so common requests include:

  • 説明、一連の手動ステップ、プロセス ドキュメント、または Robotic Enterprise Framework (REFramework) などのテンプレートから新しいワークフローを構築する
  • 既存のワークフローを再構築、ステップの追加、アクティビティの入れ替えてリファクタリングおよび拡張する
  • レガシ プロジェクトで作業する。古いプロジェクトの種類を認識し、その制約内で動作させる。
  • テストを追加し、アサーションを含むテスト ケースを生成して実行し、動作を確認します。
  • 既存のオートメーションの品質、エラー処理の欠落、リスクの高い選択を何も変更せずにレビューする。
  • エラーを読み取って原因を特定し、修正を提案することで、失敗したワークフローをデバッグします。
  • パッケージ化して再利用する - プロジェクトを Orchestrator にパブリッシュするか、共有ロジックを再利用可能なライブラリに抽出します。

適切な RPA 要求とは

Autopilot produces more accurate output when you describe the outcome you want rather than listing activities. Provide the business context — what the process does, what triggers it, and what success looks like — and Autopilot determines the implementation.

A good brief includes:

  • 手順を順番に。
  • 関連するシステムとアプリケーション。
  • 入力と出力、およびその型。
  • ワークフローが接触する画面またはデータです。

For general prompting guidance, refer to Writing effective prompts. An existing process document is a strong starting point, as long as real customer data is removed first.

ローコードまたはコードの選択

UiPath RPA ワークフローは、ローコード ワークフローまたはコード化されたワークフローとして構築でき、以下を実行します。

  • Low-code workflows (.xaml) are the reviewable, auditable default. They have the widest activity coverage, and cross-platform projects can be edited in Studio Web as well. Most automations fit here.
  • コード化されたワークフロー (.cs、C#) は、複雑なデータ変換、解析、カスタム型など、ロジック負荷の高いコンポーネントに適しています。

Both can also be mixed in one project. Choosing the shape up front, rather than mid-build, avoids a restructure later; without direction, Autopilot defaults to low-code.

UI Automation を使用してアプリケーションを推進する

The hardest and most valuable RPA work is driving an application's interface the way a person would — by clicking, typing, reading values, and moving through screens — for systems that offer no API. UiPath's UI Automation is what makes this reliable, and Autopilot uses it directly.

インターフェイスのキャプチャ方法

Rather than guessing how to find each element, Autopilot explores the application at design time: it captures the screen, identifies the elements to act on, and builds the steps to navigate and fill them. Captured elements are stored as stable targets in an Object Repository, so the same button or field can be reused across workflows and maintained in one place.

レジリエンス(回復力)の維持

インターフェースは変化しますが、UI Automation はそれを吸収するように構築されています。

機能機能
セレクターの修復インターフェイスがシフトしたときにターゲットを適応させます。完全にブレークするのではなく、ターゲットを適応させます。
診断障害発生後のログ、記録、スクリーンショットを読み取り、何が問題だったのかを平易な言葉で説明します。
ScreenPlayUiPath の AI を活用したコンピューター ビジョン実行時にアプリケーションとデータに適応し、予測不可能な画面に対するクリティカル パスのフォールバックとして機能します。

稼働中のアプリケーションがない場合

If the target application is not available to capture against, Autopilot still produces the real workflow, leaving each interaction marked for a developer to finish the capture in Studio. Generated selectors are best treated as drafts either way, and confirmed against the real application.

UI automation is also the most expensive kind of RPA to build. It takes more time and effort than file, data, or API work, so an API is the better path wherever one exists.

理解する価値のある RPA 規則

RPA projects have house rules worth stating once, rather than repeating every session. Common examples:

  • クラシック セットではなくモダン デザイン アクティビティ。
  • UI アクティビティが [アプリケーション/ブラウザーを使用] スコープ内に保持される
  • [コードを呼び出し] よりもネイティブ アクティビティを優先
  • 既存の構成ファイルと記録されたワークフローは、上書きされるのではなくそのまま残ります。

You can capture these conventions in an AGENTS.md file at the project root. Autopilot reads and follows the instructions defined there — folder naming rules, architecture decisions, coding standards — for the duration of the session.

強みと限界

Autopilot is strong at greenfield, well-structured RPA and at the first version of a workflow. It is weaker, and needs closer review, on:

  • 複雑なセレクターや壊れやすいセレクター
  • 特注のエンタープライズ コネクタ。
  • アクティビティの通常とは異なる選択。一般的なフォールバックが忍び寄る可能性があります。

How Autopilot generates RPA workflows

Starting with Studio Desktop STS build 2026.0.197, Autopilot generates and edits RPA workflows through an iterative reasoning loop. On each request, Autopilot works in three phases:

  1. Discovery — Autopilot reads your project structure, existing workflows, and relevant activity examples to gather context.
  2. Generation — Autopilot creates or edits the XAML based on your request and the gathered context.
  3. Validation and refinement — Autopilot checks for errors and applies fixes, repeating the cycle if needed.

Because Autopilot reads your project during the Discovery phase, it can reference and reuse workflows already in your project. Autopilot is aware of your current file, selected activity, and variable definitions — you do not need to explain your project structure before asking a question or making a request.

Context is also maintained across messages in the same session: a follow-up request such as "undo the last change" applies to the most recent operation, not the entire workflow.

For complex, multi-step tasks, allow Autopilot to complete its execution cycle before sending a follow-up message. Interrupting mid-task may leave the project in an intermediate state.

ツール

Autopilot leverages a range of tools to support your automation work. By default, all tools are enabled. Autopilot can:

  • Understand, create, edit, debug, publish, and deploy automations.
  • Install and update dependencies.
  • Fix errors.
  • Create and manage test cases.
  • Troubleshoot production errors.
  • Run PowerShell commands or search the web.
  • Make a plan, spin up subagents, and maintain persistent memory for your specific user account.

スキル

Autopilot automatically loads relevant skills from the UiPath skills catalog based on the task context. Skills are instruction bundles that teach Autopilot how to perform specific UiPath tasks using platform conventions.

For the full list of skills, refer to the UiPath skills repository.

その他のプロンプトを試す

  • REFramework テンプレートから [ BankStatementReconciliationという新しい RPA プロジェクトを作成します。
  • 最新の Outlook メールの件名「Invoice」から添付ファイルをダウンロードして ./inbox/に保存する RPA ワークフローを作成します。
  • [注文を送信] ステップの周囲に [トライ キャッチ] を追加して、ビジネス例外がログに記録され、トランザクションが [失敗] に設定されるようにします。
  • このプロジェクトを検証し、アナライザーの警告を修正します。

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得