@dmsdc-ai/aigentry-deliberation 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/selectors/claude.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "claude",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["claude.ai"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "div.ProseMirror[contenteditable='true']",
|
|
7
|
-
"sendButton": "button[aria-label='Send Message'], button[
|
|
6
|
+
"inputSelector": "div.ProseMirror[contenteditable='true'], div.tiptap.ProseMirror",
|
|
7
|
+
"sendButton": "button[aria-label='Send Message'], button[aria-label='메시지 보내기'], button[aria-label='Send message']",
|
|
8
8
|
"responseSelector": ".font-claude-message .grid-cols-1 .grid .min-w-0",
|
|
9
9
|
"responseContainer": "[data-is-streaming]",
|
|
10
10
|
"streamingIndicator": "[data-is-streaming='true']"
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 60000
|
|
17
17
|
},
|
|
18
|
-
"notes": "Claude web selectors -
|
|
18
|
+
"notes": "Claude web selectors - send button aria-label is locale-dependent (EN: 'Send Message', KR: '메시지 보내기'). Button only appears when input has text."
|
|
19
19
|
}
|
package/selectors/copilot.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "copilot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["copilot.microsoft.com"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "
|
|
7
|
-
"sendButton": "button[
|
|
8
|
-
"responseSelector": ".ac-textBlock,
|
|
6
|
+
"inputSelector": "#userInput, textarea#userInput",
|
|
7
|
+
"sendButton": "button[data-testid='submit-button'], button[aria-label='메시지 제출'], button[aria-label='Submit message']",
|
|
8
|
+
"responseSelector": ".ac-textBlock, [data-content='ai-message']",
|
|
9
9
|
"responseContainer": "[data-content='ai-message'], .response-message",
|
|
10
10
|
"streamingIndicator": ".typing-indicator, .is-streaming"
|
|
11
11
|
},
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 45000
|
|
17
17
|
},
|
|
18
|
-
"notes": "Microsoft Copilot
|
|
18
|
+
"notes": "Microsoft Copilot selectors - send button aria-label is locale-dependent (EN: 'Submit message', KR: '메시지 제출'). Button appears after text input. data-testid='submit-button' is stable."
|
|
19
19
|
}
|
package/selectors/deepseek.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "deepseek",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["chat.deepseek.com", "deepseek.com"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "textarea#chat-input, textarea[placeholder*='
|
|
7
|
-
"sendButton": "button[aria-label='Send'],
|
|
8
|
-
"responseSelector": ".markdown
|
|
6
|
+
"inputSelector": "textarea#chat-input, textarea[placeholder*='Send a message'], textarea[placeholder*='Message'], div[contenteditable='true']",
|
|
7
|
+
"sendButton": "div[role='button'].ds-icon-button, button[aria-label='Send'], button[type='submit']",
|
|
8
|
+
"responseSelector": ".ds-markdown, .ds-markdown--block, .markdown-body",
|
|
9
9
|
"responseContainer": ".chat-message-content",
|
|
10
10
|
"streamingIndicator": ".chat-message--streaming, .typing-indicator"
|
|
11
11
|
},
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 60000
|
|
17
17
|
},
|
|
18
|
-
"notes": "DeepSeek
|
|
18
|
+
"notes": "DeepSeek requires login. Input/response selectors verified from public DOM references. ds-icon-button div[role='button'] is the send trigger."
|
|
19
19
|
}
|
package/selectors/mistral.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "mistral",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["chat.mistral.ai", "mistral.ai"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "
|
|
7
|
-
"sendButton": "button[aria-label='Send'], button[type='submit']",
|
|
6
|
+
"inputSelector": "div.ProseMirror[contenteditable='true'], div[contenteditable='true']",
|
|
7
|
+
"sendButton": "button[aria-label='Send question'], button[aria-label='Send'], button[type='submit']",
|
|
8
8
|
"responseSelector": ".prose, .markdown-body",
|
|
9
9
|
"responseContainer": ".message-assistant, [data-role='assistant']",
|
|
10
10
|
"streamingIndicator": ".animate-pulse, [data-streaming='true']"
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 45000
|
|
17
17
|
},
|
|
18
|
-
"notes": "Mistral Le Chat
|
|
18
|
+
"notes": "Mistral Le Chat uses ProseMirror contenteditable. Send button aria-label='Send question' appears after text input."
|
|
19
19
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "perplexity",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["perplexity.ai", "www.perplexity.ai"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "
|
|
7
|
-
"sendButton": "button[aria-label='Submit'], button[aria-label='
|
|
6
|
+
"inputSelector": "#ask-input, div#ask-input[contenteditable='true']",
|
|
7
|
+
"sendButton": "button[aria-label='Submit'], button[aria-label='제출'], button[type='submit']",
|
|
8
8
|
"responseSelector": ".prose, .markdown-content",
|
|
9
9
|
"responseContainer": "[data-testid='answer-content'], .answer-content",
|
|
10
10
|
"streamingIndicator": ".animate-pulse, [data-testid='streaming-indicator']"
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 45000
|
|
17
17
|
},
|
|
18
|
-
"notes": "Perplexity
|
|
18
|
+
"notes": "Perplexity uses contenteditable div#ask-input. No visible send button — Enter key is the primary send method. sendTurn dispatches Enter key first."
|
|
19
19
|
}
|
package/selectors/poe.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"provider": "poe",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"domains": ["poe.com"],
|
|
5
5
|
"selectors": {
|
|
6
|
-
"inputSelector": "textarea[class*='GrowingTextArea'], textarea[placeholder*='Talk to']",
|
|
7
|
-
"sendButton": "button[class*='SendButton'], button[aria-label='Send message']",
|
|
8
|
-
"responseSelector": "
|
|
9
|
-
"responseContainer": "
|
|
10
|
-
"streamingIndicator": "
|
|
6
|
+
"inputSelector": "textarea[class*='GrowingTextArea'], textarea[placeholder*='Talk to'], textarea[class*='TextArea']",
|
|
7
|
+
"sendButton": "button[class*='SendButton'], button[aria-label='Send message'], button[class*='send']",
|
|
8
|
+
"responseSelector": "[class*='Markdown_markdownContainer'], [class*='markdownContainer']",
|
|
9
|
+
"responseContainer": "[class*='botMessageBubble'], [class*='Message_bot']",
|
|
10
|
+
"streamingIndicator": "[class*='streamingBotMessage'], [class*='ChatMessage_streaming']"
|
|
11
11
|
},
|
|
12
12
|
"timing": {
|
|
13
13
|
"inputDelayMs": 100,
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"pollIntervalMs": 500,
|
|
16
16
|
"streamingTimeoutMs": 45000
|
|
17
17
|
},
|
|
18
|
-
"notes": "Poe
|
|
18
|
+
"notes": "Poe requires login. Uses hashed class names (e.g., GrowingTextArea_xxx, SendButton_xxx) that may change between deployments. Partial class matching (class*=) is used for resilience."
|
|
19
19
|
}
|