@sporhq/spor 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/README.md +9 -0
- package/index.js +11 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# spor
|
|
2
|
+
|
|
3
|
+
**Spor** (Norwegian: *track, trace*) is a shared memory substrate for teams and
|
|
4
|
+
their agents — a knowledge graph that records decisions, the reasons behind
|
|
5
|
+
them, and the traces work leaves as it happens. Briefings are compiled from the
|
|
6
|
+
graph; corrections flow back into it.
|
|
7
|
+
|
|
8
|
+
This package currently reserves the name while the project is prepared for
|
|
9
|
+
release. Project home: [sporhq.io](https://sporhq.io).
|
package/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// Spor — a shared memory substrate for teams and agents.
|
|
4
|
+
// The real package is under active development; this release reserves the
|
|
5
|
+
// name and points at the project home.
|
|
6
|
+
|
|
7
|
+
module.exports = {
|
|
8
|
+
name: 'spor',
|
|
9
|
+
homepage: 'https://sporhq.io',
|
|
10
|
+
status: 'pre-release',
|
|
11
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sporhq/spor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Spor — a shared memory substrate for teams and agents. Decisions, their reasons, and the traces they leave. Under active development.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"knowledge-graph",
|
|
7
|
+
"context",
|
|
8
|
+
"memory",
|
|
9
|
+
"agents",
|
|
10
|
+
"substrate",
|
|
11
|
+
"provenance"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://sporhq.io",
|
|
14
|
+
"repository": "github:sporhq/spor",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Anthony Allen",
|
|
17
|
+
"main": "index.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"index.js",
|
|
20
|
+
"README.md"
|
|
21
|
+
]
|
|
22
|
+
}
|