@organon-methodology/tools 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/dist/mcp/tools.js +9 -9
- package/dist/mcp/tools.js.map +1 -1
- package/dist/templates/config.d.ts +2 -2
- package/dist/templates/config.js +2 -2
- package/dist/templates/skills/domain-feature-design.js +2 -2
- package/dist/templates/skills/domain-feature-design.js.map +1 -1
- package/dist/templates/skills/organon-file-creation.js +1 -1
- package/dist/templates/skills/quality-review.js +1 -1
- package/dist/templates/skills/session-compounding.js +1 -1
- package/dist/templates/skills/verify-and-health.js +1 -1
- package/package.json +1 -1
package/dist/mcp/tools.js
CHANGED
|
@@ -13,7 +13,7 @@ import { verify } from '../core/verify.js';
|
|
|
13
13
|
import { exportKnowledgeGraph } from '../core/export.js';
|
|
14
14
|
export function registerTools(server, projectRoot, config, fs) {
|
|
15
15
|
// 1. Validate frontmatter
|
|
16
|
-
server.tool('organon_validate_frontmatter', 'Validate
|
|
16
|
+
server.tool('organon_validate_frontmatter', 'Validate YAML frontmatter in organon files across 4 stages: schema, references, truthfulness, consistency. Use after editing organon files, when frontmatter looks wrong, or to check metadata accuracy before committing.', {
|
|
17
17
|
files: z.array(z.string()).optional().describe('Specific files to validate (all if omitted)'),
|
|
18
18
|
stages: z.array(z.number().int().min(1).max(4)).optional().describe('Stages: 1=schema, 2=refs, 3=truth, 4=consistency'),
|
|
19
19
|
}, async (args) => {
|
|
@@ -27,7 +27,7 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
27
27
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
28
28
|
});
|
|
29
29
|
// 2. Generate frontmatter
|
|
30
|
-
server.tool('organon_generate_frontmatter', '
|
|
30
|
+
server.tool('organon_generate_frontmatter', 'Generate YAML frontmatter for an organon file by analyzing its content. Use when creating new organon files, when a file is missing frontmatter, or to scaffold metadata for a new ETHOS.md, PHILOSOPHY.md, or PROTOCOL.md.', {
|
|
31
31
|
file: z.string().describe('File path (project-relative)'),
|
|
32
32
|
type: z.enum(['navigation', 'constraints', 'rationale', 'procedures', 'mapping']).optional(),
|
|
33
33
|
scope: z.enum(['product', 'domain', 'feature', 'component', 'meta', 'methodology']).optional(),
|
|
@@ -49,7 +49,7 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
49
49
|
};
|
|
50
50
|
});
|
|
51
51
|
// 3. Query
|
|
52
|
-
server.tool('organon_query', '
|
|
52
|
+
server.tool('organon_query', 'Search and filter organon files by metadata. Use to find relevant files for a task, discover what constraints apply to a scope, check token budgets, or list files by epistemic category (constraint, assertion, rule). Supports filtering by scope, type, priority, name, and token budget.', {
|
|
53
53
|
scope: z.enum(['product', 'domain', 'feature', 'component', 'meta', 'methodology']).optional(),
|
|
54
54
|
type: z.enum(['navigation', 'constraints', 'rationale', 'procedures', 'mapping']).optional(),
|
|
55
55
|
priority: z.enum(['high', 'medium', 'low']).optional(),
|
|
@@ -78,7 +78,7 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
78
78
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
79
79
|
});
|
|
80
80
|
// 4. Health
|
|
81
|
-
server.tool('organon_health', 'Show
|
|
81
|
+
server.tool('organon_health', 'Show project health score and diagnostics. Reports coverage gaps, validation issues, token budgets, file freshness, and an overall score out of 100. Use to check project status, diagnose organon problems, or verify nothing is degraded after changes.', {
|
|
82
82
|
fixSuggestions: z.boolean().optional().describe('Include fix suggestions'),
|
|
83
83
|
}, async (args) => {
|
|
84
84
|
const result = await health({
|
|
@@ -90,7 +90,7 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
90
90
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
91
91
|
});
|
|
92
92
|
// 5. Find
|
|
93
|
-
server.tool('organon_find', '
|
|
93
|
+
server.tool('organon_find', 'Find which organon files govern a specific file, directory, or domain. Use when you need to know what constraints apply to code you are editing, or to discover organon files by scope, type, or name.', {
|
|
94
94
|
file: z.string().optional().describe('Find organons governing this file'),
|
|
95
95
|
scope: z.enum(['product', 'domain', 'feature', 'component', 'meta', 'methodology']).optional(),
|
|
96
96
|
type: z.enum(['navigation', 'constraints', 'rationale', 'procedures', 'mapping']).optional(),
|
|
@@ -108,17 +108,17 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
108
108
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
109
109
|
});
|
|
110
110
|
// 6. Verify triplets
|
|
111
|
-
server.tool('organon_verify_triplets', '
|
|
111
|
+
server.tool('organon_verify_triplets', 'Check that protocol-workflow-tool bindings are consistent and bidirectional. Use to detect orphaned workflows, missing tool references, or broken links between the three architecture layers.', {}, async () => {
|
|
112
112
|
const result = await verifyTriplets({ projectRoot, config, fs });
|
|
113
113
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
114
114
|
});
|
|
115
115
|
// 7. Suggest tools
|
|
116
|
-
server.tool('organon_suggest_tools', '
|
|
116
|
+
server.tool('organon_suggest_tools', 'Suggest which manual protocols could be automated. Analyzes protocol complexity and frequency to recommend automation tier upgrades. Use during planning or session compounding to find automation opportunities.', {}, async () => {
|
|
117
117
|
const result = await suggestTools({ projectRoot, config, fs });
|
|
118
118
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
119
119
|
});
|
|
120
120
|
// 8. Export knowledge graph
|
|
121
|
-
server.tool('organon_export', 'Export organon knowledge graph as structured JSON
|
|
121
|
+
server.tool('organon_export', 'Export the full organon knowledge graph as structured JSON with entities, assertions, relationships, and rules. Use for knowledge interoperability, external tool consumption, or analysis of the project organon structure.', {
|
|
122
122
|
version: z.string().optional().describe('Version to include in export metadata'),
|
|
123
123
|
}, async (args) => {
|
|
124
124
|
const result = await exportKnowledgeGraph({
|
|
@@ -130,7 +130,7 @@ export function registerTools(server, projectRoot, config, fs) {
|
|
|
130
130
|
return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] };
|
|
131
131
|
});
|
|
132
132
|
// 9. Verify (orchestrator)
|
|
133
|
-
server.tool('organon_verify', 'Run verification gates
|
|
133
|
+
server.tool('organon_verify', 'Run all 9 verification gates or a specific subset. Checks frontmatter, triplets, references, placeholder detection, freshness, invariant coverage, workflow quality, tier-4 tests, and version alignment. Use before committing, at session start, or to diagnose what is broken.', {
|
|
134
134
|
gates: z.array(z.string()).optional().describe('Specific gates to run (all if omitted)'),
|
|
135
135
|
}, async (args) => {
|
|
136
136
|
const result = await verify({
|
package/dist/mcp/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAC5F,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAEzD,MAAM,UAAU,aAAa,CAC3B,MAAiB,EACjB,WAAmB,EACnB,MAAqB,EACrB,EAAc;IAEd,0BAA0B;IAC1B,MAAM,CAAC,IAAI,CACT,8BAA8B,EAC9B,
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../../src/mcp/tools.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* organon.config.json template for organon init.
|
|
3
3
|
*/
|
|
4
|
-
export declare const CONFIG_TEMPLATE = "{\n \"methodology_version\": \"0.5.
|
|
5
|
-
export declare const METHODOLOGY_VERSION = "0.5.
|
|
4
|
+
export declare const CONFIG_TEMPLATE = "{\n \"methodology_version\": \"0.5.1\",\n \"organonPaths\": [\"organon\", \".\"],\n \"organonGlobs\": [\n \"**/ETHOS.md\",\n \"**/PHILOSOPHY.md\",\n \"**/PROTOCOL.md\",\n \"**/PROTOCOLS.md\",\n \"**/README.md\",\n \"**/PRIMER.md\",\n \"**/methodology-reference.md\",\n \"**/components.md\",\n \"**/observations/*.md\",\n \"**/rfcs/*.md\"\n ],\n \"ignorePatterns\": [\n \"**/node_modules/**\",\n \"**/dist/**\",\n \"**/.git/**\",\n \"**/coverage/**\"\n ],\n \"workflowPaths\": {\n \"claudeCode\": \".claude/skills\",\n \"cursor\": \".cursor/rules\",\n \"generic\": \"organon/workflows\"\n },\n \"freshnessThresholdHours\": 720,\n \"testGlobs\": [\n \"**/*.test.ts\",\n \"**/*.test.js\",\n \"**/*.spec.ts\",\n \"**/*.spec.js\"\n ],\n \"testIgnorePatterns\": [\n \"**/node_modules/**\",\n \"**/dist/**\"\n ]\n}\n";
|
|
5
|
+
export declare const METHODOLOGY_VERSION = "0.5.1";
|
|
6
6
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/templates/config.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* organon.config.json template for organon init.
|
|
3
3
|
*/
|
|
4
4
|
export const CONFIG_TEMPLATE = `{
|
|
5
|
-
"methodology_version": "0.5.
|
|
5
|
+
"methodology_version": "0.5.1",
|
|
6
6
|
"organonPaths": ["organon", "."],
|
|
7
7
|
"organonGlobs": [
|
|
8
8
|
"**/ETHOS.md",
|
|
@@ -40,5 +40,5 @@ export const CONFIG_TEMPLATE = `{
|
|
|
40
40
|
]
|
|
41
41
|
}
|
|
42
42
|
`;
|
|
43
|
-
export const METHODOLOGY_VERSION = '0.5.
|
|
43
|
+
export const METHODOLOGY_VERSION = '0.5.1';
|
|
44
44
|
//# sourceMappingURL=config.js.map
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
export const DOMAIN_FEATURE_DESIGN_SKILL = [
|
|
9
9
|
'---',
|
|
10
10
|
'name: domain-feature-design',
|
|
11
|
-
'description: Guides agents through proper domain/feature design following Organon methodology. Ensures RFCs contain both organon mutation plan (ETHOS.md, PHILOSOPHY.md content) AND technical implementation plan (architecture, API, phases).
|
|
11
|
+
'description: Guides agents through proper domain/feature design following Organon methodology. Ensures RFCs contain both organon mutation plan (ETHOS.md, PHILOSOPHY.md content) AND technical implementation plan (architecture, API, phases). Use when designing new domains, features, or significant capabilities that require organon evolution.',
|
|
12
12
|
'protocol_id: PROTO-ORG-1',
|
|
13
13
|
'protocol_file: organon/protocols/PROTOCOLS.md',
|
|
14
14
|
'tools: [organon-validate, organon-verify]',
|
|
15
15
|
'loads:',
|
|
16
16
|
' - organon/ETHOS.md',
|
|
17
17
|
' - CLAUDE.md',
|
|
18
|
-
'methodology_version: "0.5.
|
|
18
|
+
'methodology_version: "0.5.1"',
|
|
19
19
|
'---',
|
|
20
20
|
'',
|
|
21
21
|
'# Domain/Feature Design Skill',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain-feature-design.js","sourceRoot":"","sources":["../../../src/templates/skills/domain-feature-design.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,KAAK;IACL,6BAA6B;IAC7B,
|
|
1
|
+
{"version":3,"file":"domain-feature-design.js","sourceRoot":"","sources":["../../../src/templates/skills/domain-feature-design.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,KAAK;IACL,6BAA6B;IAC7B,uVAAuV;IACvV,0BAA0B;IAC1B,+CAA+C;IAC/C,2CAA2C;IAC3C,QAAQ;IACR,sBAAsB;IACtB,eAAe;IACf,8BAA8B;IAC9B,KAAK;IACL,EAAE;IACF,+BAA+B;IAC/B,EAAE;IACF,sIAAsI;IACtI,EAAE;IACF,wBAAwB;IACxB,EAAE;IACF,4SAA4S;IAC5S,EAAE;IACF,KAAK;IACL,EAAE;IACF,2BAA2B;IAC3B,EAAE;IACF,sBAAsB;IACtB,+EAA+E;IAC/E,uDAAuD;IACvD,oEAAoE;IACpE,EAAE;IACF,KAAK;IACL,EAAE;IACF,mBAAmB;IACnB,EAAE;IACF,wFAAwF;IACxF,EAAE;IACF,4BAA4B;IAC5B,wEAAwE;IACxE,kFAAkF;IAClF,EAAE;IACF,wDAAwD;IACxD,EAAE;IACF,KAAK;IACL,EAAE;IACF,yBAAyB;IACzB,EAAE;IACF,yCAAyC;IACzC,yCAAyC;IACzC,kGAAkG;IAClG,mEAAmE;IACnE,yDAAyD;IACzD,EAAE;IACF,sJAAsJ;IACtJ,EAAE;IACF,KAAK;IACL,EAAE;IACF,UAAU;IACV,EAAE;IACF,0BAA0B;IAC1B,EAAE;IACF,wBAAwB;IACxB,iEAAiE;IACjE,wCAAwC;IACxC,EAAE;IACF,4BAA4B;IAC5B,EAAE;IACF,uDAAuD;IACvD,EAAE;IACF,wBAAwB;IACxB,EAAE;IACF,qDAAqD;IACrD,wCAAwC;IACxC,EAAE;IACF,yCAAyC;IACzC,EAAE;IACF,4JAA4J;IAC5J,EAAE;IACF,4BAA4B;IAC5B,0DAA0D;IAC1D,wDAAwD;IACxD,kDAAkD;IAClD,sDAAsD;IACtD,yDAAyD;IACzD,EAAE;IACF,iCAAiC;IACjC,sCAAsC;IACtC,oCAAoC;IACpC,qCAAqC;IACrC,mCAAmC;IACnC,+BAA+B;IAC/B,EAAE;IACF,iDAAiD;IACjD,EAAE;IACF,uDAAuD;IACvD,gDAAgD;IAChD,8BAA8B;IAC9B,wDAAwD;IACxD,EAAE;IACF,yBAAyB;IACzB,EAAE;IACF,iEAAiE;IACjE,4EAA4E;IAC5E,uDAAuD;IACvD,4CAA4C;IAC5C,wDAAwD;IACxD,EAAE;IACF,KAAK;IACL,EAAE;IACF,mBAAmB;IACnB,EAAE;IACF,+BAA+B;IAC/B,+BAA+B;IAC/B,2IAA2I;IAC3I,6HAA6H;IAC7H,uGAAuG;IACvG,0GAA0G;IAC1G,8EAA8E;IAC9E,EAAE;CACH,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC"}
|
package/package.json
CHANGED