renma 0.5.0 → 0.5.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 +35 -4
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# Renma
|
|
2
2
|
|
|
3
|
-
Renma is
|
|
3
|
+
Renma is an opinionated Context Repository toolkit for LLM-era software teams.
|
|
4
4
|
|
|
5
|
-
It helps teams
|
|
5
|
+
It helps teams manage reusable, human-curated context assets in Git so agents, coding tools, and future AI runtimes can consume team knowledge more safely and consistently.
|
|
6
6
|
|
|
7
|
-
Renma
|
|
7
|
+
Renma is the deterministic governance and health layer around that repository knowledge. Instead of letting critical knowledge get copied into many prompts or buried in one-off Markdown files, Renma treats it as a software asset: named, owned, versioned, linked, checked in CI, and reviewed with deterministic diagnostics and scan findings.
|
|
8
|
+
|
|
9
|
+
Renma now supports `scan`, `catalog`, `ownership`, `graph`, focused graph views, `readiness`, repeated-context diagnostics, semantic diff, `ci-report`, `inspect`, `scaffold`, `suggest-semantic-split`, and security diagnostics.
|
|
8
10
|
|
|
9
11
|
Renma is especially useful when a repository contains agent-facing material such as:
|
|
10
12
|
|
|
@@ -14,7 +16,7 @@ Renma is especially useful when a repository contains agent-facing material such
|
|
|
14
16
|
- Team-owned context assets that should outlive a single prompt
|
|
15
17
|
- References and examples that agents should be able to cite or inspect
|
|
16
18
|
|
|
17
|
-
Renma is not
|
|
19
|
+
Renma is not an agent runtime, not a prompt library, not a vector database, and not a general Markdown linter. Markdown is the storage format today; the product is the catalog, dependency graph, ownership model, and readiness checks around agent-consumable repository knowledge.
|
|
18
20
|
|
|
19
21
|
Use Renma when you need to answer repository-level questions such as:
|
|
20
22
|
|
|
@@ -24,6 +26,14 @@ Use Renma when you need to answer repository-level questions such as:
|
|
|
24
26
|
- Which product decisions, bug history, testing strategy, or platform guidance should be promoted from one-off prompt text into shared context?
|
|
25
27
|
- What changed in the agent-facing knowledge catalog during this pull request?
|
|
26
28
|
|
|
29
|
+
## What Is a Context Repository?
|
|
30
|
+
|
|
31
|
+
A Context Repository is a Git-reviewed source of truth for reusable knowledge that LLMs and agents can consume.
|
|
32
|
+
|
|
33
|
+
It is not a prompt library. It is not a vector database. It is not an agent memory.
|
|
34
|
+
|
|
35
|
+
It is a place where teams maintain context assets with ownership, lifecycle state, dependencies, references, and review history.
|
|
36
|
+
|
|
27
37
|
## The Layer Model
|
|
28
38
|
|
|
29
39
|
```text
|
|
@@ -45,6 +55,18 @@ Repository
|
|
|
45
55
|
|
|
46
56
|
Tools decide what to do at runtime. Skills tell an agent when and how to use a capability. Context assets hold reusable knowledge. Renma catalogs and validates the layer underneath so tools and agents are not guessing from stale, orphaned, duplicated, or unowned files.
|
|
47
57
|
|
|
58
|
+
## How Renma Relates to RAG and Agent Memory
|
|
59
|
+
|
|
60
|
+
Renma does not replace RAG, vector databases, or agent memory.
|
|
61
|
+
|
|
62
|
+
RAG helps systems retrieve relevant information. Renma helps teams organize reusable knowledge before it is retrieved. Agent memory grows from an agent's experience. A Context Repository grows from human-curated knowledge.
|
|
63
|
+
|
|
64
|
+
These layers can work together:
|
|
65
|
+
|
|
66
|
+
```text
|
|
67
|
+
People create knowledge -> Renma organizes it -> RAG retrieves it -> agents consume it -> agent memory records experience
|
|
68
|
+
```
|
|
69
|
+
|
|
48
70
|
## Why Renma?
|
|
49
71
|
|
|
50
72
|
As AI-agent repositories grow, expertise often gets duplicated across skills and prompts. Testing heuristics, domain risks, tool usage notes, product decisions, and team-specific contracts drift apart. Ownership becomes unclear. References break. Deprecated guidance remains reachable. New engineers and agents cannot tell which knowledge is authoritative.
|
|
@@ -484,6 +506,15 @@ Renma reports deterministic safety findings for agent-facing operational instruc
|
|
|
484
506
|
|
|
485
507
|
These findings are guardrails for review. They do not replace secret scanning, SAST, dependency scanning, or human security review.
|
|
486
508
|
|
|
509
|
+
## Design Notes
|
|
510
|
+
|
|
511
|
+
Renma is part of a broader idea: treating reusable LLM context as software-managed knowledge.
|
|
512
|
+
|
|
513
|
+
- [Beyond Prompt Engineering: Why We Need Context Repositories](https://kazucocoa.blog/2026/06/26/beyond-prompt-engineering-why-we-need-context-repositories/)
|
|
514
|
+
- Introducing Renma: An Opinionated Context Repository for LLMs (planned)
|
|
515
|
+
- Where Does a Context Repository Fit in the AI Stack? (planned)
|
|
516
|
+
- Context Engineering Is Software Engineering (planned)
|
|
517
|
+
|
|
487
518
|
## Development
|
|
488
519
|
|
|
489
520
|
```bash
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "renma",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "An opinionated Context Repository toolkit for LLM-era software teams.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://github.com/KazuCocoa/renma#readme",
|
|
14
14
|
"keywords": [
|
|
15
|
+
"context-repository",
|
|
16
|
+
"context-engineering",
|
|
15
17
|
"llm",
|
|
16
|
-
"agents",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"cli"
|
|
20
|
-
"codex",
|
|
21
|
-
"skills"
|
|
18
|
+
"ai-agents",
|
|
19
|
+
"knowledge-management",
|
|
20
|
+
"developer-tools",
|
|
21
|
+
"cli"
|
|
22
22
|
],
|
|
23
23
|
"type": "module",
|
|
24
24
|
"bin": {
|