@anvos/reserved 0.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.
Files changed (3) hide show
  1. package/README.md +19 -0
  2. package/index.js +15 -0
  3. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @anvos/reserved
2
+
3
+ Scope reservation for **Anvos** — an always-on, connected, conversational
4
+ **agentic operating layer** for the desktop. It builds on a multi-agent core
5
+ (Manager / worker orchestration, a universal harness matrix, a state ledger, and
6
+ a memory vault) and adds a background runtime, scheduler, report engine, connector
7
+ broker, and voice.
8
+
9
+ Publishing this public package **holds the `@anvos` npm scope**. It is not the
10
+ published product — Anvos is a proprietary desktop application whose source
11
+ packages (`@anvos/core`, `@anvos/desktop`) are private and not distributed via
12
+ npm.
13
+
14
+ - Project & source: <https://github.com/AntI-HI/anvos>
15
+
16
+ ---
17
+
18
+ © 2026 Anvos. All rights reserved. `UNLICENSED` — not licensed for use, copying,
19
+ or distribution.
package/index.js ADDED
@@ -0,0 +1,15 @@
1
+ // @anvos/reserved — npm scope reservation.
2
+ //
3
+ // Anvos is an always-on, connected, conversational agentic operating layer for
4
+ // the desktop, built on a multi-agent core (Manager/worker orchestration, a
5
+ // universal harness matrix, state ledger, and memory vault). Publishing this
6
+ // public package holds the "@anvos" scope; it is NOT the published product.
7
+ //
8
+ // Project & source: https://github.com/AntI-HI/anvos
9
+ 'use strict';
10
+
11
+ module.exports = {
12
+ scope: '@anvos',
13
+ reserved: true,
14
+ url: 'https://github.com/AntI-HI/anvos',
15
+ };
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@anvos/reserved",
3
+ "version": "0.0.1",
4
+ "description": "Scope reservation for @anvos — an always-on, connected, conversational agentic operating layer for the desktop. Publishing this public package holds the @anvos npm scope for the (private, unpublished) @anvos/core and @anvos/desktop packages. Not the product. See the repository.",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "keywords": [
9
+ "anvos",
10
+ "agents",
11
+ "multi-agent",
12
+ "agentic",
13
+ "orchestration",
14
+ "reserved"
15
+ ],
16
+ "homepage": "https://github.com/AntI-HI/anvos#readme",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/AntI-HI/anvos.git"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/AntI-HI/anvos/issues"
23
+ },
24
+ "license": "UNLICENSED",
25
+ "author": "AntI-HI",
26
+ "main": "index.js",
27
+ "files": [
28
+ "index.js",
29
+ "README.md"
30
+ ],
31
+ "engines": {
32
+ "node": ">=18"
33
+ }
34
+ }