deadass 0.0.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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Seers
2
+
3
+ Seers is an extensible AI ecosystem for composing prompts, agents, and interpretive workflows.
4
+
5
+ The name comes from the role of the seer: someone who reads signs, finds meaning, and gives shape to what is not yet clear. That framing matters for AI systems. Prompting is not just instruction writing. It is the craft of shaping context, intent, memory, and response into something software can act on.
6
+
7
+ ## Vision
8
+
9
+ Seers aims to become a foundation for AI systems that are easy to extend, inspect, and compose. The project will focus on practical building blocks for:
10
+
11
+ - Prompt and context composition
12
+ - Agent capabilities and tools
13
+ - Reusable workflow primitives
14
+ - Structured memory and narrative state
15
+ - Human-readable interfaces for AI behavior
16
+
17
+ ## Status
18
+
19
+ This package is currently reserved as the starting point for the project.
20
+
21
+ ## License
22
+
23
+ MIT
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "deadass",
3
+ "version": "0.0.0",
4
+ "description": "An extensible AI ecosystem for composing prompts, agents, and interpretive workflows.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "ai",
9
+ "agents",
10
+ "prompting",
11
+ "prompts",
12
+ "seers",
13
+ "storytelling",
14
+ "workflows"
15
+ ],
16
+ "files": [
17
+ "README.md"
18
+ ]
19
+ }