You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/ai-sre/knowledge.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,9 @@ Knowledge Packs are one type of AI SRE resource and follow the same two-level sc
30
30
31
31
---
32
32
33
-
`DUTY.md` is the **table of contents entry point** for the entire Knowledge Pack. It is the catalog itself — the agent reads `DUTY.md` in full, then fetches other files on demand via `@filename` references. The system does not attach a separate file listing alongside `DUTY.md`; the catalog is the body.
33
+
`DUTY.md` is the **table of contents entry point** for the entire Knowledge Pack. It is the catalog itself — the agent reads `DUTY.md` in full, then fetches other files on demand via `@filename` references. As long as `DUTY.md` exists, the system does not attach a separate file listing alongside it; the catalog is the body.
34
+
35
+
If a scope has knowledge files but no `DUTY.md` yet, that scope is not silently skipped: the system includes a generated, authoritative file index in the session's knowledge manifest, and explicitly instructs the agent to read the indexed files relevant to the task at hand before doing substantive work (when there are only a few files, read them all) — rather than skipping this step and jumping straight to conclusions. Once a `DUTY.md` is created, this generated-index guidance goes away and the "catalog is the body" model resumes.
34
36
35
37
References use the `@<path>` style, where the path points to another file within the same pack. Subdirectories are supported (e.g., `@runbooks/api-5xx.md`):
36
38
@@ -86,6 +88,8 @@ Go to the **Knowledges** management page to create, edit, enable/disable, or del
86
88
</Step>
87
89
</Steps>
88
90
91
+
**Document distillation**: Knowledge files only support the plain-text formats listed in the table above. If you upload a document in a format that can't be stored directly — PDF, Word, Excel, PowerPoint, or HTML — the console notes that the format can't be used by the agent directly and offers a **Go to chat for analysis** entry. Clicking it starts a new AI SRE session with the document carried in as an attachment; the agent reads the document and distills it into a Markdown knowledge file, which is saved into the current Knowledge Pack after your confirmation.
92
+
89
93
**Reference consistency checks**: when you save a file, any `@reference` pointing to a file that does not exist in the pack returns a non-blocking unresolved-reference warning (the save still completes). When you delete a file that is still referenced by other files, a still-referenced conflict prompt appears first — you can choose to **force delete**.
90
94
91
95
<Note>
@@ -100,7 +104,7 @@ Knowledge is not all loaded at once — it follows a **catalog-first, expand-on-
100
104
101
105
<Steps>
102
106
<Steptitle="Session start: load the catalog">
103
-
When a session starts, the system loads the current scope's `DUTY.md` into the session (no separate file list attached). Sessions bound to a team load both the account-level and that team's `DUTY.md`; sessions not bound to a team load only the account-level one.
107
+
When a session starts, the system loads the current scope's `DUTY.md` into the session (no separate file list is attached when `DUTY.md` exists). Sessions bound to a team load both the account-level and that team's `DUTY.md`; sessions not bound to a team load only the account-level one. If a scope has knowledge files but no `DUTY.md` yet, the system instead attaches a generated file index and instructs the agent to read the relevant files before doing substantive work.
104
108
</Step>
105
109
<Steptitle="Follow references to read files">
106
110
After reading `DUTY.md`, the agent decides which `@references` to expand based on the current incident, then reads the corresponding knowledge file for the specific content.
Copy file name to clipboardExpand all lines: en/ai-sre/sessions.mdx
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -336,6 +336,17 @@ When calling `POST /safari/session/create`, you may include `entry_kind` in the
336
336
Sessions with `entry_kind=im` support **in-place environment and team switching** — the IM `/env` and `/scope` commands can rebind the session to a different BYOC runner or team scope without discarding the conversation. Console sessions (`web`) have their environment and team fixed at creation time and do not support in-place switching.
337
337
</Note>
338
338
339
+
## Reply language
340
+
341
+
---
342
+
343
+
Every session determines a **reply language** at creation time. The agent replies in that language for the entire session and never switches midway; reopening the session later continues in the same language.
344
+
345
+
| Entry kind | Where the reply language comes from |
346
+
|---|---|
347
+
| Console (`web`) | Follows the console UI language when the session is created; it is fixed at creation, so switching the UI language afterward does not affect existing sessions |
348
+
| IM / API / automation (`im` / `api` / `automation`) | These entries carry no UI-language signal, so they default to the account's notification language |
Time-window parameters on generated commands (`--start-time` / `--end-time`) accept the same human-friendly formats as the curated commands: relative durations (`7d`, `24h` — interpreted as "now minus duration"), `+7d` ("now plus duration", i.e. a future time), `now`, dates and datetimes (such as `2026-05-01` or `2026-05-01 10:00:00`), and unix timestamps in seconds. In addition, `--since` and `--until` are aliases for `--start-time` and `--end-time` respectively and can be used interchangeably; passing both spellings with different values is an error.
Copy file name to clipboardExpand all lines: en/on-call/incident/search-view-incident.mdx
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,8 +124,13 @@ The top of the Timeline tab provides a Markdown comment box that supports:
124
124
125
125
- Writing notes, troubleshooting memos, or meeting summaries in Markdown syntax
126
126
- Pasting or uploading images directly; screenshots are auto-uploaded and converted into image links
127
+
- Mentioning members with @ in a comment — the mentioned member receives a dedicated personal notification (with the comment content and an incident link, delivered by email and Flashduty App push by default), making it easy to pull the right people into the discussion
127
128
- Appending the published comment as a record on the incident timeline, interleaved with system-generated events for easy retrospection
128
129
130
+
<Note>
131
+
@mention notifications are dedicated personal notifications and are not affected by notification muting such as snooze or silence rules.
132
+
</Note>
133
+
129
134
<Tip>
130
135
Posting a comment requires update permission on the incident. If you only have view access, the comment input box does not appear on the details page.
Copy file name to clipboardExpand all lines: en/on-call/post-mortem/create-edit-post-mortem.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ Once you open the report, you'll enter an online collaborative editor. If you've
34
34
35
35
The editor auto-saves your work, so there's no need to manually click save.
36
36
37
+
When you @mention a member in the report body, the mentioned member receives a personal notification (with an excerpt of the mention and the report details), making it easy to invite the right people to contribute to or review the report.
38
+
37
39
### Inserting Images
38
40
39
41
While editing, you can paste or drag images directly into the editor — monitoring dashboard screenshots, architecture diagrams, or any other key visuals.
@@ -68,6 +70,8 @@ The key metrics panel shows the critical indicators for this incident. You can a
68
70
69
71
Follow-up items are for recording action items that come out of the review — things like "optimize database connection pool settings" or "add cache circuit breaker". Follow-ups can be edited at any time, whether the report is in draft or published status.
70
72
73
+
When you add an **Assignee** to a follow-up item, the system sends that member a personal notification prompting them to follow through; removing an assignee does not send a notification.
Copy file name to clipboardExpand all lines: en/platform/configure-sso.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Flashduty supports Single Sign-On (SSO) via SAML2.0, OIDC, CAS, and LDAP (privat
16
16
| Protocol Type | Select SAML2.0 |
17
17
| Metadata Document | XML document obtained from the identity provider |
18
18
| Field Mapping | Flashduty extracts user email, username, and phone information from the identity provider through mapped fields |
19
-
| Stable User ID Field (`user_id`) | The unique user identifier attribute returned by the identity provider, used to recognize the same member; email or phone changes do not affect recognition. Recommended value: `employee_id`; enter `name_id` to use the NameID (Subject) of the SAML assertion. See [Member Association](#member-association) below |
19
+
| Stable User ID Field (`user_id`) |Optional. The unique user identifier attribute returned by the identity provider, used to recognize the same member; email or phone changes do not affect recognition. If left empty, members are matched by the email/phone fields below. Recommended value: `employee_id`; enter `name_id` to use the NameID (Subject) of the SAML assertion. See [Member Association](#member-association) below |
20
20
| Create Account on Sign In | Enabled by default; when disabled, members must be invited before they can sign in |
21
21
| SSO-only login (`force_sso`) | Enabled by default. When on, every member of this account can sign in only via SSO; password and verification-code sign-in are rejected. See [SSO-only login](#sso-only-login) below |
22
22
| Flashduty Service Provider Info |**Service Provider Metadata** and **Assertion Consumer Service URL** (assertion address for identity provider to call for single sign-on) |
@@ -34,7 +34,7 @@ Flashduty supports Single Sign-On (SSO) via SAML2.0, OIDC, CAS, and LDAP (privat
34
34
| Client ID | Client ID, obtained from identity provider |
| Field Mapping | Flashduty extracts user email, username, and phone information from the identity provider through mapped fields |
37
-
| Stable User ID Field (`user_id`) | The unique user identifier claim used to recognize the same member; email or phone changes do not affect recognition. Recommended value: `sub`. See [Member Association](#member-association) below |
37
+
| Stable User ID Field (`user_id`) |Optional. The unique user identifier claim used to recognize the same member; email or phone changes do not affect recognition. If left empty, members are matched by the email/phone fields below. Recommended value: `sub`. See [Member Association](#member-association) below |
38
38
| Create Account on Sign In | Enabled by default; when disabled, members must be invited before they can sign in |
39
39
| SSO-only login (`force_sso`) | Enabled by default. When on, every member of this account can sign in only via SSO; password and verification-code sign-in are rejected. See [SSO-only login](#sso-only-login) below |
40
40
| Scopes | Specifies the information and functionality permissions the request can access, with support for customization. Defaults to `openid`, `profile`, `email`, `phone`; you can add custom scopes as tags |
@@ -57,7 +57,7 @@ Scopes is a required field. The default values `openid`, `profile`, `email`, `ph
57
57
| CAS Login Path | CAS login path, e.g., `/login`|
58
58
| Skip TLS Check | Optional; when enabled, skips TLS certificate verification, suitable for CAS services using self-signed certificates |
59
59
| Field Mapping | Flashduty extracts user email, username, and phone information from the identity provider through mapped fields |
60
-
| Stable User ID Field (`user_id`) | The unique user identifier used to recognize the same member; email or phone changes do not affect recognition. Recommended value: `principal` (the CAS authenticated username); you can also map it to a returned attribute. See [Member Association](#member-association) below |
60
+
| Stable User ID Field (`user_id`) |Optional. The unique user identifier used to recognize the same member; email or phone changes do not affect recognition. If left empty, members are matched by the email/phone fields below. Recommended value: `principal` (the CAS authenticated username); you can also map it to a returned attribute. See [Member Association](#member-association) below |
61
61
| Create Account on Sign In | Enabled by default; when disabled, members must be invited before they can sign in |
62
62
| SSO-only login (`force_sso`) | Enabled by default. When on, every member of this account can sign in only via SSO; password and verification-code sign-in are rejected. See [SSO-only login](#sso-only-login) below |
63
63
| Flashduty Service Provider Info |**Redirect URL**: Identity provider callback address |
@@ -82,7 +82,7 @@ LDAP single sign-on is only supported in the **private deployment version**.
82
82
| User DN | Defines where to start searching for users, e.g., `ou=people,dc=flashduty,dc=com`|
83
83
| Auth Filter | Custom filter expression for retrieving user DN information, basic form: `(&(mail=%s))`. Note: Opening and closing parentheses are required |
84
84
| Field Mapping | Flashduty extracts user email, username, phone, and Group information from the identity provider through mapped fields. Email is a required mapping field. The Group field defaults to `memberOf` and is used for role and team synchronization |
85
-
| Stable User ID Field (`user_id`) | The unique user identifier attribute used to recognize the same member; email or phone changes do not affect recognition. Recommended value: `uid`; you can also use a stable attribute such as `entryUUID`. See [Member Association](#member-association) below |
85
+
| Stable User ID Field (`user_id`) |Optional. The unique user identifier attribute used to recognize the same member; email or phone changes do not affect recognition. If left empty, members are matched by the email/phone fields below. Recommended value: `uid`; you can also use a stable attribute such as `entryUUID`. See [Member Association](#member-association) below |
86
86
| Create Account on Sign In | Enabled by default; when disabled, members must be invited before they can sign in |
87
87
| SSO-only login (`force_sso`) | Enabled by default. When on, every member of this account can sign in only via SSO; password and verification-code sign-in are rejected. See [SSO-only login](#sso-only-login) below |
88
88
@@ -132,12 +132,12 @@ When using the LDAP protocol, you can automatically synchronize Flashduty roles
132
132
133
133
---
134
134
135
-
During single sign-on, the system associates the user returned by the identity provider with a member of the account. The association method depends on whether the SSO configuration has a **Stable User ID Field** set:
135
+
During single sign-on, the system associates the user returned by the identity provider with a member of the account. The association method depends on whether the SSO configuration has a **Stable User ID Field** set, and this applies to new and existing configurations alike:
136
136
137
137
| Configuration | Association method |
138
138
| --- | --- |
139
-
|New SSO configuration (stable user ID field configured)| Recognizes the same member by the stable user ID returned by the identity provider; email or phone changes do not affect recognition. If the stable user ID is not yet bound, the system first matches an existing member by email or phone and establishes the stable user ID binding |
140
-
|Existing SSO configuration (no stable user ID field) | Members continue to be associated by email or phone; behavior stays unchanged |
139
+
|Stable User ID Field configured | Recognizes the same member by the stable user ID returned by the identity provider; email or phone changes do not affect recognition. If the stable user ID is not yet bound, the system first matches an existing member by email or phone and establishes the stable user ID binding |
140
+
|Stable User ID Field not configured (left empty) | Members continue to be associated by the mapped email or phone fields below; behavior stays unchanged |
141
141
142
142
<Warning>
143
143
Make sure the identity provider always returns a stable and unique user ID. A mapping failure (the identity provider does not return the field) will prevent members from signing in.
Only needed for private deployments. On a private deployment the panel pre-fills the intake address issued by the deployment, and you can override it manually (protocol + domain, no path, e.g. `https://rum.example.com`). Leave it empty to upload to Flashcat SaaS.
115
+
</ParamField>
112
116
</Step>
113
117
<Steptitle="Execute Upload">
114
118
Run the generated script in the project root directory:
@@ -121,6 +125,10 @@ Use Flashduty CLI to upload `sourcemap` files to the Flashduty server.
121
125
--api-key your-api-key \
122
126
./dist
123
127
```
128
+
129
+
<Note>
130
+
For private deployments, prefix the command with the `FLASHCAT_SOURCEMAP_INTAKE_URL` environment variable to upload symbol files to a custom intake, e.g. `FLASHCAT_SOURCEMAP_INTAKE_URL=https://rum.example.com flashcat-cli sourcemaps upload ...` (protocol + domain, no path). When unset, uploads go to Flashcat SaaS. Once "Custom Upload Endpoint" is filled in, the panel-generated command includes this variable automatically.
131
+
</Note>
124
132
</Step>
125
133
</Steps>
126
134
@@ -377,6 +385,9 @@ iOS apps generate dSYM (Debug Symbol) files during compilation, containing the d
0 commit comments