@sisu-ai/skill-explain 0.2.0 → 0.2.2

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 +76 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @sisu-ai/skill-explain
2
2
 
3
- Explanation skill for code and architecture walkthroughs.
3
+ Generate clear code and architecture explanations using a structured, reusable explanation workflow.
4
4
 
5
5
  Install
6
6
 
@@ -32,3 +32,78 @@ Resources
32
32
  License
33
33
 
34
34
  Apache-2.0
35
+
36
+ ---
37
+
38
+ ## Documentation
39
+
40
+ **Core** — [Package docs](packages/core/README.md) · [Error types](packages/core/ERROR_TYPES.md)
41
+
42
+ **Adapters** — [OpenAI](packages/adapters/openai/README.md) · [Anthropic](packages/adapters/anthropic/README.md) · [Ollama](packages/adapters/ollama/README.md)
43
+
44
+ <details>
45
+ <summary>All middleware packages</summary>
46
+
47
+ - [@sisu-ai/mw-agent-run-api](packages/middleware/agent-run-api/README.md)
48
+ - [@sisu-ai/mw-context-compressor](packages/middleware/context-compressor/README.md)
49
+ - [@sisu-ai/mw-control-flow](packages/middleware/control-flow/README.md)
50
+ - [@sisu-ai/mw-conversation-buffer](packages/middleware/conversation-buffer/README.md)
51
+ - [@sisu-ai/mw-cors](packages/middleware/cors/README.md)
52
+ - [@sisu-ai/mw-error-boundary](packages/middleware/error-boundary/README.md)
53
+ - [@sisu-ai/mw-guardrails](packages/middleware/guardrails/README.md)
54
+ - [@sisu-ai/mw-invariants](packages/middleware/invariants/README.md)
55
+ - [@sisu-ai/mw-orchestration](packages/middleware/orchestration/README.md)
56
+ - [@sisu-ai/mw-rag](packages/middleware/rag/README.md)
57
+ - [@sisu-ai/mw-react-parser](packages/middleware/react-parser/README.md)
58
+ - [@sisu-ai/mw-register-tools](packages/middleware/register-tools/README.md)
59
+ - [@sisu-ai/mw-tool-calling](packages/middleware/tool-calling/README.md)
60
+ - [@sisu-ai/mw-trace-viewer](packages/middleware/trace-viewer/README.md)
61
+ - [@sisu-ai/mw-usage-tracker](packages/middleware/usage-tracker/README.md)
62
+ </details>
63
+
64
+ <details>
65
+ <summary>All tool packages</summary>
66
+
67
+ - [@sisu-ai/tool-aws-s3](packages/tools/aws-s3/README.md)
68
+ - [@sisu-ai/tool-azure-blob](packages/tools/azure-blob/README.md)
69
+ - [@sisu-ai/tool-extract-urls](packages/tools/extract-urls/README.md)
70
+ - [@sisu-ai/tool-github-projects](packages/tools/github-projects/README.md)
71
+ - [@sisu-ai/tool-summarize-text](packages/tools/summarize-text/README.md)
72
+ - [@sisu-ai/tool-terminal](packages/tools/terminal/README.md)
73
+ - [@sisu-ai/tool-vec-chroma](packages/tools/vec-chroma/README.md)
74
+ - [@sisu-ai/tool-web-fetch](packages/tools/web-fetch/README.md)
75
+ - [@sisu-ai/tool-web-search-duckduckgo](packages/tools/web-search-duckduckgo/README.md)
76
+ - [@sisu-ai/tool-web-search-google](packages/tools/web-search-google/README.md)
77
+ - [@sisu-ai/tool-web-search-openai](packages/tools/web-search-openai/README.md)
78
+ - [@sisu-ai/tool-wikipedia](packages/tools/wikipedia/README.md)
79
+ </details>
80
+
81
+ <details>
82
+ <summary>All examples</summary>
83
+
84
+ **Anthropic** — [hello](examples/anthropic-hello/README.md) · [control-flow](examples/anthropic-control-flow/README.md) · [stream](examples/anthropic-stream/README.md) · [weather](examples/anthropic-weather/README.md)
85
+
86
+ **Ollama** — [hello](examples/ollama-hello/README.md) · [stream](examples/ollama-stream/README.md) · [vision](examples/ollama-vision/README.md) · [weather](examples/ollama-weather/README.md) · [web-search](examples/ollama-web-search/README.md)
87
+
88
+ **OpenAI** — [hello](examples/openai-hello/README.md) · [weather](examples/openai-weather/README.md) · [stream](examples/openai-stream/README.md) · [vision](examples/openai-vision/README.md) · [reasoning](examples/openai-reasoning/README.md) · [react](examples/openai-react/README.md) · [control-flow](examples/openai-control-flow/README.md) · [branch](examples/openai-branch/README.md) · [parallel](examples/openai-parallel/README.md) · [graph](examples/openai-graph/README.md) · [orchestration](examples/openai-orchestration/README.md) · [orchestration-adaptive](examples/openai-orchestration-adaptive/README.md) · [guardrails](examples/openai-guardrails/README.md) · [error-handling](examples/openai-error-handling/README.md) · [rag-chroma](examples/openai-rag-chroma/README.md) · [web-search](examples/openai-web-search/README.md) · [web-fetch](examples/openai-web-fetch/README.md) · [wikipedia](examples/openai-wikipedia/README.md) · [terminal](examples/openai-terminal/README.md) · [github-projects](examples/openai-github-projects/README.md) · [server](examples/openai-server/README.md) · [aws-s3](examples/openai-aws-s3/README.md) · [azure-blob](examples/openai-azure-blob/README.md)
89
+ </details>
90
+
91
+ ---
92
+
93
+ ## Contributing
94
+
95
+ We build Sisu in the open. Contributions welcome.
96
+
97
+ [Contributing Guide](CONTRIBUTING.md) · [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md) · [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md) · [Code of Conduct](CODE_OF_CONDUCT.md)
98
+
99
+ ---
100
+
101
+ <div align="center">
102
+
103
+ **[Star on GitHub](https://github.com/finger-gun/sisu)** if Sisu helps you build better agents.
104
+
105
+ *Quiet, determined, relentlessly useful.*
106
+
107
+ [Apache 2.0 License](LICENSE)
108
+
109
+ </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisu-ai/skill-explain",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "files": [