> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/docs/docs-ja/hajimeni/core-functionalities/how-is-fix-time-calculated.md).

# 修正時間はどのように計算されるか

### Fix Timeとは？

修正時間は、セキュリティ問題の修復にどれくらい時間がかかるかのおおよその見積もりです。正確ではありませんが、必要な相対的な作業量に基づいて優先順位を付け、計画を立てるのに役立ちます。

### 算出方法

Aikido では、問題の種類ごとに独自のアルゴリズムを使用しています。仕組みは次のとおりです。

#### 🧬 依存関係（SCA）問題

修正時間はバージョンアップの種類によって異なります。

* マイナーアップグレード（例: 4.5.1 → 4.5.2）→ 5〜15分
* メジャーアップグレード（例: 1.0 → 3.0、またはEOLの境界をまたぐ場合）→ 少なくとも1時間

#### 🔍 SAST（コードの問題）

計算式: 問題数 × 問題種別ごとの固定時間

例:

* SQLインジェクション ≈ 1件あたり30分
* シークレット ≈ 1件あたり10分

#### ☁️ クラウドの問題

SAST と同様のロジックです。問題種別ごとの固定値に件数を掛けます。

#### 🔑 シークレット

1件ごとに固定の見積もり（例: キーのローテーション = 5〜10分）。

{% hint style="success" %}
〜がある場合 [Aikido AutoFix ](/docs/docs-ja/autofix-to/overview-aikido-autofix.md)が利用可能な場合、実際の修正時間は短くなります
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/docs/docs-ja/hajimeni/core-functionalities/how-is-fix-time-calculated.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
