sysnet-auth 0.2.4__tar.gz → 0.2.8__tar.gz

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 (592) hide show
  1. sysnet_auth-0.2.8/LICENSE +21 -0
  2. sysnet_auth-0.2.8/MANIFEST.in +4 -0
  3. sysnet_auth-0.2.8/PKG-INFO +61 -0
  4. sysnet_auth-0.2.8/README.md +23 -0
  5. sysnet_auth-0.2.8/optional-skills/DESCRIPTION.md +24 -0
  6. sysnet_auth-0.2.8/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
  7. sysnet_auth-0.2.8/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +143 -0
  8. sysnet_auth-0.2.8/optional-skills/autonomous-ai-agents/honcho/SKILL.md +243 -0
  9. sysnet_auth-0.2.8/optional-skills/blockchain/base/SKILL.md +231 -0
  10. sysnet_auth-0.2.8/optional-skills/blockchain/base/scripts/base_client.py +1008 -0
  11. sysnet_auth-0.2.8/optional-skills/blockchain/solana/SKILL.md +207 -0
  12. sysnet_auth-0.2.8/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
  13. sysnet_auth-0.2.8/optional-skills/communication/DESCRIPTION.md +1 -0
  14. sysnet_auth-0.2.8/optional-skills/communication/one-three-one-rule/SKILL.md +103 -0
  15. sysnet_auth-0.2.8/optional-skills/creative/blender-mcp/SKILL.md +116 -0
  16. sysnet_auth-0.2.8/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
  17. sysnet_auth-0.2.8/optional-skills/creative/meme-generation/SKILL.md +129 -0
  18. sysnet_auth-0.2.8/optional-skills/creative/meme-generation/scripts/.gitignore +1 -0
  19. sysnet_auth-0.2.8/optional-skills/creative/meme-generation/scripts/generate_meme.py +471 -0
  20. sysnet_auth-0.2.8/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
  21. sysnet_auth-0.2.8/optional-skills/devops/cli/SKILL.md +155 -0
  22. sysnet_auth-0.2.8/optional-skills/devops/cli/references/app-discovery.md +112 -0
  23. sysnet_auth-0.2.8/optional-skills/devops/cli/references/authentication.md +59 -0
  24. sysnet_auth-0.2.8/optional-skills/devops/cli/references/cli-reference.md +104 -0
  25. sysnet_auth-0.2.8/optional-skills/devops/cli/references/running-apps.md +171 -0
  26. sysnet_auth-0.2.8/optional-skills/devops/docker-management/SKILL.md +280 -0
  27. sysnet_auth-0.2.8/optional-skills/email/agentmail/SKILL.md +125 -0
  28. sysnet_auth-0.2.8/optional-skills/health/DESCRIPTION.md +1 -0
  29. sysnet_auth-0.2.8/optional-skills/health/neuroskill-bci/SKILL.md +458 -0
  30. sysnet_auth-0.2.8/optional-skills/health/neuroskill-bci/references/api.md +286 -0
  31. sysnet_auth-0.2.8/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
  32. sysnet_auth-0.2.8/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
  33. sysnet_auth-0.2.8/optional-skills/mcp/DESCRIPTION.md +3 -0
  34. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/SKILL.md +299 -0
  35. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
  36. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
  37. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
  38. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
  39. sysnet_auth-0.2.8/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
  40. sysnet_auth-0.2.8/optional-skills/migration/DESCRIPTION.md +2 -0
  41. sysnet_auth-0.2.8/optional-skills/migration/openclaw-migration/SKILL.md +297 -0
  42. sysnet_auth-0.2.8/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +2792 -0
  43. sysnet_auth-0.2.8/optional-skills/mlops/accelerate/SKILL.md +335 -0
  44. sysnet_auth-0.2.8/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
  45. sysnet_auth-0.2.8/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
  46. sysnet_auth-0.2.8/optional-skills/mlops/accelerate/references/performance.md +525 -0
  47. sysnet_auth-0.2.8/optional-skills/mlops/chroma/SKILL.md +409 -0
  48. sysnet_auth-0.2.8/optional-skills/mlops/chroma/references/integration.md +38 -0
  49. sysnet_auth-0.2.8/optional-skills/mlops/faiss/SKILL.md +224 -0
  50. sysnet_auth-0.2.8/optional-skills/mlops/faiss/references/index_types.md +280 -0
  51. sysnet_auth-0.2.8/optional-skills/mlops/flash-attention/SKILL.md +370 -0
  52. sysnet_auth-0.2.8/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
  53. sysnet_auth-0.2.8/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
  54. sysnet_auth-0.2.8/optional-skills/mlops/hermes-atropos-environments/SKILL.md +302 -0
  55. sysnet_auth-0.2.8/optional-skills/mlops/hermes-atropos-environments/references/agentresult-fields.md +59 -0
  56. sysnet_auth-0.2.8/optional-skills/mlops/hermes-atropos-environments/references/atropos-base-env.md +65 -0
  57. sysnet_auth-0.2.8/optional-skills/mlops/hermes-atropos-environments/references/usage-patterns.md +199 -0
  58. sysnet_auth-0.2.8/optional-skills/mlops/huggingface-tokenizers/SKILL.md +519 -0
  59. sysnet_auth-0.2.8/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
  60. sysnet_auth-0.2.8/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
  61. sysnet_auth-0.2.8/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
  62. sysnet_auth-0.2.8/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
  63. sysnet_auth-0.2.8/optional-skills/mlops/instructor/SKILL.md +743 -0
  64. sysnet_auth-0.2.8/optional-skills/mlops/instructor/references/examples.md +107 -0
  65. sysnet_auth-0.2.8/optional-skills/mlops/instructor/references/providers.md +70 -0
  66. sysnet_auth-0.2.8/optional-skills/mlops/instructor/references/validation.md +606 -0
  67. sysnet_auth-0.2.8/optional-skills/mlops/lambda-labs/SKILL.md +548 -0
  68. sysnet_auth-0.2.8/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
  69. sysnet_auth-0.2.8/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
  70. sysnet_auth-0.2.8/optional-skills/mlops/llava/SKILL.md +307 -0
  71. sysnet_auth-0.2.8/optional-skills/mlops/llava/references/training.md +197 -0
  72. sysnet_auth-0.2.8/optional-skills/mlops/nemo-curator/SKILL.md +386 -0
  73. sysnet_auth-0.2.8/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
  74. sysnet_auth-0.2.8/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
  75. sysnet_auth-0.2.8/optional-skills/mlops/pinecone/SKILL.md +361 -0
  76. sysnet_auth-0.2.8/optional-skills/mlops/pinecone/references/deployment.md +181 -0
  77. sysnet_auth-0.2.8/optional-skills/mlops/pytorch-lightning/SKILL.md +349 -0
  78. sysnet_auth-0.2.8/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
  79. sysnet_auth-0.2.8/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
  80. sysnet_auth-0.2.8/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
  81. sysnet_auth-0.2.8/optional-skills/mlops/qdrant/SKILL.md +496 -0
  82. sysnet_auth-0.2.8/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
  83. sysnet_auth-0.2.8/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
  84. sysnet_auth-0.2.8/optional-skills/mlops/saelens/SKILL.md +389 -0
  85. sysnet_auth-0.2.8/optional-skills/mlops/saelens/references/README.md +70 -0
  86. sysnet_auth-0.2.8/optional-skills/mlops/saelens/references/api.md +333 -0
  87. sysnet_auth-0.2.8/optional-skills/mlops/saelens/references/tutorials.md +318 -0
  88. sysnet_auth-0.2.8/optional-skills/mlops/simpo/SKILL.md +222 -0
  89. sysnet_auth-0.2.8/optional-skills/mlops/simpo/references/datasets.md +478 -0
  90. sysnet_auth-0.2.8/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
  91. sysnet_auth-0.2.8/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
  92. sysnet_auth-0.2.8/optional-skills/mlops/slime/SKILL.md +467 -0
  93. sysnet_auth-0.2.8/optional-skills/mlops/slime/references/api-reference.md +392 -0
  94. sysnet_auth-0.2.8/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
  95. sysnet_auth-0.2.8/optional-skills/mlops/tensorrt-llm/SKILL.md +190 -0
  96. sysnet_auth-0.2.8/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
  97. sysnet_auth-0.2.8/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
  98. sysnet_auth-0.2.8/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
  99. sysnet_auth-0.2.8/optional-skills/mlops/torchtitan/SKILL.md +361 -0
  100. sysnet_auth-0.2.8/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
  101. sysnet_auth-0.2.8/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
  102. sysnet_auth-0.2.8/optional-skills/mlops/torchtitan/references/float8.md +133 -0
  103. sysnet_auth-0.2.8/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
  104. sysnet_auth-0.2.8/optional-skills/productivity/canvas/SKILL.md +97 -0
  105. sysnet_auth-0.2.8/optional-skills/productivity/canvas/scripts/canvas_api.py +157 -0
  106. sysnet_auth-0.2.8/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
  107. sysnet_auth-0.2.8/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
  108. sysnet_auth-0.2.8/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
  109. sysnet_auth-0.2.8/optional-skills/productivity/siyuan/SKILL.md +297 -0
  110. sysnet_auth-0.2.8/optional-skills/productivity/telephony/SKILL.md +417 -0
  111. sysnet_auth-0.2.8/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
  112. sysnet_auth-0.2.8/optional-skills/research/bioinformatics/SKILL.md +235 -0
  113. sysnet_auth-0.2.8/optional-skills/research/domain-intel/SKILL.md +96 -0
  114. sysnet_auth-0.2.8/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
  115. sysnet_auth-0.2.8/optional-skills/research/duckduckgo-search/SKILL.md +237 -0
  116. sysnet_auth-0.2.8/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
  117. sysnet_auth-0.2.8/optional-skills/research/gitnexus-explorer/SKILL.md +213 -0
  118. sysnet_auth-0.2.8/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
  119. sysnet_auth-0.2.8/optional-skills/research/parallel-cli/SKILL.md +390 -0
  120. sysnet_auth-0.2.8/optional-skills/research/qmd/SKILL.md +441 -0
  121. sysnet_auth-0.2.8/optional-skills/research/scrapling/SKILL.md +335 -0
  122. sysnet_auth-0.2.8/optional-skills/security/1password/SKILL.md +162 -0
  123. sysnet_auth-0.2.8/optional-skills/security/1password/references/cli-examples.md +31 -0
  124. sysnet_auth-0.2.8/optional-skills/security/1password/references/get-started.md +21 -0
  125. sysnet_auth-0.2.8/optional-skills/security/DESCRIPTION.md +3 -0
  126. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/SKILL.md +422 -0
  127. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
  128. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
  129. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
  130. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
  131. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
  132. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
  133. sysnet_auth-0.2.8/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
  134. sysnet_auth-0.2.8/optional-skills/security/sherlock/SKILL.md +192 -0
  135. {sysnet_auth-0.2.4 → sysnet_auth-0.2.8}/pyproject.toml +1 -1
  136. sysnet_auth-0.2.8/skills/apple/DESCRIPTION.md +3 -0
  137. sysnet_auth-0.2.8/skills/apple/apple-notes/SKILL.md +90 -0
  138. sysnet_auth-0.2.8/skills/apple/apple-reminders/SKILL.md +98 -0
  139. sysnet_auth-0.2.8/skills/apple/findmy/SKILL.md +131 -0
  140. sysnet_auth-0.2.8/skills/apple/imessage/SKILL.md +102 -0
  141. sysnet_auth-0.2.8/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
  142. sysnet_auth-0.2.8/skills/autonomous-ai-agents/claude-code/SKILL.md +744 -0
  143. sysnet_auth-0.2.8/skills/autonomous-ai-agents/codex/SKILL.md +113 -0
  144. sysnet_auth-0.2.8/skills/autonomous-ai-agents/hermes-agent/SKILL.md +654 -0
  145. sysnet_auth-0.2.8/skills/autonomous-ai-agents/opencode/SKILL.md +218 -0
  146. sysnet_auth-0.2.8/skills/creative/DESCRIPTION.md +3 -0
  147. sysnet_auth-0.2.8/skills/creative/ascii-art/SKILL.md +321 -0
  148. sysnet_auth-0.2.8/skills/creative/ascii-video/README.md +290 -0
  149. sysnet_auth-0.2.8/skills/creative/ascii-video/SKILL.md +232 -0
  150. sysnet_auth-0.2.8/skills/creative/ascii-video/references/architecture.md +802 -0
  151. sysnet_auth-0.2.8/skills/creative/ascii-video/references/composition.md +892 -0
  152. sysnet_auth-0.2.8/skills/creative/ascii-video/references/effects.md +1865 -0
  153. sysnet_auth-0.2.8/skills/creative/ascii-video/references/inputs.md +685 -0
  154. sysnet_auth-0.2.8/skills/creative/ascii-video/references/optimization.md +688 -0
  155. sysnet_auth-0.2.8/skills/creative/ascii-video/references/scenes.md +1011 -0
  156. sysnet_auth-0.2.8/skills/creative/ascii-video/references/shaders.md +1385 -0
  157. sysnet_auth-0.2.8/skills/creative/ascii-video/references/troubleshooting.md +367 -0
  158. sysnet_auth-0.2.8/skills/creative/creative-ideation/SKILL.md +147 -0
  159. sysnet_auth-0.2.8/skills/creative/creative-ideation/references/full-prompt-library.md +110 -0
  160. sysnet_auth-0.2.8/skills/creative/excalidraw/SKILL.md +194 -0
  161. sysnet_auth-0.2.8/skills/creative/excalidraw/references/colors.md +44 -0
  162. sysnet_auth-0.2.8/skills/creative/excalidraw/references/dark-mode.md +68 -0
  163. sysnet_auth-0.2.8/skills/creative/excalidraw/references/examples.md +141 -0
  164. sysnet_auth-0.2.8/skills/creative/excalidraw/scripts/upload.py +133 -0
  165. sysnet_auth-0.2.8/skills/creative/manim-video/README.md +23 -0
  166. sysnet_auth-0.2.8/skills/creative/manim-video/SKILL.md +264 -0
  167. sysnet_auth-0.2.8/skills/creative/manim-video/references/animation-design-thinking.md +161 -0
  168. sysnet_auth-0.2.8/skills/creative/manim-video/references/animations.md +282 -0
  169. sysnet_auth-0.2.8/skills/creative/manim-video/references/camera-and-3d.md +135 -0
  170. sysnet_auth-0.2.8/skills/creative/manim-video/references/decorations.md +202 -0
  171. sysnet_auth-0.2.8/skills/creative/manim-video/references/equations.md +216 -0
  172. sysnet_auth-0.2.8/skills/creative/manim-video/references/graphs-and-data.md +163 -0
  173. sysnet_auth-0.2.8/skills/creative/manim-video/references/mobjects.md +333 -0
  174. sysnet_auth-0.2.8/skills/creative/manim-video/references/paper-explainer.md +255 -0
  175. sysnet_auth-0.2.8/skills/creative/manim-video/references/production-quality.md +190 -0
  176. sysnet_auth-0.2.8/skills/creative/manim-video/references/rendering.md +185 -0
  177. sysnet_auth-0.2.8/skills/creative/manim-video/references/scene-planning.md +118 -0
  178. sysnet_auth-0.2.8/skills/creative/manim-video/references/troubleshooting.md +135 -0
  179. sysnet_auth-0.2.8/skills/creative/manim-video/references/updaters-and-trackers.md +260 -0
  180. sysnet_auth-0.2.8/skills/creative/manim-video/references/visual-design.md +124 -0
  181. sysnet_auth-0.2.8/skills/creative/manim-video/scripts/setup.sh +14 -0
  182. sysnet_auth-0.2.8/skills/creative/p5js/README.md +64 -0
  183. sysnet_auth-0.2.8/skills/creative/p5js/SKILL.md +547 -0
  184. sysnet_auth-0.2.8/skills/creative/p5js/references/animation.md +439 -0
  185. sysnet_auth-0.2.8/skills/creative/p5js/references/color-systems.md +352 -0
  186. sysnet_auth-0.2.8/skills/creative/p5js/references/core-api.md +410 -0
  187. sysnet_auth-0.2.8/skills/creative/p5js/references/export-pipeline.md +566 -0
  188. sysnet_auth-0.2.8/skills/creative/p5js/references/interaction.md +398 -0
  189. sysnet_auth-0.2.8/skills/creative/p5js/references/shapes-and-geometry.md +300 -0
  190. sysnet_auth-0.2.8/skills/creative/p5js/references/troubleshooting.md +532 -0
  191. sysnet_auth-0.2.8/skills/creative/p5js/references/typography.md +302 -0
  192. sysnet_auth-0.2.8/skills/creative/p5js/references/visual-effects.md +895 -0
  193. sysnet_auth-0.2.8/skills/creative/p5js/references/webgl-and-3d.md +423 -0
  194. sysnet_auth-0.2.8/skills/creative/p5js/scripts/export-frames.js +179 -0
  195. sysnet_auth-0.2.8/skills/creative/p5js/scripts/render.sh +108 -0
  196. sysnet_auth-0.2.8/skills/creative/p5js/scripts/serve.sh +28 -0
  197. sysnet_auth-0.2.8/skills/creative/p5js/scripts/setup.sh +87 -0
  198. sysnet_auth-0.2.8/skills/creative/p5js/templates/viewer.html +395 -0
  199. sysnet_auth-0.2.8/skills/creative/popular-web-designs/SKILL.md +207 -0
  200. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/airbnb.md +259 -0
  201. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/airtable.md +102 -0
  202. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/apple.md +326 -0
  203. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/bmw.md +193 -0
  204. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/cal.md +272 -0
  205. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/claude.md +325 -0
  206. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/clay.md +317 -0
  207. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/clickhouse.md +294 -0
  208. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/cohere.md +279 -0
  209. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/coinbase.md +142 -0
  210. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/composio.md +320 -0
  211. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/cursor.md +322 -0
  212. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/elevenlabs.md +278 -0
  213. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/expo.md +294 -0
  214. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/figma.md +233 -0
  215. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/framer.md +259 -0
  216. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/hashicorp.md +291 -0
  217. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/ibm.md +345 -0
  218. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/intercom.md +159 -0
  219. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/kraken.md +138 -0
  220. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/linear.app.md +380 -0
  221. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/lovable.md +311 -0
  222. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/minimax.md +270 -0
  223. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/mintlify.md +339 -0
  224. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/miro.md +121 -0
  225. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/mistral.ai.md +274 -0
  226. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/mongodb.md +279 -0
  227. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/notion.md +322 -0
  228. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/nvidia.md +306 -0
  229. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/ollama.md +280 -0
  230. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/opencode.ai.md +294 -0
  231. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/pinterest.md +243 -0
  232. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/posthog.md +269 -0
  233. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/raycast.md +281 -0
  234. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/replicate.md +274 -0
  235. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/resend.md +316 -0
  236. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/revolut.md +198 -0
  237. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/runwayml.md +257 -0
  238. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/sanity.md +370 -0
  239. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/sentry.md +275 -0
  240. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/spacex.md +207 -0
  241. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/spotify.md +259 -0
  242. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/stripe.md +335 -0
  243. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/supabase.md +268 -0
  244. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/superhuman.md +265 -0
  245. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/together.ai.md +276 -0
  246. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/uber.md +308 -0
  247. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/vercel.md +323 -0
  248. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/voltagent.md +336 -0
  249. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/warp.md +266 -0
  250. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/webflow.md +105 -0
  251. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/wise.md +186 -0
  252. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/x.ai.md +270 -0
  253. sysnet_auth-0.2.8/skills/creative/popular-web-designs/templates/zapier.md +341 -0
  254. sysnet_auth-0.2.8/skills/creative/songwriting-and-ai-music/SKILL.md +289 -0
  255. sysnet_auth-0.2.8/skills/data-science/DESCRIPTION.md +3 -0
  256. sysnet_auth-0.2.8/skills/data-science/jupyter-live-kernel/SKILL.md +171 -0
  257. sysnet_auth-0.2.8/skills/devops/webhook-subscriptions/SKILL.md +180 -0
  258. sysnet_auth-0.2.8/skills/diagramming/DESCRIPTION.md +3 -0
  259. sysnet_auth-0.2.8/skills/dogfood/SKILL.md +161 -0
  260. sysnet_auth-0.2.8/skills/dogfood/references/issue-taxonomy.md +109 -0
  261. sysnet_auth-0.2.8/skills/dogfood/templates/dogfood-report-template.md +86 -0
  262. sysnet_auth-0.2.8/skills/domain/DESCRIPTION.md +24 -0
  263. sysnet_auth-0.2.8/skills/email/DESCRIPTION.md +3 -0
  264. sysnet_auth-0.2.8/skills/email/himalaya/SKILL.md +278 -0
  265. sysnet_auth-0.2.8/skills/email/himalaya/references/configuration.md +184 -0
  266. sysnet_auth-0.2.8/skills/email/himalaya/references/message-composition.md +199 -0
  267. sysnet_auth-0.2.8/skills/feeds/DESCRIPTION.md +3 -0
  268. sysnet_auth-0.2.8/skills/gaming/DESCRIPTION.md +3 -0
  269. sysnet_auth-0.2.8/skills/gaming/minecraft-modpack-server/SKILL.md +186 -0
  270. sysnet_auth-0.2.8/skills/gaming/pokemon-player/SKILL.md +215 -0
  271. sysnet_auth-0.2.8/skills/gifs/DESCRIPTION.md +3 -0
  272. sysnet_auth-0.2.8/skills/github/DESCRIPTION.md +3 -0
  273. sysnet_auth-0.2.8/skills/github/codebase-inspection/SKILL.md +115 -0
  274. sysnet_auth-0.2.8/skills/github/github-auth/SKILL.md +246 -0
  275. sysnet_auth-0.2.8/skills/github/github-auth/scripts/gh-env.sh +66 -0
  276. sysnet_auth-0.2.8/skills/github/github-code-review/SKILL.md +480 -0
  277. sysnet_auth-0.2.8/skills/github/github-code-review/references/review-output-template.md +74 -0
  278. sysnet_auth-0.2.8/skills/github/github-issues/SKILL.md +369 -0
  279. sysnet_auth-0.2.8/skills/github/github-issues/templates/bug-report.md +35 -0
  280. sysnet_auth-0.2.8/skills/github/github-issues/templates/feature-request.md +31 -0
  281. sysnet_auth-0.2.8/skills/github/github-pr-workflow/SKILL.md +366 -0
  282. sysnet_auth-0.2.8/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
  283. sysnet_auth-0.2.8/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
  284. sysnet_auth-0.2.8/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
  285. sysnet_auth-0.2.8/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
  286. sysnet_auth-0.2.8/skills/github/github-repo-management/SKILL.md +515 -0
  287. sysnet_auth-0.2.8/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
  288. sysnet_auth-0.2.8/skills/index-cache/anthropics_skills_skills_.json +1 -0
  289. sysnet_auth-0.2.8/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
  290. sysnet_auth-0.2.8/skills/index-cache/lobehub_index.json +1 -0
  291. sysnet_auth-0.2.8/skills/index-cache/openai_skills_skills_.json +1 -0
  292. sysnet_auth-0.2.8/skills/inference-sh/DESCRIPTION.md +19 -0
  293. sysnet_auth-0.2.8/skills/leisure/find-nearby/SKILL.md +69 -0
  294. sysnet_auth-0.2.8/skills/leisure/find-nearby/scripts/find_nearby.py +184 -0
  295. sysnet_auth-0.2.8/skills/mcp/DESCRIPTION.md +3 -0
  296. sysnet_auth-0.2.8/skills/mcp/mcporter/SKILL.md +122 -0
  297. sysnet_auth-0.2.8/skills/mcp/native-mcp/SKILL.md +356 -0
  298. sysnet_auth-0.2.8/skills/media/DESCRIPTION.md +3 -0
  299. sysnet_auth-0.2.8/skills/media/gif-search/SKILL.md +86 -0
  300. sysnet_auth-0.2.8/skills/media/heartmula/SKILL.md +170 -0
  301. sysnet_auth-0.2.8/skills/media/songsee/SKILL.md +82 -0
  302. sysnet_auth-0.2.8/skills/media/youtube-content/SKILL.md +72 -0
  303. sysnet_auth-0.2.8/skills/media/youtube-content/references/output-formats.md +56 -0
  304. sysnet_auth-0.2.8/skills/media/youtube-content/scripts/fetch_transcript.py +124 -0
  305. sysnet_auth-0.2.8/skills/mlops/DESCRIPTION.md +3 -0
  306. sysnet_auth-0.2.8/skills/mlops/cloud/DESCRIPTION.md +3 -0
  307. sysnet_auth-0.2.8/skills/mlops/cloud/modal/SKILL.md +344 -0
  308. sysnet_auth-0.2.8/skills/mlops/cloud/modal/references/advanced-usage.md +503 -0
  309. sysnet_auth-0.2.8/skills/mlops/cloud/modal/references/troubleshooting.md +494 -0
  310. sysnet_auth-0.2.8/skills/mlops/evaluation/DESCRIPTION.md +3 -0
  311. sysnet_auth-0.2.8/skills/mlops/evaluation/lm-evaluation-harness/SKILL.md +493 -0
  312. sysnet_auth-0.2.8/skills/mlops/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
  313. sysnet_auth-0.2.8/skills/mlops/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
  314. sysnet_auth-0.2.8/skills/mlops/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
  315. sysnet_auth-0.2.8/skills/mlops/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
  316. sysnet_auth-0.2.8/skills/mlops/evaluation/weights-and-biases/SKILL.md +593 -0
  317. sysnet_auth-0.2.8/skills/mlops/evaluation/weights-and-biases/references/artifacts.md +584 -0
  318. sysnet_auth-0.2.8/skills/mlops/evaluation/weights-and-biases/references/integrations.md +700 -0
  319. sysnet_auth-0.2.8/skills/mlops/evaluation/weights-and-biases/references/sweeps.md +847 -0
  320. sysnet_auth-0.2.8/skills/mlops/huggingface-hub/SKILL.md +80 -0
  321. sysnet_auth-0.2.8/skills/mlops/inference/DESCRIPTION.md +3 -0
  322. sysnet_auth-0.2.8/skills/mlops/inference/gguf/SKILL.md +430 -0
  323. sysnet_auth-0.2.8/skills/mlops/inference/gguf/references/advanced-usage.md +504 -0
  324. sysnet_auth-0.2.8/skills/mlops/inference/gguf/references/troubleshooting.md +442 -0
  325. sysnet_auth-0.2.8/skills/mlops/inference/guidance/SKILL.md +575 -0
  326. sysnet_auth-0.2.8/skills/mlops/inference/guidance/references/backends.md +554 -0
  327. sysnet_auth-0.2.8/skills/mlops/inference/guidance/references/constraints.md +674 -0
  328. sysnet_auth-0.2.8/skills/mlops/inference/guidance/references/examples.md +767 -0
  329. sysnet_auth-0.2.8/skills/mlops/inference/llama-cpp/SKILL.md +261 -0
  330. sysnet_auth-0.2.8/skills/mlops/inference/llama-cpp/references/optimization.md +89 -0
  331. sysnet_auth-0.2.8/skills/mlops/inference/llama-cpp/references/quantization.md +213 -0
  332. sysnet_auth-0.2.8/skills/mlops/inference/llama-cpp/references/server.md +125 -0
  333. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/SKILL.md +330 -0
  334. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/references/analysis-modules.md +166 -0
  335. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/references/methods-guide.md +141 -0
  336. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/templates/abliteration-config.yaml +33 -0
  337. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/templates/analysis-study.yaml +40 -0
  338. sysnet_auth-0.2.8/skills/mlops/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
  339. sysnet_auth-0.2.8/skills/mlops/inference/outlines/SKILL.md +655 -0
  340. sysnet_auth-0.2.8/skills/mlops/inference/outlines/references/backends.md +615 -0
  341. sysnet_auth-0.2.8/skills/mlops/inference/outlines/references/examples.md +773 -0
  342. sysnet_auth-0.2.8/skills/mlops/inference/outlines/references/json_generation.md +652 -0
  343. sysnet_auth-0.2.8/skills/mlops/inference/vllm/SKILL.md +367 -0
  344. sysnet_auth-0.2.8/skills/mlops/inference/vllm/references/optimization.md +226 -0
  345. sysnet_auth-0.2.8/skills/mlops/inference/vllm/references/quantization.md +284 -0
  346. sysnet_auth-0.2.8/skills/mlops/inference/vllm/references/server-deployment.md +255 -0
  347. sysnet_auth-0.2.8/skills/mlops/inference/vllm/references/troubleshooting.md +447 -0
  348. sysnet_auth-0.2.8/skills/mlops/models/DESCRIPTION.md +3 -0
  349. sysnet_auth-0.2.8/skills/mlops/models/audiocraft/SKILL.md +567 -0
  350. sysnet_auth-0.2.8/skills/mlops/models/audiocraft/references/advanced-usage.md +666 -0
  351. sysnet_auth-0.2.8/skills/mlops/models/audiocraft/references/troubleshooting.md +504 -0
  352. sysnet_auth-0.2.8/skills/mlops/models/clip/SKILL.md +256 -0
  353. sysnet_auth-0.2.8/skills/mlops/models/clip/references/applications.md +207 -0
  354. sysnet_auth-0.2.8/skills/mlops/models/segment-anything/SKILL.md +503 -0
  355. sysnet_auth-0.2.8/skills/mlops/models/segment-anything/references/advanced-usage.md +589 -0
  356. sysnet_auth-0.2.8/skills/mlops/models/segment-anything/references/troubleshooting.md +484 -0
  357. sysnet_auth-0.2.8/skills/mlops/models/stable-diffusion/SKILL.md +522 -0
  358. sysnet_auth-0.2.8/skills/mlops/models/stable-diffusion/references/advanced-usage.md +716 -0
  359. sysnet_auth-0.2.8/skills/mlops/models/stable-diffusion/references/troubleshooting.md +555 -0
  360. sysnet_auth-0.2.8/skills/mlops/models/whisper/SKILL.md +320 -0
  361. sysnet_auth-0.2.8/skills/mlops/models/whisper/references/languages.md +189 -0
  362. sysnet_auth-0.2.8/skills/mlops/research/DESCRIPTION.md +3 -0
  363. sysnet_auth-0.2.8/skills/mlops/research/dspy/SKILL.md +593 -0
  364. sysnet_auth-0.2.8/skills/mlops/research/dspy/references/examples.md +663 -0
  365. sysnet_auth-0.2.8/skills/mlops/research/dspy/references/modules.md +475 -0
  366. sysnet_auth-0.2.8/skills/mlops/research/dspy/references/optimizers.md +566 -0
  367. sysnet_auth-0.2.8/skills/mlops/training/DESCRIPTION.md +3 -0
  368. sysnet_auth-0.2.8/skills/mlops/training/axolotl/SKILL.md +161 -0
  369. sysnet_auth-0.2.8/skills/mlops/training/axolotl/references/api.md +5548 -0
  370. sysnet_auth-0.2.8/skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
  371. sysnet_auth-0.2.8/skills/mlops/training/axolotl/references/index.md +15 -0
  372. sysnet_auth-0.2.8/skills/mlops/training/axolotl/references/other.md +3563 -0
  373. sysnet_auth-0.2.8/skills/mlops/training/grpo-rl-training/README.md +97 -0
  374. sysnet_auth-0.2.8/skills/mlops/training/grpo-rl-training/SKILL.md +575 -0
  375. sysnet_auth-0.2.8/skills/mlops/training/grpo-rl-training/templates/basic_grpo_training.py +228 -0
  376. sysnet_auth-0.2.8/skills/mlops/training/peft/SKILL.md +434 -0
  377. sysnet_auth-0.2.8/skills/mlops/training/peft/references/advanced-usage.md +514 -0
  378. sysnet_auth-0.2.8/skills/mlops/training/peft/references/troubleshooting.md +480 -0
  379. sysnet_auth-0.2.8/skills/mlops/training/pytorch-fsdp/SKILL.md +129 -0
  380. sysnet_auth-0.2.8/skills/mlops/training/pytorch-fsdp/references/index.md +7 -0
  381. sysnet_auth-0.2.8/skills/mlops/training/pytorch-fsdp/references/other.md +4261 -0
  382. sysnet_auth-0.2.8/skills/mlops/training/trl-fine-tuning/SKILL.md +458 -0
  383. sysnet_auth-0.2.8/skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
  384. sysnet_auth-0.2.8/skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
  385. sysnet_auth-0.2.8/skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
  386. sysnet_auth-0.2.8/skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
  387. sysnet_auth-0.2.8/skills/mlops/training/unsloth/SKILL.md +83 -0
  388. sysnet_auth-0.2.8/skills/mlops/training/unsloth/references/index.md +7 -0
  389. sysnet_auth-0.2.8/skills/mlops/training/unsloth/references/llms-full.md +16799 -0
  390. sysnet_auth-0.2.8/skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
  391. sysnet_auth-0.2.8/skills/mlops/training/unsloth/references/llms.md +82 -0
  392. sysnet_auth-0.2.8/skills/mlops/vector-databases/DESCRIPTION.md +3 -0
  393. sysnet_auth-0.2.8/skills/note-taking/DESCRIPTION.md +3 -0
  394. sysnet_auth-0.2.8/skills/note-taking/obsidian/SKILL.md +66 -0
  395. sysnet_auth-0.2.8/skills/productivity/DESCRIPTION.md +3 -0
  396. sysnet_auth-0.2.8/skills/productivity/google-workspace/SKILL.md +248 -0
  397. sysnet_auth-0.2.8/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
  398. sysnet_auth-0.2.8/skills/productivity/google-workspace/scripts/google_api.py +327 -0
  399. sysnet_auth-0.2.8/skills/productivity/google-workspace/scripts/gws_bridge.py +89 -0
  400. sysnet_auth-0.2.8/skills/productivity/google-workspace/scripts/setup.py +397 -0
  401. sysnet_auth-0.2.8/skills/productivity/linear/SKILL.md +297 -0
  402. sysnet_auth-0.2.8/skills/productivity/nano-pdf/SKILL.md +51 -0
  403. sysnet_auth-0.2.8/skills/productivity/notion/SKILL.md +171 -0
  404. sysnet_auth-0.2.8/skills/productivity/notion/references/block-types.md +112 -0
  405. sysnet_auth-0.2.8/skills/productivity/ocr-and-documents/DESCRIPTION.md +3 -0
  406. sysnet_auth-0.2.8/skills/productivity/ocr-and-documents/SKILL.md +171 -0
  407. sysnet_auth-0.2.8/skills/productivity/ocr-and-documents/scripts/extract_marker.py +87 -0
  408. sysnet_auth-0.2.8/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +98 -0
  409. sysnet_auth-0.2.8/skills/productivity/powerpoint/LICENSE.txt +30 -0
  410. sysnet_auth-0.2.8/skills/productivity/powerpoint/SKILL.md +232 -0
  411. sysnet_auth-0.2.8/skills/productivity/powerpoint/editing.md +205 -0
  412. sysnet_auth-0.2.8/skills/productivity/powerpoint/pptxgenjs.md +420 -0
  413. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/add_slide.py +195 -0
  414. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/clean.py +286 -0
  415. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +0 -0
  416. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +199 -0
  417. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +197 -0
  418. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/pack.py +159 -0
  419. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  420. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  421. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  422. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  423. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  424. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  425. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  426. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  427. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  428. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  429. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  430. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  431. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  432. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  433. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  434. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  435. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  436. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  437. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  438. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  439. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  440. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  441. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  442. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  443. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  444. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  445. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  446. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
  447. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
  448. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
  449. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
  450. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
  451. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  452. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  453. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  454. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  455. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  456. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  457. sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  458. sysnet_auth-0.2.8/skills/red-teaming/godmode/SKILL.md +403 -0
  459. sysnet_auth-0.2.8/skills/red-teaming/godmode/references/jailbreak-templates.md +128 -0
  460. sysnet_auth-0.2.8/skills/red-teaming/godmode/references/refusal-detection.md +142 -0
  461. sysnet_auth-0.2.8/skills/red-teaming/godmode/scripts/auto_jailbreak.py +769 -0
  462. sysnet_auth-0.2.8/skills/red-teaming/godmode/scripts/godmode_race.py +530 -0
  463. sysnet_auth-0.2.8/skills/red-teaming/godmode/scripts/load_godmode.py +45 -0
  464. sysnet_auth-0.2.8/skills/red-teaming/godmode/scripts/parseltongue.py +550 -0
  465. sysnet_auth-0.2.8/skills/red-teaming/godmode/templates/prefill-subtle.json +10 -0
  466. sysnet_auth-0.2.8/skills/red-teaming/godmode/templates/prefill.json +18 -0
  467. sysnet_auth-0.2.8/skills/research/DESCRIPTION.md +3 -0
  468. sysnet_auth-0.2.8/skills/research/arxiv/SKILL.md +281 -0
  469. sysnet_auth-0.2.8/skills/research/arxiv/scripts/search_arxiv.py +114 -0
  470. sysnet_auth-0.2.8/skills/research/blogwatcher/SKILL.md +136 -0
  471. sysnet_auth-0.2.8/skills/research/llm-wiki/SKILL.md +460 -0
  472. sysnet_auth-0.2.8/skills/research/polymarket/SKILL.md +76 -0
  473. sysnet_auth-0.2.8/skills/research/polymarket/references/api-endpoints.md +220 -0
  474. sysnet_auth-0.2.8/skills/research/polymarket/scripts/polymarket.py +284 -0
  475. sysnet_auth-0.2.8/skills/research/research-paper-writing/SKILL.md +2357 -0
  476. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
  477. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/checklists.md +434 -0
  478. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
  479. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
  480. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
  481. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/paper-types.md +481 -0
  482. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
  483. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/sources.md +185 -0
  484. sysnet_auth-0.2.8/skills/research/research-paper-writing/references/writing-guide.md +474 -0
  485. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/README.md +251 -0
  486. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
  487. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  488. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  489. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  490. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  491. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  492. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/README.md +50 -0
  493. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
  494. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
  495. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  496. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  497. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
  498. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
  499. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
  500. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
  501. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  502. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  503. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  504. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  505. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  506. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  507. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
  508. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
  509. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  510. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  511. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  512. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  513. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  514. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  515. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  516. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  517. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
  518. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  519. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
  520. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  521. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
  522. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  523. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  524. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
  525. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  526. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
  527. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  528. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
  529. sysnet_auth-0.2.8/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
  530. sysnet_auth-0.2.8/skills/smart-home/DESCRIPTION.md +3 -0
  531. sysnet_auth-0.2.8/skills/smart-home/openhue/SKILL.md +108 -0
  532. sysnet_auth-0.2.8/skills/social-media/DESCRIPTION.md +3 -0
  533. sysnet_auth-0.2.8/skills/social-media/xitter/SKILL.md +202 -0
  534. sysnet_auth-0.2.8/skills/software-development/plan/SKILL.md +57 -0
  535. sysnet_auth-0.2.8/skills/software-development/requesting-code-review/SKILL.md +282 -0
  536. sysnet_auth-0.2.8/skills/software-development/subagent-driven-development/SKILL.md +342 -0
  537. sysnet_auth-0.2.8/skills/software-development/systematic-debugging/SKILL.md +366 -0
  538. sysnet_auth-0.2.8/skills/software-development/test-driven-development/SKILL.md +342 -0
  539. sysnet_auth-0.2.8/skills/software-development/writing-plans/SKILL.md +296 -0
  540. sysnet_auth-0.2.8/sysnet_auth.egg-info/PKG-INFO +61 -0
  541. sysnet_auth-0.2.8/sysnet_auth.egg-info/SOURCES.txt +572 -0
  542. sysnet_auth-0.2.8/sysnet_auth.egg-info/top_level.txt +1 -0
  543. sysnet_auth-0.2.8/tests/test_batch_runner_checkpoint.py +159 -0
  544. sysnet_auth-0.2.8/tests/test_cli_file_drop.py +176 -0
  545. sysnet_auth-0.2.8/tests/test_cli_skin_integration.py +140 -0
  546. sysnet_auth-0.2.8/tests/test_ctx_halving_fix.py +319 -0
  547. sysnet_auth-0.2.8/tests/test_empty_model_fallback.py +120 -0
  548. sysnet_auth-0.2.8/tests/test_evidence_store.py +186 -0
  549. sysnet_auth-0.2.8/tests/test_hermes_constants.py +62 -0
  550. sysnet_auth-0.2.8/tests/test_hermes_logging.py +728 -0
  551. sysnet_auth-0.2.8/tests/test_hermes_state.py +1377 -0
  552. sysnet_auth-0.2.8/tests/test_honcho_client_config.py +105 -0
  553. sysnet_auth-0.2.8/tests/test_ipv4_preference.py +114 -0
  554. sysnet_auth-0.2.8/tests/test_mcp_serve.py +1111 -0
  555. sysnet_auth-0.2.8/tests/test_minisweagent_path.py +2 -0
  556. sysnet_auth-0.2.8/tests/test_model_picker_scroll.py +118 -0
  557. sysnet_auth-0.2.8/tests/test_model_tools.py +139 -0
  558. sysnet_auth-0.2.8/tests/test_model_tools_async_bridge.py +307 -0
  559. sysnet_auth-0.2.8/tests/test_ollama_num_ctx.py +135 -0
  560. sysnet_auth-0.2.8/tests/test_packaging_metadata.py +22 -0
  561. sysnet_auth-0.2.8/tests/test_project_metadata.py +29 -0
  562. sysnet_auth-0.2.8/tests/test_retry_utils.py +117 -0
  563. sysnet_auth-0.2.8/tests/test_sql_injection.py +43 -0
  564. sysnet_auth-0.2.8/tests/test_subprocess_home_isolation.py +198 -0
  565. sysnet_auth-0.2.8/tests/test_timezone.py +383 -0
  566. sysnet_auth-0.2.8/tests/test_toolset_distributions.py +103 -0
  567. sysnet_auth-0.2.8/tests/test_toolsets.py +143 -0
  568. sysnet_auth-0.2.8/tests/test_trajectory_compressor.py +419 -0
  569. sysnet_auth-0.2.8/tests/test_trajectory_compressor_async.py +115 -0
  570. sysnet_auth-0.2.8/tests/test_utils_truthy_values.py +29 -0
  571. sysnet_auth-0.2.4/LICENSE +0 -661
  572. sysnet_auth-0.2.4/PKG-INFO +0 -280
  573. sysnet_auth-0.2.4/README.md +0 -242
  574. sysnet_auth-0.2.4/auth_lib/__init__.py +0 -75
  575. sysnet_auth-0.2.4/auth_lib/config.py +0 -124
  576. sysnet_auth-0.2.4/auth_lib/dependencies.py +0 -184
  577. sysnet_auth-0.2.4/auth_lib/exceptions.py +0 -56
  578. sysnet_auth-0.2.4/auth_lib/jwks.py +0 -178
  579. sysnet_auth-0.2.4/auth_lib/models.py +0 -105
  580. sysnet_auth-0.2.4/auth_lib/observability.py +0 -128
  581. sysnet_auth-0.2.4/auth_lib/roles.py +0 -83
  582. sysnet_auth-0.2.4/sysnet_auth.egg-info/PKG-INFO +0 -280
  583. sysnet_auth-0.2.4/sysnet_auth.egg-info/SOURCES.txt +0 -21
  584. sysnet_auth-0.2.4/sysnet_auth.egg-info/top_level.txt +0 -1
  585. sysnet_auth-0.2.4/tests/test_edges.py +0 -233
  586. sysnet_auth-0.2.4/tests/test_features.py +0 -399
  587. sysnet_auth-0.2.4/tests/test_jwt.py +0 -177
  588. sysnet_auth-0.2.4/tests/test_roles.py +0 -124
  589. {sysnet_auth-0.2.4 → sysnet_auth-0.2.8}/setup.cfg +0 -0
  590. /sysnet_auth-0.2.4/auth_lib/py.typed → /sysnet_auth-0.2.8/skills/productivity/powerpoint/scripts/__init__.py +0 -0
  591. {sysnet_auth-0.2.4 → sysnet_auth-0.2.8}/sysnet_auth.egg-info/dependency_links.txt +0 -0
  592. {sysnet_auth-0.2.4 → sysnet_auth-0.2.8}/sysnet_auth.egg-info/requires.txt +0 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Nous Research
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ graft skills
2
+ graft optional-skills
3
+ global-exclude __pycache__
4
+ global-exclude *.py[cod]
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: sysnet-auth
3
+ Version: 0.2.8
4
+ Summary: Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloack (OIDC/JWT).
5
+ Author: SYSNET s.r.o.
6
+ License: GNU Affero General Public License v3
7
+ Project-URL: Homepage, https://sysnet.cz
8
+ Project-URL: Repository, https://github.com/SYSNET-CZ/auth-lib
9
+ Project-URL: Documentation, https://github.com/SYSNET-CZ/auth-lib#readme
10
+ Project-URL: Bug Tracker, https://github.com/SYSNET-CZ/auth-lib/issues
11
+ Keywords: fastapi,keycloak,jwt,oidc,auth,sysnet
12
+ Classifier: Framework :: FastAPI
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
18
+ Classifier: Topic :: Security
19
+ Classifier: Typing :: Typed
20
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
21
+ Requires-Python: >=3.11
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: fastapi<1,>=0.115
25
+ Requires-Dist: pydantic<3,>=2.9
26
+ Requires-Dist: pydantic-settings<3,>=2.3
27
+ Requires-Dist: pyjwt[crypto]<3,>=2.9
28
+ Requires-Dist: httpx<1,>=0.27
29
+ Requires-Dist: sysnet-pyutils>=0.1
30
+ Provides-Extra: dev
31
+ Requires-Dist: pytest<10,>=8.0; extra == "dev"
32
+ Requires-Dist: pytest-asyncio<1,>=0.23; extra == "dev"
33
+ Requires-Dist: pytest-cov<8,>=5.0; extra == "dev"
34
+ Requires-Dist: cryptography<48,>=42.0; extra == "dev"
35
+ Requires-Dist: mypy<2,>=1.11; extra == "dev"
36
+ Requires-Dist: ruff<1,>=0.6; extra == "dev"
37
+ Dynamic: license-file
38
+
39
+ # sysnet-auth
40
+
41
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-181717?style=flat&logo=github)](https://github.com/SYSNET-CZ/auth-lib)
42
+ ![PyPI - Version](https://img.shields.io/pypi/v/sysnet-auth)
43
+ ![Python Version](https://img.shields.io/pypi/pyversions/sysnet-auth)
44
+ ![FastAPI](https://img.shields.io/badge/FastAPI-0.115%2B-009688.svg?style=flat&logo=fastapi)
45
+ ![License](https://img.shields.io/badge/license-Proprietary-red.svg)
46
+ ![Tests](https://img.shields.io/badge/tests-passed-brightgreen.svg)
47
+
48
+ Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloak (OIDC/JWT).
49
+
50
+ ## Installation
51
+
52
+ ```bash
53
+ pip install sysnet-auth
54
+ ```
55
+
56
+ ## Features
57
+
58
+ - JWT validation using Keycloak public keys
59
+ - Async JWKS caching with stale-if-error support
60
+ - Automated authentication dependency for FastAPI
61
+ - Permission-based access control (scopes/roles)
@@ -0,0 +1,23 @@
1
+ # sysnet-auth
2
+
3
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-181717?style=flat&logo=github)](https://github.com/SYSNET-CZ/auth-lib)
4
+ ![PyPI - Version](https://img.shields.io/pypi/v/sysnet-auth)
5
+ ![Python Version](https://img.shields.io/pypi/pyversions/sysnet-auth)
6
+ ![FastAPI](https://img.shields.io/badge/FastAPI-0.115%2B-009688.svg?style=flat&logo=fastapi)
7
+ ![License](https://img.shields.io/badge/license-Proprietary-red.svg)
8
+ ![Tests](https://img.shields.io/badge/tests-passed-brightgreen.svg)
9
+
10
+ Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloak (OIDC/JWT).
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pip install sysnet-auth
16
+ ```
17
+
18
+ ## Features
19
+
20
+ - JWT validation using Keycloak public keys
21
+ - Async JWKS caching with stale-if-error support
22
+ - Automated authentication dependency for FastAPI
23
+ - Permission-based access control (scopes/roles)
@@ -0,0 +1,24 @@
1
+ # Optional Skills
2
+
3
+ Official skills maintained by Nous Research that are **not activated by default**.
4
+
5
+ These skills ship with the hermes-agent repository but are not copied to
6
+ `~/.hermes/skills/` during setup. They are discoverable via the Skills Hub:
7
+
8
+ ```bash
9
+ hermes skills browse # browse all skills, official shown first
10
+ hermes skills browse --source official # browse only official optional skills
11
+ hermes skills search <query> # finds optional skills labeled "official"
12
+ hermes skills install <identifier> # copies to ~/.hermes/skills/ and activates
13
+ ```
14
+
15
+ ## Why optional?
16
+
17
+ Some skills are useful but not broadly needed by every user:
18
+
19
+ - **Niche integrations** — specific paid services, specialized tools
20
+ - **Experimental features** — promising but not yet proven
21
+ - **Heavyweight dependencies** — require significant setup (API keys, installs)
22
+
23
+ By keeping them optional, we keep the default skill set lean while still
24
+ providing curated, tested, official skills for users who want them.
@@ -0,0 +1,2 @@
1
+ Optional autonomous AI agent integrations — external coding agent CLIs
2
+ that can be delegated to for independent coding tasks.
@@ -0,0 +1,143 @@
1
+ ---
2
+ name: blackbox
3
+ description: Delegate coding tasks to Blackbox AI CLI agent. Multi-model agent with built-in judge that runs tasks through multiple LLMs and picks the best result. Requires the blackbox CLI and a Blackbox AI API key.
4
+ version: 1.0.0
5
+ author: Hermes Agent (Nous Research)
6
+ license: MIT
7
+ metadata:
8
+ hermes:
9
+ tags: [Coding-Agent, Blackbox, Multi-Agent, Judge, Multi-Model]
10
+ related_skills: [claude-code, codex, hermes-agent]
11
+ ---
12
+
13
+ # Blackbox CLI
14
+
15
+ Delegate coding tasks to [Blackbox AI](https://www.blackbox.ai/) via the Hermes terminal. Blackbox is a multi-model coding agent CLI that dispatches tasks to multiple LLMs (Claude, Codex, Gemini, Blackbox Pro) and uses a judge to select the best implementation.
16
+
17
+ The CLI is [open-source](https://github.com/blackboxaicode/cli) (GPL-3.0, TypeScript, forked from Gemini CLI) and supports interactive sessions, non-interactive one-shots, checkpointing, MCP, and vision model switching.
18
+
19
+ ## Prerequisites
20
+
21
+ - Node.js 20+ installed
22
+ - Blackbox CLI installed: `npm install -g @blackboxai/cli`
23
+ - Or install from source:
24
+ ```
25
+ git clone https://github.com/blackboxaicode/cli.git
26
+ cd cli && npm install && npm install -g .
27
+ ```
28
+ - API key from [app.blackbox.ai/dashboard](https://app.blackbox.ai/dashboard)
29
+ - Configured: run `blackbox configure` and enter your API key
30
+ - Use `pty=true` in terminal calls — Blackbox CLI is an interactive terminal app
31
+
32
+ ## One-Shot Tasks
33
+
34
+ ```
35
+ terminal(command="blackbox --prompt 'Add JWT authentication with refresh tokens to the Express API'", workdir="/path/to/project", pty=true)
36
+ ```
37
+
38
+ For quick scratch work:
39
+ ```
40
+ terminal(command="cd $(mktemp -d) && git init && blackbox --prompt 'Build a REST API for todos with SQLite'", pty=true)
41
+ ```
42
+
43
+ ## Background Mode (Long Tasks)
44
+
45
+ For tasks that take minutes, use background mode so you can monitor progress:
46
+
47
+ ```
48
+ # Start in background with PTY
49
+ terminal(command="blackbox --prompt 'Refactor the auth module to use OAuth 2.0'", workdir="~/project", background=true, pty=true)
50
+ # Returns session_id
51
+
52
+ # Monitor progress
53
+ process(action="poll", session_id="<id>")
54
+ process(action="log", session_id="<id>")
55
+
56
+ # Send input if Blackbox asks a question
57
+ process(action="submit", session_id="<id>", data="yes")
58
+
59
+ # Kill if needed
60
+ process(action="kill", session_id="<id>")
61
+ ```
62
+
63
+ ## Checkpoints & Resume
64
+
65
+ Blackbox CLI has built-in checkpoint support for pausing and resuming tasks:
66
+
67
+ ```
68
+ # After a task completes, Blackbox shows a checkpoint tag
69
+ # Resume with a follow-up task:
70
+ terminal(command="blackbox --resume-checkpoint 'task-abc123-2026-03-06' --prompt 'Now add rate limiting to the endpoints'", workdir="~/project", pty=true)
71
+ ```
72
+
73
+ ## Session Commands
74
+
75
+ During an interactive session, use these commands:
76
+
77
+ | Command | Effect |
78
+ |---------|--------|
79
+ | `/compress` | Shrink conversation history to save tokens |
80
+ | `/clear` | Wipe history and start fresh |
81
+ | `/stats` | View current token usage |
82
+ | `Ctrl+C` | Cancel current operation |
83
+
84
+ ## PR Reviews
85
+
86
+ Clone to a temp directory to avoid modifying the working tree:
87
+
88
+ ```
89
+ terminal(command="REVIEW=$(mktemp -d) && git clone https://github.com/user/repo.git $REVIEW && cd $REVIEW && gh pr checkout 42 && blackbox --prompt 'Review this PR against main. Check for bugs, security issues, and code quality.'", pty=true)
90
+ ```
91
+
92
+ ## Parallel Work
93
+
94
+ Spawn multiple Blackbox instances for independent tasks:
95
+
96
+ ```
97
+ terminal(command="blackbox --prompt 'Fix the login bug'", workdir="/tmp/issue-1", background=true, pty=true)
98
+ terminal(command="blackbox --prompt 'Add unit tests for auth'", workdir="/tmp/issue-2", background=true, pty=true)
99
+
100
+ # Monitor all
101
+ process(action="list")
102
+ ```
103
+
104
+ ## Multi-Model Mode
105
+
106
+ Blackbox's unique feature is running the same task through multiple models and judging the results. Configure which models to use via `blackbox configure` — select multiple providers to enable the Chairman/judge workflow where the CLI evaluates outputs from different models and picks the best one.
107
+
108
+ ## Key Flags
109
+
110
+ | Flag | Effect |
111
+ |------|--------|
112
+ | `--prompt "task"` | Non-interactive one-shot execution |
113
+ | `--resume-checkpoint "tag"` | Resume from a saved checkpoint |
114
+ | `--yolo` | Auto-approve all actions and model switches |
115
+ | `blackbox session` | Start interactive chat session |
116
+ | `blackbox configure` | Change settings, providers, models |
117
+ | `blackbox info` | Display system information |
118
+
119
+ ## Vision Support
120
+
121
+ Blackbox automatically detects images in input and can switch to multimodal analysis. VLM modes:
122
+ - `"once"` — Switch model for current query only
123
+ - `"session"` — Switch for entire session
124
+ - `"persist"` — Stay on current model (no switch)
125
+
126
+ ## Token Limits
127
+
128
+ Control token usage via `.blackboxcli/settings.json`:
129
+ ```json
130
+ {
131
+ "sessionTokenLimit": 32000
132
+ }
133
+ ```
134
+
135
+ ## Rules
136
+
137
+ 1. **Always use `pty=true`** — Blackbox CLI is an interactive terminal app and will hang without a PTY
138
+ 2. **Use `workdir`** — keep the agent focused on the right directory
139
+ 3. **Background for long tasks** — use `background=true` and monitor with `process` tool
140
+ 4. **Don't interfere** — monitor with `poll`/`log`, don't kill sessions because they're slow
141
+ 5. **Report results** — after completion, check what changed and summarize for the user
142
+ 6. **Credits cost money** — Blackbox uses a credit-based system; multi-model mode consumes credits faster
143
+ 7. **Check prerequisites** — verify `blackbox` CLI is installed before attempting delegation
@@ -0,0 +1,243 @@
1
+ ---
2
+ name: honcho
3
+ description: Configure and use Honcho memory with Hermes -- cross-session user modeling, multi-profile peer isolation, observation config, and dialectic reasoning. Use when setting up Honcho, troubleshooting memory, managing profiles with Honcho peers, or tuning observation and recall settings.
4
+ version: 1.0.0
5
+ author: Hermes Agent
6
+ license: MIT
7
+ metadata:
8
+ hermes:
9
+ tags: [Honcho, Memory, Profiles, Observation, Dialectic, User-Modeling]
10
+ homepage: https://docs.honcho.dev
11
+ related_skills: [hermes-agent]
12
+ prerequisites:
13
+ pip: [honcho-ai]
14
+ ---
15
+
16
+ # Honcho Memory for Hermes
17
+
18
+ Honcho provides AI-native cross-session user modeling. It learns who the user is across conversations and gives every Hermes profile its own peer identity while sharing a unified view of the user.
19
+
20
+ ## When to Use
21
+
22
+ - Setting up Honcho (cloud or self-hosted)
23
+ - Troubleshooting memory not working / peers not syncing
24
+ - Creating multi-profile setups where each agent has its own Honcho peer
25
+ - Tuning observation, recall, or write frequency settings
26
+ - Understanding what the 4 Honcho tools do and when to use them
27
+
28
+ ## Setup
29
+
30
+ ### Cloud (app.honcho.dev)
31
+
32
+ ```bash
33
+ hermes honcho setup
34
+ # select "cloud", paste API key from https://app.honcho.dev
35
+ ```
36
+
37
+ ### Self-hosted
38
+
39
+ ```bash
40
+ hermes honcho setup
41
+ # select "local", enter base URL (e.g. http://localhost:8000)
42
+ ```
43
+
44
+ See: https://docs.honcho.dev/v3/guides/integrations/hermes#running-honcho-locally-with-hermes
45
+
46
+ ### Verify
47
+
48
+ ```bash
49
+ hermes honcho status # shows resolved config, connection test, peer info
50
+ ```
51
+
52
+ ## Architecture
53
+
54
+ ### Peers
55
+
56
+ Honcho models conversations as interactions between **peers**. Hermes creates two peers per session:
57
+
58
+ - **User peer** (`peerName`): represents the human. Honcho builds a user representation from observed messages.
59
+ - **AI peer** (`aiPeer`): represents this Hermes instance. Each profile gets its own AI peer so agents develop independent views.
60
+
61
+ ### Observation
62
+
63
+ Each peer has two observation toggles that control what Honcho learns from:
64
+
65
+ | Toggle | What it does |
66
+ |--------|-------------|
67
+ | `observeMe` | Peer's own messages are observed (builds self-representation) |
68
+ | `observeOthers` | Other peers' messages are observed (builds cross-peer understanding) |
69
+
70
+ Default: all four toggles **on** (full bidirectional observation).
71
+
72
+ Configure per-peer in `honcho.json`:
73
+
74
+ ```json
75
+ {
76
+ "observation": {
77
+ "user": { "observeMe": true, "observeOthers": true },
78
+ "ai": { "observeMe": true, "observeOthers": true }
79
+ }
80
+ }
81
+ ```
82
+
83
+ Or use the shorthand presets:
84
+
85
+ | Preset | User | AI | Use case |
86
+ |--------|------|----|----------|
87
+ | `"directional"` (default) | me:on, others:on | me:on, others:on | Multi-agent, full memory |
88
+ | `"unified"` | me:on, others:off | me:off, others:on | Single agent, user-only modeling |
89
+
90
+ Settings changed in the [Honcho dashboard](https://app.honcho.dev) are synced back on session init -- server-side config wins over local defaults.
91
+
92
+ ### Sessions
93
+
94
+ Honcho sessions scope where messages and observations land. Strategy options:
95
+
96
+ | Strategy | Behavior |
97
+ |----------|----------|
98
+ | `per-directory` (default) | One session per working directory |
99
+ | `per-repo` | One session per git repository root |
100
+ | `per-session` | New Honcho session each Hermes run |
101
+ | `global` | Single session across all directories |
102
+
103
+ Manual override: `hermes honcho map my-project-name`
104
+
105
+ ### Recall Modes
106
+
107
+ How the agent accesses Honcho memory:
108
+
109
+ | Mode | Auto-inject context? | Tools available? | Use case |
110
+ |------|---------------------|-----------------|----------|
111
+ | `hybrid` (default) | Yes | Yes | Agent decides when to use tools vs auto context |
112
+ | `context` | Yes | No (hidden) | Minimal token cost, no tool calls |
113
+ | `tools` | No | Yes | Agent controls all memory access explicitly |
114
+
115
+ ## Multi-Profile Setup
116
+
117
+ Each Hermes profile gets its own Honcho AI peer while sharing the same workspace (user context). This means:
118
+
119
+ - All profiles see the same user representation
120
+ - Each profile builds its own AI identity and observations
121
+ - Conclusions written by one profile are visible to others via the shared workspace
122
+
123
+ ### Create a profile with Honcho peer
124
+
125
+ ```bash
126
+ hermes profile create coder --clone
127
+ # creates host block hermes.coder, AI peer "coder", inherits config from default
128
+ ```
129
+
130
+ What `--clone` does for Honcho:
131
+ 1. Creates a `hermes.coder` host block in `honcho.json`
132
+ 2. Sets `aiPeer: "coder"` (the profile name)
133
+ 3. Inherits `workspace`, `peerName`, `writeFrequency`, `recallMode`, etc. from default
134
+ 4. Eagerly creates the peer in Honcho so it exists before first message
135
+
136
+ ### Backfill existing profiles
137
+
138
+ ```bash
139
+ hermes honcho sync # creates host blocks for all profiles that don't have one yet
140
+ ```
141
+
142
+ ### Per-profile config
143
+
144
+ Override any setting in the host block:
145
+
146
+ ```json
147
+ {
148
+ "hosts": {
149
+ "hermes.coder": {
150
+ "aiPeer": "coder",
151
+ "recallMode": "tools",
152
+ "observation": {
153
+ "user": { "observeMe": true, "observeOthers": false },
154
+ "ai": { "observeMe": true, "observeOthers": true }
155
+ }
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+ ## Tools
162
+
163
+ The agent has 4 Honcho tools (hidden in `context` recall mode):
164
+
165
+ ### `honcho_profile`
166
+ Quick factual snapshot of the user -- name, role, preferences, patterns. No LLM call, minimal cost. Use at conversation start or for fast lookups.
167
+
168
+ ### `honcho_search`
169
+ Semantic search over stored context. Returns raw excerpts ranked by relevance, no LLM synthesis. Default 800 tokens, max 2000. Use when you want specific past facts to reason over yourself.
170
+
171
+ ### `honcho_context`
172
+ Natural language question answered by Honcho's dialectic reasoning (LLM call on Honcho's backend). Higher cost, higher quality. Can query about user (default) or the AI peer.
173
+
174
+ ### `honcho_conclude`
175
+ Write a persistent fact about the user. Conclusions build the user's profile over time. Use when the user states a preference, corrects you, or shares something to remember.
176
+
177
+ ## Config Reference
178
+
179
+ Config file: `$HERMES_HOME/honcho.json` (profile-local) or `~/.honcho/config.json` (global).
180
+
181
+ ### Key settings
182
+
183
+ | Key | Default | Description |
184
+ |-----|---------|-------------|
185
+ | `apiKey` | -- | API key ([get one](https://app.honcho.dev)) |
186
+ | `baseUrl` | -- | Base URL for self-hosted Honcho |
187
+ | `peerName` | -- | User peer identity |
188
+ | `aiPeer` | host key | AI peer identity |
189
+ | `workspace` | host key | Shared workspace ID |
190
+ | `recallMode` | `hybrid` | `hybrid`, `context`, or `tools` |
191
+ | `observation` | all on | Per-peer `observeMe`/`observeOthers` booleans |
192
+ | `writeFrequency` | `async` | `async`, `turn`, `session`, or integer N |
193
+ | `sessionStrategy` | `per-directory` | `per-directory`, `per-repo`, `per-session`, `global` |
194
+ | `dialecticReasoningLevel` | `low` | `minimal`, `low`, `medium`, `high`, `max` |
195
+ | `dialecticDynamic` | `true` | Auto-bump reasoning by query length. `false` = fixed level |
196
+ | `messageMaxChars` | `25000` | Max chars per message (chunked if exceeded) |
197
+ | `dialecticMaxInputChars` | `10000` | Max chars for dialectic query input |
198
+
199
+ ### Cost-awareness (advanced, root config only)
200
+
201
+ | Key | Default | Description |
202
+ |-----|---------|-------------|
203
+ | `injectionFrequency` | `every-turn` | `every-turn` or `first-turn` |
204
+ | `contextCadence` | `1` | Min turns between context API calls |
205
+ | `dialecticCadence` | `1` | Min turns between dialectic API calls |
206
+
207
+ ## Troubleshooting
208
+
209
+ ### "Honcho not configured"
210
+ Run `hermes honcho setup`. Ensure `memory.provider: honcho` is in `~/.hermes/config.yaml`.
211
+
212
+ ### Memory not persisting across sessions
213
+ Check `hermes honcho status` -- verify `saveMessages: true` and `writeFrequency` isn't `session` (which only writes on exit).
214
+
215
+ ### Profile not getting its own peer
216
+ Use `--clone` when creating: `hermes profile create <name> --clone`. For existing profiles: `hermes honcho sync`.
217
+
218
+ ### Observation changes in dashboard not reflected
219
+ Observation config is synced from the server on each session init. Start a new session after changing settings in the Honcho UI.
220
+
221
+ ### Messages truncated
222
+ Messages over `messageMaxChars` (default 25k) are automatically chunked with `[continued]` markers. If you're hitting this often, check if tool results or skill content is inflating message size.
223
+
224
+ ## CLI Commands
225
+
226
+ | Command | Description |
227
+ |---------|-------------|
228
+ | `hermes honcho setup` | Interactive setup wizard (cloud/local, identity, observation, recall, sessions) |
229
+ | `hermes honcho status` | Show resolved config, connection test, peer info for active profile |
230
+ | `hermes honcho enable` | Enable Honcho for the active profile (creates host block if needed) |
231
+ | `hermes honcho disable` | Disable Honcho for the active profile |
232
+ | `hermes honcho peer` | Show or update peer names (`--user <name>`, `--ai <name>`, `--reasoning <level>`) |
233
+ | `hermes honcho peers` | Show peer identities across all profiles |
234
+ | `hermes honcho mode` | Show or set recall mode (`hybrid`, `context`, `tools`) |
235
+ | `hermes honcho tokens` | Show or set token budgets (`--context <N>`, `--dialectic <N>`) |
236
+ | `hermes honcho sessions` | List known directory-to-session-name mappings |
237
+ | `hermes honcho map <name>` | Map current working directory to a Honcho session name |
238
+ | `hermes honcho identity` | Seed AI peer identity or show both peer representations |
239
+ | `hermes honcho sync` | Create host blocks for all Hermes profiles that don't have one yet |
240
+ | `hermes honcho migrate` | Step-by-step migration guide from OpenClaw native memory to Hermes + Honcho |
241
+ | `hermes memory setup` | Generic memory provider picker (selecting "honcho" runs the same wizard) |
242
+ | `hermes memory status` | Show active memory provider and config |
243
+ | `hermes memory off` | Disable external memory provider |