@directive-run/claude-plugin 1.16.0 → 1.17.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@directive-run/claude-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "Claude Code plugin for Directive — 12 skills covering modules, constraints, resolvers, derivations, AI orchestration, and adapters. Installable via Claude Code's plugin marketplace or consumable programmatically as an npm package.",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"author": "Jason Comes",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"tsx": "^4.19.2",
|
|
53
53
|
"typescript": "^5.7.2",
|
|
54
54
|
"vitest": "^3.0.0",
|
|
55
|
-
"@directive-run/knowledge": "1.
|
|
55
|
+
"@directive-run/knowledge": "1.17.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsx scripts/build-skills.ts && tsup",
|
|
@@ -15,6 +15,12 @@ Website: https://directive.run
|
|
|
15
15
|
- [Comparison](https://directive.run/docs/comparison)
|
|
16
16
|
- [Choosing Primitives](https://directive.run/docs/choosing-primitives)
|
|
17
17
|
|
|
18
|
+
### AI Tooling
|
|
19
|
+
- [IDE Integration](https://directive.run/docs/ide-integration)
|
|
20
|
+
- [Claude Code plugin](https://directive.run/docs/ide-integration#claude-code)
|
|
21
|
+
- [CLI ai-rules](https://directive.run/docs/ide-integration#cli-ai-rules)
|
|
22
|
+
- [Knowledge package](https://directive.run/docs/ide-integration#knowledge-package)
|
|
23
|
+
|
|
18
24
|
### Core API
|
|
19
25
|
- [Overview](https://directive.run/docs/core-api)
|
|
20
26
|
- [Module & System](https://directive.run/docs/module-system)
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
Model Context Protocol (MCP) server integration and Retrieval-Augmented Generation (RAG) enrichment for Directive AI agents. Import from `@directive-run/ai/mcp` for the MCP adapter (the main barrel re-exports it with `@deprecated` notices for v2 removal), and from `@directive-run/ai` for the RAG enricher + embedder utilities.
|
|
6
6
|
|
|
7
|
+
> **Client vs. server, two different packages.** This page covers the MCP **client** side — Directive AI agents calling out to external MCP servers. For the **server** side — exposing Directive itself (knowledge files, code examples, Claude Code skills) so other AI clients can consume it — that's `@directive-run/mcp`. Same protocol, opposite arrows.
|
|
8
|
+
|
|
7
9
|
## Decision tree
|
|
8
10
|
|
|
9
11
|
```
|