@jrpool/kilotest 29.0.0 → 30.0.1

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.
@@ -0,0 +1,18 @@
1
+ {
2
+ "schema_version": "v1",
3
+ "name_for_human": "Kilotest",
4
+ "name_for_model": "kilotest",
5
+ "description_for_human": "Ensemble testing of web pages for accessibility, usability, and standard conformance.",
6
+ "description_for_model": "Use Kilotest to retrieve test results about the accessibility, usability, and standard conformance of any web page that has been tested by Kilotest at selectable levels of granularity.",
7
+ "auth": {
8
+ "type": "none"
9
+ },
10
+ "api": {
11
+ "type": "openapi",
12
+ "url": "https://kilotest.com/openapi.yaml",
13
+ "is_user_authenticated": false
14
+ },
15
+ "logo_url": "https://kilotest.com/favicon.ico",
16
+ "contact_email": "info@kilotest.com",
17
+ "legal_info_url": "https://github.com/jrpool/kilotest/blob/main/LICENSE"
18
+ }
package/index.js CHANGED
@@ -212,6 +212,12 @@ const requestHandler = async (request, response) => {
212
212
  setHeaders('text/html', '/index.html', 'medium');
213
213
  response.end(homePage);
214
214
  }
215
+ // Otherwise, if it is for the the AI plugin specification:
216
+ else if (pathname === '/.well-known/ai-plugin.json') {
217
+ const aiPlugin = await fs.readFile('.well-known/ai-plugin.json', 'utf8');
218
+ setHeaders('application/json', '/.well-known/ai-plugin.json', 'low');
219
+ response.end(aiPlugin);
220
+ }
215
221
  // Otherwise, if it is for the the crawler specification:
216
222
  else if (pageName === 'robots.txt') {
217
223
  const robots = await fs.readFile('robots.txt', 'utf8');
package/llms-full.txt CHANGED
@@ -6,6 +6,8 @@ Kilotest is an application that performs ensemble testing of web pages for acces
6
6
 
7
7
  ## What Kilotest does for AI agents
8
8
 
9
+ Kilotest is deployed as a service with a public URL. Kilotest can test only web pages that can be accessed from the public Internet and that are not protected by authentication or other access controls. Kilotest has not implemented any mechanism for testing private, internal, password-protected, or otherwise restricted pages.
10
+
9
11
  An LLM cannot produce for an AI agent thorough, accurate, and inexpensive information about the front-end quality of a web page. To get such information, the agent needs to select and use specialized tools. However, such selection and use, too, require specialized skills that LLMs lack. Kilotest assumes responsibility for these functions. Kilotest:
10
12
 
11
13
  - selects, as tools, an ensemble of 10 rule engines that implement tests for, in total, more than a thousand rules for front-end quality
package/openapi.yaml CHANGED
@@ -9,7 +9,7 @@ info:
9
9
  repository: https://github.com/jrpool/kilotest
10
10
 
11
11
  servers:
12
- - url: https://kilotest.com/api
12
+ - url: https://kilotest.com
13
13
  description: Kilotest production server
14
14
 
15
15
  paths:
@@ -60,8 +60,8 @@ paths:
60
60
  /api/reportIssue/{issueID}/{timeStamp}/{jobID}:
61
61
  post:
62
62
  operationId: getReportIssue
63
- summary: Get details about a specific issue in a specific report
64
- description: Returns details about a single issue within a specific report, including which HTML elements exhibit the issue and, for each such element, URLs for retrieving tool-by-tool diagnoses of the issue on the element.
63
+ summary: Get details about a specific issue in a specific report (NOT YET IMPLEMENTED)
64
+ description: Returns details about a single issue within a specific report, including which HTML elements exhibit the issue and, for each such element, URLs for retrieving tool-by-tool diagnoses of the issue on the element. NOT YET IMPLEMENTED.
65
65
  parameters:
66
66
  - name: issueID
67
67
  in: path
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jrpool/kilotest",
3
- "version": "29.0.0",
3
+ "version": "30.0.1",
4
4
  "description": "An ensemble testing service with a focus on accessibility",
5
5
  "main": "index.js",
6
6
  "scripts": {