arcmira 0.1.0
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/LICENSE +7 -0
- package/README.md +20 -0
- package/index.js +8 -0
- package/llms.txt +18 -0
- package/package.json +28 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2026 Arcmira. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is proprietary. No license is granted to copy, modify,
|
|
4
|
+
distribute, or create derivative works, except as needed to install
|
|
5
|
+
and use the published npm package in your own applications.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
|
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Arcmira
|
|
2
|
+
|
|
3
|
+
Arcmira is an SF-based AI company and the search engine for the spoken web.
|
|
4
|
+
|
|
5
|
+
This package is the official npm name for Arcmira. It exports public URLs. It is not an SDK.
|
|
6
|
+
|
|
7
|
+
```js
|
|
8
|
+
const arcmira = require("arcmira")
|
|
9
|
+
// arcmira.apiBase === "https://api.arcmira.com/v1"
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
- Product: https://arcmira.com
|
|
13
|
+
- Docs: https://arcmira.com/docs
|
|
14
|
+
- HTTP API: https://api.arcmira.com/v1
|
|
15
|
+
- Agent index: https://arcmira.com/llms.txt (this repo also has `llms.txt`, which points there)
|
|
16
|
+
- Source: https://github.com/arcmira/arcmira
|
|
17
|
+
|
|
18
|
+
The JS/Python SDKs and MCP server will live in sibling repos under [github.com/arcmira](https://github.com/arcmira).
|
|
19
|
+
|
|
20
|
+
Copyright Arcmira. All rights reserved. See `LICENSE`.
|
package/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
homepage: "https://arcmira.com",
|
|
3
|
+
docs: "https://arcmira.com/docs",
|
|
4
|
+
apiBase: "https://api.arcmira.com/v1",
|
|
5
|
+
openapi: "https://api.arcmira.com/v1/openapi.json",
|
|
6
|
+
llmsTxt: "https://arcmira.com/llms.txt",
|
|
7
|
+
docsLlmsTxt: "https://arcmira.com/docs/llms.txt",
|
|
8
|
+
}
|
package/llms.txt
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Arcmira
|
|
2
|
+
|
|
3
|
+
> Arcmira is an SF-based AI company and the search engine for the spoken web.
|
|
4
|
+
|
|
5
|
+
This GitHub repo and the `arcmira` npm package reserve the public name. They are not an SDK. The live agent index is on the website. Fetch that, not a copy inside this package.
|
|
6
|
+
|
|
7
|
+
## Canonical
|
|
8
|
+
|
|
9
|
+
- [Site llms.txt](https://arcmira.com/llms.txt): Fetch this first. Product, API, citation rules.
|
|
10
|
+
- [Docs index](https://arcmira.com/docs/llms.txt): Catalog of every docs page.
|
|
11
|
+
- [OpenAPI](https://api.arcmira.com/v1/openapi.json): HTTP JSON contract at https://api.arcmira.com/v1
|
|
12
|
+
- [Homepage](https://arcmira.com)
|
|
13
|
+
- [Pricing](https://arcmira.com/pricing)
|
|
14
|
+
- [Contact](mailto:hi@arcmira.com): hi@arcmira.com
|
|
15
|
+
|
|
16
|
+
There is no SDK in this package. JS, Python, and MCP clients will ship from sibling repos under https://github.com/arcmira when they exist.
|
|
17
|
+
|
|
18
|
+
Copyright Arcmira. All rights reserved.
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "arcmira",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Arcmira is an SF-based AI company and the search engine for the spoken web.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"author": "Arcmira",
|
|
7
|
+
"homepage": "https://arcmira.com",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/arcmira/arcmira.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/arcmira/arcmira/issues"
|
|
14
|
+
},
|
|
15
|
+
"main": "index.js",
|
|
16
|
+
"files": ["index.js", "README.md", "LICENSE", "llms.txt"],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"arcmira",
|
|
22
|
+
"spoken web",
|
|
23
|
+
"podcast",
|
|
24
|
+
"transcript",
|
|
25
|
+
"mentions",
|
|
26
|
+
"mcp"
|
|
27
|
+
]
|
|
28
|
+
}
|