mema-kit 1.0.6 → 1.1.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.
- package/README.md +88 -38
- package/docs/guide.md +122 -218
- package/package.json +2 -2
- package/skills/_memory-protocol.md +37 -24
- package/skills/mema.challenge/SKILL.md +121 -0
- package/skills/mema.clarify/SKILL.md +109 -0
- package/skills/mema.create-skill/SKILL.md +110 -43
- package/skills/mema.implement/SKILL.md +88 -104
- package/skills/mema.onboard/SKILL.md +180 -338
- package/skills/mema.plan/SKILL.md +79 -135
- package/skills/mema.recall/SKILL.md +69 -67
- package/skills/mema.research/SKILL.md +109 -0
- package/skills/mema.roadmap/SKILL.md +134 -0
- package/skills/mema.seed/SKILL.md +88 -0
- package/skills/mema.specify/SKILL.md +120 -0
- package/skills/mema.tasks/SKILL.md +128 -0
- package/templates/agent/lessons.md +16 -0
- package/templates/agent/patterns.md +16 -0
- package/templates/features/feature/plan.md +23 -0
- package/templates/features/feature/spec.md +30 -0
- package/templates/features/feature/status.md +23 -0
- package/templates/features/feature/tasks.md +16 -0
- package/templates/index.md +17 -5
- package/templates/product/challenge.md +23 -0
- package/templates/product/clarify.md +23 -0
- package/templates/product/research.md +21 -0
- package/templates/product/roadmap.md +26 -0
- package/templates/product/seed.md +11 -0
- package/templates/project/architecture.md +28 -0
- package/templates/project/decisions/decision.md +23 -0
- package/templates/project/requirements.md +16 -0
- package/templates/project/structure.md +32 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# [Project Name] — Research
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Existing Solutions
|
|
6
|
+
|
|
7
|
+
| Solution | Strengths | Weaknesses | Relevance |
|
|
8
|
+
|----------|-----------|------------|-----------|
|
|
9
|
+
| [Name] | [+] | [-] | [high/med/low] |
|
|
10
|
+
|
|
11
|
+
## Market Context
|
|
12
|
+
|
|
13
|
+
[Market size, trends, opportunity]
|
|
14
|
+
|
|
15
|
+
## Technical Options
|
|
16
|
+
|
|
17
|
+
[Key technology choices evaluated, with tradeoffs]
|
|
18
|
+
|
|
19
|
+
## Sources
|
|
20
|
+
|
|
21
|
+
- [Title](URL)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# [Project Name] — Roadmap
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Problem Statement
|
|
6
|
+
|
|
7
|
+
[One paragraph: what problem this solves and for whom]
|
|
8
|
+
|
|
9
|
+
## Value Proposition
|
|
10
|
+
|
|
11
|
+
[Why someone would choose this over alternatives]
|
|
12
|
+
|
|
13
|
+
## Feature List (Priority Order)
|
|
14
|
+
|
|
15
|
+
| # | Feature | Description | Priority | Directory |
|
|
16
|
+
|---|---------|-------------|----------|-----------|
|
|
17
|
+
| 001 | [Name] | [One line] | P1 — MVP | `features/001-name/` |
|
|
18
|
+
| 002 | [Name] | [One line] | P2 | `features/002-name/` |
|
|
19
|
+
|
|
20
|
+
## MVP Scope
|
|
21
|
+
|
|
22
|
+
[The smallest version that delivers real value — typically the P1 feature(s) only]
|
|
23
|
+
|
|
24
|
+
## Out of Scope (for now)
|
|
25
|
+
|
|
26
|
+
[Features explicitly deferred to a later phase]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# [Project Name] — Seed
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Raw Idea
|
|
6
|
+
|
|
7
|
+
[The idea exactly as described — no editing, no judgment]
|
|
8
|
+
|
|
9
|
+
## Initial Thoughts
|
|
10
|
+
|
|
11
|
+
[Stream of consciousness — half-formed ideas, questions, concerns are all welcome here]
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Project Architecture
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Stack
|
|
6
|
+
|
|
7
|
+
- **Language:** [Language + version]
|
|
8
|
+
- **Runtime:** [Runtime + version if applicable]
|
|
9
|
+
- **Framework:** [Framework + version]
|
|
10
|
+
- **Database:** [Database + version if applicable]
|
|
11
|
+
- **Testing:** [Testing framework]
|
|
12
|
+
|
|
13
|
+
## Structure
|
|
14
|
+
|
|
15
|
+
- `src/` — [Description]
|
|
16
|
+
- `tests/` — [Description]
|
|
17
|
+
|
|
18
|
+
## Architecture
|
|
19
|
+
|
|
20
|
+
[Architecture pattern and key design decisions — 2-4 sentences]
|
|
21
|
+
|
|
22
|
+
Entry point: [path/to/entry.file]
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
- `[run command]` — Start development
|
|
27
|
+
- `[test command]` — Run tests
|
|
28
|
+
- `[build command]` — Build for production
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# [Decision Title]
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Context
|
|
6
|
+
<!-- What situation or question prompted this decision? What problem are we solving? -->
|
|
7
|
+
|
|
8
|
+
## Decision
|
|
9
|
+
<!-- What was decided? Be specific and concrete. -->
|
|
10
|
+
|
|
11
|
+
## Options Considered
|
|
12
|
+
|
|
13
|
+
### Option A: [Name]
|
|
14
|
+
<!-- Brief description. Why chosen/rejected. -->
|
|
15
|
+
|
|
16
|
+
### Option B: [Name]
|
|
17
|
+
<!-- Brief description. Why chosen/rejected. -->
|
|
18
|
+
|
|
19
|
+
## Reasoning
|
|
20
|
+
<!-- Why this option was selected. What factors mattered most? What trade-offs were accepted? -->
|
|
21
|
+
|
|
22
|
+
## Consequences
|
|
23
|
+
<!-- What are the implications? What does this enable or constrain? Any known trade-offs or risks? -->
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Project Requirements
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
[What this project does and for whom — 1-2 sentences]
|
|
8
|
+
|
|
9
|
+
## Key Requirements
|
|
10
|
+
|
|
11
|
+
- [Core requirement]
|
|
12
|
+
- [Core requirement]
|
|
13
|
+
|
|
14
|
+
## Constraints
|
|
15
|
+
|
|
16
|
+
- [Technical, time, or other constraints]
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Repository Structure
|
|
2
|
+
|
|
3
|
+
**Status:** active | **Updated:** YYYY-MM-DD
|
|
4
|
+
|
|
5
|
+
## Directory Tree
|
|
6
|
+
|
|
7
|
+
<!-- Annotated 2–3 level tree. Update when directories are added or removed. -->
|
|
8
|
+
<!-- Format: path/ — description -->
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
project-root/
|
|
12
|
+
├── src/ — [description]
|
|
13
|
+
│ └── ...
|
|
14
|
+
└── package.json — [description]
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Entry Points
|
|
18
|
+
|
|
19
|
+
<!-- Key files to start reading for each subsystem -->
|
|
20
|
+
- `path/to/entry.file` — [what it does]
|
|
21
|
+
|
|
22
|
+
## Source vs. Generated
|
|
23
|
+
|
|
24
|
+
<!-- What is hand-written vs. auto-generated vs. gitignored -->
|
|
25
|
+
- **Source:** `src/`, `tests/`
|
|
26
|
+
- **Generated:** `dist/`, `node_modules/`
|
|
27
|
+
- **Gitignored:** `.mema/`, `node_modules/`, `.env`
|
|
28
|
+
|
|
29
|
+
## Where to Find X
|
|
30
|
+
|
|
31
|
+
<!-- Quick-reference for navigating the codebase -->
|
|
32
|
+
- **[Component type]:** `path/to/dir/`
|