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
- Add LLM provider picker to Settings (proxy vs OpenRouter) with
connection test and explicit apply buttons
- Rename all UI-facing strings from ContextD to AutoLog (windows,
API docs, onboarding)
- Fix activity_sessions composite PK insert failures with onConflict
ignore semantics
- Add 2-step onboarding wizard: permissions then LLM provider setup
with error surfacing for keychain failures
- Fix isUsingProxy false positive when endpoint URL is empty string
Copy file name to clipboardExpand all lines: ContextD/Server/OpenAPISpec.swift
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ enum OpenAPISpec {
7
7
{
8
8
"openapi": "3.1.0",
9
9
"info": {
10
-
"title": "ContextD API",
11
-
"description": "Search and browse your recent screen activity. ContextD continuously captures and summarizes what you see on screen, and this API lets you search summaries, list activity, and retrieve structured data from your captures.",
10
+
"title": "AutoLog API",
11
+
"description": "Search and browse your recent screen activity. AutoLog continuously captures and summarizes what you see on screen, and this API lets you search summaries, list activity, and retrieve structured data from your captures.",
12
12
"version": "0.1.0",
13
13
"contact": {
14
-
"name": "ContextD"
14
+
"name": "AutoLog"
15
15
},
16
16
"license": {
17
17
"name": "MIT"
@@ -20,7 +20,7 @@ enum OpenAPISpec {
20
20
"servers": [
21
21
{
22
22
"url": "http://127.0.0.1:21890",
23
-
"description": "Local ContextD instance"
23
+
"description": "Local AutoLog instance"
24
24
}
25
25
],
26
26
"paths": {
@@ -300,7 +300,7 @@ enum OpenAPISpec {
300
300
"get": {
301
301
"operationId": "healthCheck",
302
302
"summary": "Health check",
303
-
"description": "Returns the current status of the ContextD API server and basic database statistics.",
303
+
"description": "Returns the current status of the AutoLog API server and basic database statistics.",
0 commit comments