monarchai 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 (4) hide show
  1. package/LICENSE +14 -0
  2. package/README.md +35 -0
  3. package/index.js +19 -0
  4. package/package.json +31 -0
package/LICENSE ADDED
@@ -0,0 +1,14 @@
1
+ monarchai — Notice
2
+ Copyright (c) 2026 Cymela, Republic of Serbia.
3
+ All rights reserved.
4
+
5
+ This package is published as a name reservation for the Monarch model line by
6
+ Cymela. It contains no functional software.
7
+
8
+ No licence is granted to use the "Cymela", "Monarch" or "Hyper" names, or any
9
+ associated marks, to identify another product or service, or in any way likely
10
+ to cause confusion as to origin.
11
+
12
+ The metadata file included in this package may be read and inspected freely.
13
+
14
+ Contact: contact@cymela.com
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # monarchai
2
+
3
+ **Reserved for the Monarch model line by Cymela.** See <https://cymela.com>.
4
+
5
+ ## What this is
6
+
7
+ A name reservation, held by the project it names. **Monarch** is Cymela's model
8
+ line; its frontier tier is called **Hyper**. This package is the npm home for
9
+ that line and is published so the name is not taken by an unrelated project.
10
+
11
+ It has no runtime behaviour yet. Requiring it returns metadata describing what
12
+ the name is held for:
13
+
14
+ ```js
15
+ require('monarchai');
16
+ // { name: 'monarchai', reservedFor: 'Monarch — the model line by Cymela', status: 'reserved', … }
17
+ ```
18
+
19
+ ## What this is not
20
+
21
+ - **Not the Cymela CLI.** The terminal coding agent is published separately as
22
+ [`cymela`](https://www.npmjs.com/package/cymela) and installs with
23
+ `npm install -g cymela`. That package and its `cymela` command are unaffected
24
+ by this reservation.
25
+ - **Not a released model.** Nothing here downloads, runs, or provides access to
26
+ a model.
27
+
28
+ ## Naming
29
+
30
+ Cymela is the company. Monarch is the model line. Hyper is the frontier tier
31
+ within that line — so a release reads *Monarch Hyper*, never *Cymela Hyper*.
32
+
33
+ ## Contact
34
+
35
+ <contact@cymela.com> · <https://cymela.com>
package/index.js ADDED
@@ -0,0 +1,19 @@
1
+ // monarchai — name reservation for the Monarch model line by Cymela.
2
+ //
3
+ // This package exists so the name belongs to the project it describes. It has
4
+ // no runtime behaviour yet and is not a dependency of anything; requiring it
5
+ // returns this metadata so the package is inspectable rather than empty.
6
+ //
7
+ // See https://cymela.com
8
+
9
+ 'use strict';
10
+
11
+ module.exports = {
12
+ name: 'monarchai',
13
+ reservedFor: 'Monarch — the model line by Cymela',
14
+ status: 'reserved',
15
+ homepage: 'https://cymela.com',
16
+ contact: 'contact@cymela.com',
17
+ /** Not the Cymela CLI. That ships as `cymela` (npm install -g cymela). */
18
+ notTheCli: 'cymela',
19
+ };
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "monarchai",
3
+ "version": "0.0.1",
4
+ "description": "Reserved for the Monarch model line by Cymela — see https://cymela.com",
5
+ "keywords": [
6
+ "monarch",
7
+ "cymela",
8
+ "ai",
9
+ "llm",
10
+ "model"
11
+ ],
12
+ "homepage": "https://cymela.com",
13
+ "bugs": {
14
+ "url": "https://cymela.com",
15
+ "email": "contact@cymela.com"
16
+ },
17
+ "license": "SEE LICENSE IN LICENSE",
18
+ "author": "Cymela <contact@cymela.com>",
19
+ "main": "index.js",
20
+ "files": [
21
+ "index.js",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
28
+ "scripts": {
29
+ "test": "node -e \"const m=require('./index.js'); if(m.name!=='monarchai') process.exit(1); console.log('ok');\""
30
+ }
31
+ }