siyarix 1.0.0b0__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 (258) hide show
  1. siyarix-1.0.0b0/.env.example +39 -0
  2. siyarix-1.0.0b0/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  3. siyarix-1.0.0b0/.github/ISSUE_TEMPLATE/feature_request.md +28 -0
  4. siyarix-1.0.0b0/.github/PULL_REQUEST_TEMPLATE.md +48 -0
  5. siyarix-1.0.0b0/.github/dependabot.yml +25 -0
  6. siyarix-1.0.0b0/.github/labeler.yml +129 -0
  7. siyarix-1.0.0b0/.github/workflows/ai-comments-advanced.yml +493 -0
  8. siyarix-1.0.0b0/.github/workflows/auto-merge.yml +253 -0
  9. siyarix-1.0.0b0/.github/workflows/build-packages.yml +111 -0
  10. siyarix-1.0.0b0/.github/workflows/ci.yml +320 -0
  11. siyarix-1.0.0b0/.github/workflows/coverage.yml +221 -0
  12. siyarix-1.0.0b0/.github/workflows/dependency-review.yml +159 -0
  13. siyarix-1.0.0b0/.github/workflows/labeler.yml +216 -0
  14. siyarix-1.0.0b0/.github/workflows/maintenance.yml +232 -0
  15. siyarix-1.0.0b0/.github/workflows/pre-commit.yml +140 -0
  16. siyarix-1.0.0b0/.github/workflows/release-readiness.yml +89 -0
  17. siyarix-1.0.0b0/.github/workflows/release.yml +463 -0
  18. siyarix-1.0.0b0/.github/workflows/security.yml +256 -0
  19. siyarix-1.0.0b0/.github/workflows/stale.yml +156 -0
  20. siyarix-1.0.0b0/.gitignore +146 -0
  21. siyarix-1.0.0b0/.mypy.ini +9 -0
  22. siyarix-1.0.0b0/.pre-commit-config.yaml +35 -0
  23. siyarix-1.0.0b0/AI_PROVIDER_POLICY.md +271 -0
  24. siyarix-1.0.0b0/CHANGELOG.md +22 -0
  25. siyarix-1.0.0b0/CODE_OF_CONDUCT.md +56 -0
  26. siyarix-1.0.0b0/COMMERCIAL_LICENSE.md +75 -0
  27. siyarix-1.0.0b0/CONTRIBUTING.md +266 -0
  28. siyarix-1.0.0b0/CONTRIBUTORS.md +19 -0
  29. siyarix-1.0.0b0/DISCLAIMER.md +81 -0
  30. siyarix-1.0.0b0/Dockerfile +39 -0
  31. siyarix-1.0.0b0/ETHICAL_USE.md +119 -0
  32. siyarix-1.0.0b0/GOVERNANCE.md +132 -0
  33. siyarix-1.0.0b0/LICENSE +661 -0
  34. siyarix-1.0.0b0/LICENSE_SUMMARY.md +51 -0
  35. siyarix-1.0.0b0/Makefile +120 -0
  36. siyarix-1.0.0b0/NOTICE +169 -0
  37. siyarix-1.0.0b0/PKG-INFO +300 -0
  38. siyarix-1.0.0b0/README.md +226 -0
  39. siyarix-1.0.0b0/RESPONSIBLE_AI_USE.md +155 -0
  40. siyarix-1.0.0b0/SECURITY.md +142 -0
  41. siyarix-1.0.0b0/SUPPORT.md +59 -0
  42. siyarix-1.0.0b0/THIRD_PARTY_LICENSES.md +101 -0
  43. siyarix-1.0.0b0/TRADEMARK_POLICY.md +128 -0
  44. siyarix-1.0.0b0/assets/logo.png +0 -0
  45. siyarix-1.0.0b0/docker-compose.yml +94 -0
  46. siyarix-1.0.0b0/docs/DOCS_MAP.md +198 -0
  47. siyarix-1.0.0b0/docs/ai/agent-reasoning.md +148 -0
  48. siyarix-1.0.0b0/docs/ai/mcp-integration.md +67 -0
  49. siyarix-1.0.0b0/docs/ai/multi-model-ensemble.md +105 -0
  50. siyarix-1.0.0b0/docs/ai/multi-provider-routing.md +129 -0
  51. siyarix-1.0.0b0/docs/ai/prompt-architecture.md +143 -0
  52. siyarix-1.0.0b0/docs/ai/safety-and-hallucination.md +112 -0
  53. siyarix-1.0.0b0/docs/ai/tool-execution.md +181 -0
  54. siyarix-1.0.0b0/docs/architecture/ai-agent-pipeline.md +96 -0
  55. siyarix-1.0.0b0/docs/architecture/execution-engine.md +158 -0
  56. siyarix-1.0.0b0/docs/architecture/experience-intelligence.md +118 -0
  57. siyarix-1.0.0b0/docs/architecture/intent-routing.md +88 -0
  58. siyarix-1.0.0b0/docs/architecture/interaction-modes.md +118 -0
  59. siyarix-1.0.0b0/docs/architecture/memory-and-state.md +114 -0
  60. siyarix-1.0.0b0/docs/architecture/multi-agent-framework.md +98 -0
  61. siyarix-1.0.0b0/docs/architecture/overview.md +93 -0
  62. siyarix-1.0.0b0/docs/architecture/provider-abstraction.md +123 -0
  63. siyarix-1.0.0b0/docs/architecture/security-model.md +130 -0
  64. siyarix-1.0.0b0/docs/developer/building.md +102 -0
  65. siyarix-1.0.0b0/docs/developer/codebase-overview.md +106 -0
  66. siyarix-1.0.0b0/docs/developer/contribution-guide.md +99 -0
  67. siyarix-1.0.0b0/docs/developer/module-architecture.md +108 -0
  68. siyarix-1.0.0b0/docs/developer/testing.md +122 -0
  69. siyarix-1.0.0b0/docs/getting-started/configuration.md +101 -0
  70. siyarix-1.0.0b0/docs/getting-started/first-run.md +79 -0
  71. siyarix-1.0.0b0/docs/getting-started/installation.md +90 -0
  72. siyarix-1.0.0b0/docs/getting-started/setup.md +129 -0
  73. siyarix-1.0.0b0/docs/getting-started/troubleshooting.md +153 -0
  74. siyarix-1.0.0b0/docs/legal/agpl-license-guide.md +89 -0
  75. siyarix-1.0.0b0/docs/legal/disclaimer.md +48 -0
  76. siyarix-1.0.0b0/docs/legal/note-file-explained.md +89 -0
  77. siyarix-1.0.0b0/docs/legal/responsible-ai-usage.md +90 -0
  78. siyarix-1.0.0b0/docs/legal/trademark-policy.md +58 -0
  79. siyarix-1.0.0b0/docs/security/abuse-prevention.md +126 -0
  80. siyarix-1.0.0b0/docs/security/ethical-hacking-policy.md +77 -0
  81. siyarix-1.0.0b0/docs/security/hsm-integration.md +77 -0
  82. siyarix-1.0.0b0/docs/security/operational-security.md +127 -0
  83. siyarix-1.0.0b0/docs/security/threat-model.md +110 -0
  84. siyarix-1.0.0b0/docs/security/vulnerability-reporting.md +81 -0
  85. siyarix-1.0.0b0/docs/user/ai-workflows.md +82 -0
  86. siyarix-1.0.0b0/docs/user/cli-commands.md +185 -0
  87. siyarix-1.0.0b0/docs/user/cloud-scanning.md +85 -0
  88. siyarix-1.0.0b0/docs/user/compliance-frameworks.md +101 -0
  89. siyarix-1.0.0b0/docs/user/deception-and-canary-tokens.md +105 -0
  90. siyarix-1.0.0b0/docs/user/iac-scanning.md +85 -0
  91. siyarix-1.0.0b0/docs/user/importing-findings.md +74 -0
  92. siyarix-1.0.0b0/docs/user/interactive-chat.md +106 -0
  93. siyarix-1.0.0b0/docs/user/iot-scanning.md +73 -0
  94. siyarix-1.0.0b0/docs/user/mobile-scanning.md +77 -0
  95. siyarix-1.0.0b0/docs/user/offline-registry.md +119 -0
  96. siyarix-1.0.0b0/docs/user/playbooks.md +105 -0
  97. siyarix-1.0.0b0/docs/user/reporting.md +121 -0
  98. siyarix-1.0.0b0/docs/user/security-workflows.md +163 -0
  99. siyarix-1.0.0b0/docs/user/threat-intelligence.md +105 -0
  100. siyarix-1.0.0b0/docs/user/workflow-files.md +113 -0
  101. siyarix-1.0.0b0/install.ps1 +154 -0
  102. siyarix-1.0.0b0/install.sh +204 -0
  103. siyarix-1.0.0b0/otel-collector-config.yaml +20 -0
  104. siyarix-1.0.0b0/packages/chocolatey/siyarix.nuspec +42 -0
  105. siyarix-1.0.0b0/packages/chocolatey/tools/chocolateyinstall.ps1 +29 -0
  106. siyarix-1.0.0b0/packages/chocolatey/tools/chocolateyuninstall.ps1 +1 -0
  107. siyarix-1.0.0b0/packages/deb/DEBIAN/control +22 -0
  108. siyarix-1.0.0b0/packages/deb/DEBIAN/postinst +26 -0
  109. siyarix-1.0.0b0/packages/deb/DEBIAN/prerm +11 -0
  110. siyarix-1.0.0b0/packages/deb/build-apt-repo.sh +81 -0
  111. siyarix-1.0.0b0/packages/deb/build-deb.sh +66 -0
  112. siyarix-1.0.0b0/packages/harmonyos/install-harmonyos.sh +43 -0
  113. siyarix-1.0.0b0/packages/harmonyos/module.json5 +37 -0
  114. siyarix-1.0.0b0/packages/homebrew/siyarix.rb +19 -0
  115. siyarix-1.0.0b0/packages/npm/README.md +15 -0
  116. siyarix-1.0.0b0/packages/npm/package.json +44 -0
  117. siyarix-1.0.0b0/packages/rust_parsers/src/lib.rs +130 -0
  118. siyarix-1.0.0b0/packages/winget/Mufthakherul.Siyarix.installer.yaml +21 -0
  119. siyarix-1.0.0b0/packages/winget/Mufthakherul.Siyarix.locale.en-US.yaml +36 -0
  120. siyarix-1.0.0b0/packages/winget/Mufthakherul.Siyarix.yaml +8 -0
  121. siyarix-1.0.0b0/poetry.lock +1237 -0
  122. siyarix-1.0.0b0/pyproject.toml +116 -0
  123. siyarix-1.0.0b0/src/siyarix/__init__.py +150 -0
  124. siyarix-1.0.0b0/src/siyarix/__main__.py +8 -0
  125. siyarix-1.0.0b0/src/siyarix/agent.py +518 -0
  126. siyarix-1.0.0b0/src/siyarix/agent_lifecycle.py +70 -0
  127. siyarix-1.0.0b0/src/siyarix/agent_loop.py +159 -0
  128. siyarix-1.0.0b0/src/siyarix/audit_log.py +472 -0
  129. siyarix-1.0.0b0/src/siyarix/bootstrap.py +375 -0
  130. siyarix-1.0.0b0/src/siyarix/branding.py +315 -0
  131. siyarix-1.0.0b0/src/siyarix/cache_manager.py +206 -0
  132. siyarix-1.0.0b0/src/siyarix/chat.py +2889 -0
  133. siyarix-1.0.0b0/src/siyarix/config.py +292 -0
  134. siyarix-1.0.0b0/src/siyarix/core/__init__.py +31 -0
  135. siyarix-1.0.0b0/src/siyarix/core/agentic_loop.py +205 -0
  136. siyarix-1.0.0b0/src/siyarix/core/event_bus.py +36 -0
  137. siyarix-1.0.0b0/src/siyarix/core/intent_router.py +164 -0
  138. siyarix-1.0.0b0/src/siyarix/core/mode_dispatcher.py +136 -0
  139. siyarix-1.0.0b0/src/siyarix/core/pipeline.py +152 -0
  140. siyarix-1.0.0b0/src/siyarix/core/session_kernel.py +139 -0
  141. siyarix-1.0.0b0/src/siyarix/credential_store.py +699 -0
  142. siyarix-1.0.0b0/src/siyarix/cvss_scorer.py +312 -0
  143. siyarix-1.0.0b0/src/siyarix/data/__init__.py +2 -0
  144. siyarix-1.0.0b0/src/siyarix/data/tool_metadata.json +1861 -0
  145. siyarix-1.0.0b0/src/siyarix/dynamic_resolver.py +315 -0
  146. siyarix-1.0.0b0/src/siyarix/engine/__init__.py +29 -0
  147. siyarix-1.0.0b0/src/siyarix/engine/context.py +42 -0
  148. siyarix-1.0.0b0/src/siyarix/engine/executor.py +1178 -0
  149. siyarix-1.0.0b0/src/siyarix/engine/providers.py +238 -0
  150. siyarix-1.0.0b0/src/siyarix/engine/recovery.py +43 -0
  151. siyarix-1.0.0b0/src/siyarix/engine/safety.py +40 -0
  152. siyarix-1.0.0b0/src/siyarix/engine/steps.py +76 -0
  153. siyarix-1.0.0b0/src/siyarix/engine_types.py +34 -0
  154. siyarix-1.0.0b0/src/siyarix/exceptions.py +185 -0
  155. siyarix-1.0.0b0/src/siyarix/executor.py +244 -0
  156. siyarix-1.0.0b0/src/siyarix/health.py +364 -0
  157. siyarix-1.0.0b0/src/siyarix/interpreter.py +787 -0
  158. siyarix-1.0.0b0/src/siyarix/kill_switch.py +54 -0
  159. siyarix-1.0.0b0/src/siyarix/logging_config.py +60 -0
  160. siyarix-1.0.0b0/src/siyarix/main.py +1524 -0
  161. siyarix-1.0.0b0/src/siyarix/metrics.py +297 -0
  162. siyarix-1.0.0b0/src/siyarix/offline_registry/__init__.py +45 -0
  163. siyarix-1.0.0b0/src/siyarix/offline_registry/matcher.py +82 -0
  164. siyarix-1.0.0b0/src/siyarix/offline_registry/registry.py +126 -0
  165. siyarix-1.0.0b0/src/siyarix/offline_registry/resolver.py +87 -0
  166. siyarix-1.0.0b0/src/siyarix/offline_registry/responses/community.json +25 -0
  167. siyarix-1.0.0b0/src/siyarix/offline_registry/responses.json +97 -0
  168. siyarix-1.0.0b0/src/siyarix/opsec.py +153 -0
  169. siyarix-1.0.0b0/src/siyarix/output/__init__.py +436 -0
  170. siyarix-1.0.0b0/src/siyarix/parsers/__init__.py +91 -0
  171. siyarix-1.0.0b0/src/siyarix/parsers/aircrack_parser.py +62 -0
  172. siyarix-1.0.0b0/src/siyarix/parsers/amass_parser.py +47 -0
  173. siyarix-1.0.0b0/src/siyarix/parsers/bettercap_parser.py +61 -0
  174. siyarix-1.0.0b0/src/siyarix/parsers/burpsuite_parser.py +46 -0
  175. siyarix-1.0.0b0/src/siyarix/parsers/ettercap_parser.py +57 -0
  176. siyarix-1.0.0b0/src/siyarix/parsers/ffuf_parser.py +74 -0
  177. siyarix-1.0.0b0/src/siyarix/parsers/gobuster_parser.py +77 -0
  178. siyarix-1.0.0b0/src/siyarix/parsers/hashcat_parser.py +38 -0
  179. siyarix-1.0.0b0/src/siyarix/parsers/hydra_parser.py +45 -0
  180. siyarix-1.0.0b0/src/siyarix/parsers/impacket_parser.py +74 -0
  181. siyarix-1.0.0b0/src/siyarix/parsers/john_parser.py +38 -0
  182. siyarix-1.0.0b0/src/siyarix/parsers/masscan_parser.py +41 -0
  183. siyarix-1.0.0b0/src/siyarix/parsers/metasploit_parser.py +39 -0
  184. siyarix-1.0.0b0/src/siyarix/parsers/nikto_parser.py +88 -0
  185. siyarix-1.0.0b0/src/siyarix/parsers/nmap_parser.py +160 -0
  186. siyarix-1.0.0b0/src/siyarix/parsers/nuclei_parser.py +70 -0
  187. siyarix-1.0.0b0/src/siyarix/parsers/shodan_parser.py +61 -0
  188. siyarix-1.0.0b0/src/siyarix/parsers/sqlmap_parser.py +60 -0
  189. siyarix-1.0.0b0/src/siyarix/parsers/subfinder_parser.py +36 -0
  190. siyarix-1.0.0b0/src/siyarix/parsers/wpscan_parser.py +65 -0
  191. siyarix-1.0.0b0/src/siyarix/parsers/zaproxy_parser.py +57 -0
  192. siyarix-1.0.0b0/src/siyarix/permission_gate.py +60 -0
  193. siyarix-1.0.0b0/src/siyarix/planner.py +1399 -0
  194. siyarix-1.0.0b0/src/siyarix/providers.py +468 -0
  195. siyarix-1.0.0b0/src/siyarix/py.typed +0 -0
  196. siyarix-1.0.0b0/src/siyarix/report_engine.py +450 -0
  197. siyarix-1.0.0b0/src/siyarix/security_commands.py +588 -0
  198. siyarix-1.0.0b0/src/siyarix/security_hardening.py +467 -0
  199. siyarix-1.0.0b0/src/siyarix/session_log.py +336 -0
  200. siyarix-1.0.0b0/src/siyarix/shell_review.py +79 -0
  201. siyarix-1.0.0b0/src/siyarix/stealth.py +225 -0
  202. siyarix-1.0.0b0/src/siyarix/tool_executor.py +313 -0
  203. siyarix-1.0.0b0/src/siyarix/tool_installer.py +406 -0
  204. siyarix-1.0.0b0/src/siyarix/tool_registry.py +1059 -0
  205. siyarix-1.0.0b0/src/siyarix/tool_schema.py +315 -0
  206. siyarix-1.0.0b0/src/siyarix/validators.py +252 -0
  207. siyarix-1.0.0b0/src/siyarix/worker_pool.py +76 -0
  208. siyarix-1.0.0b0/tests/__init__.py +3 -0
  209. siyarix-1.0.0b0/tests/conftest.py +259 -0
  210. siyarix-1.0.0b0/tests/pytest.ini +14 -0
  211. siyarix-1.0.0b0/tests/test___main__.py +58 -0
  212. siyarix-1.0.0b0/tests/test_adaptive_replan.py +26 -0
  213. siyarix-1.0.0b0/tests/test_agentic_loop.py +183 -0
  214. siyarix-1.0.0b0/tests/test_audit_chain.py +47 -0
  215. siyarix-1.0.0b0/tests/test_bootstrap.py +73 -0
  216. siyarix-1.0.0b0/tests/test_branding.py +168 -0
  217. siyarix-1.0.0b0/tests/test_cache_manager.py +213 -0
  218. siyarix-1.0.0b0/tests/test_chat.py +405 -0
  219. siyarix-1.0.0b0/tests/test_config.py +295 -0
  220. siyarix-1.0.0b0/tests/test_credential_store.py +423 -0
  221. siyarix-1.0.0b0/tests/test_credential_store_extra.py +52 -0
  222. siyarix-1.0.0b0/tests/test_cvss_scorer.py +102 -0
  223. siyarix-1.0.0b0/tests/test_e2e.py +165 -0
  224. siyarix-1.0.0b0/tests/test_engine_context.py +113 -0
  225. siyarix-1.0.0b0/tests/test_engine_executor.py +770 -0
  226. siyarix-1.0.0b0/tests/test_engine_providers.py +11 -0
  227. siyarix-1.0.0b0/tests/test_engine_safety.py +74 -0
  228. siyarix-1.0.0b0/tests/test_execution_engine.py +354 -0
  229. siyarix-1.0.0b0/tests/test_executor.py +294 -0
  230. siyarix-1.0.0b0/tests/test_health.py +307 -0
  231. siyarix-1.0.0b0/tests/test_intent_router.py +18 -0
  232. siyarix-1.0.0b0/tests/test_logging_config.py +153 -0
  233. siyarix-1.0.0b0/tests/test_metrics.py +185 -0
  234. siyarix-1.0.0b0/tests/test_mode_dispatcher.py +197 -0
  235. siyarix-1.0.0b0/tests/test_offline_registry.py +334 -0
  236. siyarix-1.0.0b0/tests/test_opsec.py +192 -0
  237. siyarix-1.0.0b0/tests/test_output_config.py +155 -0
  238. siyarix-1.0.0b0/tests/test_output_init.py +423 -0
  239. siyarix-1.0.0b0/tests/test_parsers_all.py +359 -0
  240. siyarix-1.0.0b0/tests/test_parsers_gobuster.py +16 -0
  241. siyarix-1.0.0b0/tests/test_parsers_nmap.py +17 -0
  242. siyarix-1.0.0b0/tests/test_permission_gate.py +86 -0
  243. siyarix-1.0.0b0/tests/test_planner.py +901 -0
  244. siyarix-1.0.0b0/tests/test_providers.py +45 -0
  245. siyarix-1.0.0b0/tests/test_report_engine.py +107 -0
  246. siyarix-1.0.0b0/tests/test_security_commands.py +191 -0
  247. siyarix-1.0.0b0/tests/test_session_kernel.py +33 -0
  248. siyarix-1.0.0b0/tests/test_session_log.py +237 -0
  249. siyarix-1.0.0b0/tests/test_shell_review.py +111 -0
  250. siyarix-1.0.0b0/tests/test_stealth.py +93 -0
  251. siyarix-1.0.0b0/tests/test_stress_chaos.py +481 -0
  252. siyarix-1.0.0b0/tests/test_subprocess_safe_run.py +24 -0
  253. siyarix-1.0.0b0/tests/test_tool_executor.py +56 -0
  254. siyarix-1.0.0b0/tests/test_tool_installer.py +78 -0
  255. siyarix-1.0.0b0/tests/test_tool_registry.py +342 -0
  256. siyarix-1.0.0b0/tests/test_tool_registry_wsl.py +67 -0
  257. siyarix-1.0.0b0/tests/test_validators.py +236 -0
  258. siyarix-1.0.0b0/tests/test_worker_pool.py +61 -0
@@ -0,0 +1,39 @@
1
+ # ── Siyarix Environment Configuration ─────────────────────────────────
2
+ # Copy this file to .env and adjust for your environment.
3
+
4
+ ## General Settings
5
+ SIYARIX_HOME=~/.siyarix
6
+ SIYARIX_CONFIG=~/.siyarix/config.yaml
7
+ SIYARIX_DEBUG=0
8
+ SIYARIX_LOG_LEVEL=INFO
9
+ SIYARIX_PROVIDER=openai
10
+ SIYARIX_TIMEOUT=300
11
+ SIYARIX_SAFE_MODE=0
12
+ SIYARIX_NO_TELEMETRY=0
13
+
14
+ ## Provider API Keys
15
+ OPENAI_API_KEY=sk-...
16
+ GEMINI_API_KEY=...
17
+ GROQ_API_KEY=gsk_...
18
+ TOGETHER_API_KEY=...
19
+
20
+ ## Threat Intelligence (STIX/TAXII)
21
+ TAXII_URL=https://...
22
+ TAXII_USERNAME=
23
+ TAXII_PASSWORD=
24
+ MISP_URL=https://...
25
+ MISP_API_KEY=
26
+
27
+ ## SIEM Forwarding
28
+ SIYARIX_SPLUNK_URL=https://splunk.company.com:8088/services/collector/event
29
+ SIYARIX_SPLUNK_TOKEN=
30
+ SIYARIX_ELASTIC_URL=https://elastic.company.com:9200
31
+ SIYARIX_ELASTIC_KEY=
32
+
33
+ ## OpenTelemetry
34
+ OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
35
+ OTEL_SERVICE_NAME=siyarix
36
+
37
+ ## Dashboard
38
+ SIYARIX_DASHBOARD_PORT=8090
39
+ SIYARIX_DASHBOARD_HOST=0.0.0.0
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Create a report to help us improve Siyarix
4
+ title: "[Bug] "
5
+ labels: bug
6
+ assignees: ""
7
+ ---
8
+
9
+ **Describe the Bug**
10
+ A clear and concise description of the bug.
11
+
12
+ **To Reproduce**
13
+ Steps to reproduce the behavior:
14
+
15
+ 1. Run command '...'
16
+ 2. See error
17
+
18
+ **Expected Behavior**
19
+ A clear description of what you expected to happen.
20
+
21
+ **Screenshots / Logs**
22
+ If applicable, add sanitized screenshots or log output.
23
+
24
+ **Environment (please complete):**
25
+
26
+ - OS: [e.g. Windows 11, Ubuntu 24.04, macOS 15]
27
+ - Python version: [e.g. 3.11.9]
28
+ - Siyarix version: [e.g. 0.1.3]
29
+ - Installation method: [pip, source, docker]
30
+
31
+ **Additional Context**
32
+ Add any other context about the problem here.
33
+
34
+ **Checklist**
35
+
36
+ - [ ] I have searched existing issues for duplicates
37
+ - [ ] I have read the [Contributing Guide](../CONTRIBUTING.md)
38
+ - [ ] I understand this is not a security vulnerability (see [Security Policy](../SECURITY.md) for that)
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Suggest an idea for Siyarix
4
+ title: "[Feature] "
5
+ labels: enhancement
6
+ assignees: ""
7
+ ---
8
+
9
+ **Is your feature request related to a problem?**
10
+ A clear and concise description of the problem. E.g., "I'm always frustrated when [...]"
11
+
12
+ **Describe the Solution You'd Like**
13
+ A clear and concise description of what you want to happen.
14
+
15
+ **Describe Alternatives You've Considered**
16
+ A clear and concise description of any alternative solutions or features you've considered.
17
+
18
+ **Use Case**
19
+ Describe how this feature would be used and who would benefit.
20
+
21
+ **Additional Context**
22
+ Add any other context, mockups, or examples of similar features in other projects.
23
+
24
+ **Checklist**
25
+
26
+ - [ ] I have searched existing issues for duplicates
27
+ - [ ] I have read the [Contributing Guide](../CONTRIBUTING.md)
28
+ - [ ] I am willing to help implement this feature (if applicable)
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: Pull Request
3
+ about: Submit changes to Siyarix
4
+ title: ""
5
+ labels: ""
6
+ assignees: ""
7
+ ---
8
+
9
+ ## Description
10
+
11
+ Please include a summary of the changes and the related issue(s).
12
+
13
+ Fixes #(issue)
14
+
15
+ ## Type of Change
16
+
17
+ - [ ] Bug fix (non-breaking change that fixes an issue)
18
+ - [ ] New feature (non-breaking change that adds functionality)
19
+ - [ ] Breaking change (fix or feature that changes existing behavior)
20
+ - [ ] Documentation update
21
+ - [ ] Security improvement
22
+ - [ ] Refactoring (no functional changes)
23
+ - [ ] Test changes
24
+
25
+ ## How Has This Been Tested?
26
+
27
+ - [ ] `pytest -q` passes
28
+ - [ ] `ruff check .` passes
29
+ - [ ] `mypy src/siyarix/` passes
30
+ - [ ] Manual testing (describe below)
31
+
32
+ **Test Configuration**:
33
+ - OS:
34
+ - Python version:
35
+
36
+ ## Checklist
37
+
38
+ - [ ] My code follows the project coding style
39
+ - [ ] I have added tests that prove my fix is effective or my feature works
40
+ - [ ] I have updated documentation accordingly
41
+ - [ ] I have read the [Contributing Guide](../CONTRIBUTING.md)
42
+ - [ ] I have reviewed my own code before submitting
43
+ - [ ] I have disclosed AI assistance (if applicable)
44
+ - [ ] I used commit sign-off (`Signed-off-by:`) for DCO compliance
45
+
46
+ ## Additional Notes
47
+
48
+ Add any additional context, screenshots, or explanations here.
@@ -0,0 +1,25 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "pip"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ open-pull-requests-limit: 10
8
+ allow:
9
+ - dependency-type: "all"
10
+
11
+ - package-ecosystem: "github-actions"
12
+ directory: "/"
13
+ schedule:
14
+ interval: "weekly"
15
+ open-pull-requests-limit: 10
16
+ version: 2
17
+ updates:
18
+ - package-ecosystem: "pip"
19
+ directory: "/"
20
+ schedule:
21
+ interval: "weekly"
22
+ - package-ecosystem: "github-actions"
23
+ directory: "/"
24
+ schedule:
25
+ interval: "weekly"
@@ -0,0 +1,129 @@
1
+ # Labeler configuration
2
+ # Add to .github/labeler.yml
3
+
4
+ # CI/CD changes
5
+ ci/cd:
6
+ - changed-files:
7
+ - any-glob-to-any-file:
8
+ - '.github/workflows/**'
9
+ - '.github/**'
10
+ - '*.yml'
11
+ - '*.yaml'
12
+ - 'Dockerfile'
13
+ - '.dockerignore'
14
+ - '.gitlab-ci.yml'
15
+ - changed-files:
16
+ - any-glob-to-any-file:
17
+ - 'Makefile'
18
+ - 'tox.ini'
19
+ - 'noxfile.py'
20
+ - '.pre-commit-config.yaml'
21
+
22
+ # Documentation
23
+ documentation:
24
+ - changed-files:
25
+ - any-glob-to-any-file:
26
+ - 'docs/**'
27
+ - '*.md'
28
+ - '*.rst'
29
+ - '*.txt'
30
+ - any-glob-to-any-file:
31
+ - 'examples/**/*.md'
32
+
33
+ # Tests
34
+ testing:
35
+ - changed-files:
36
+ - any-glob-to-any-file:
37
+ - 'tests/**'
38
+ - 'test_*.py'
39
+ - '*_test.py'
40
+ - '**/conftest.py'
41
+ - '**/pytest.ini'
42
+ - '**/setup.cfg'
43
+
44
+ # Code changes
45
+ source:
46
+ - changed-files:
47
+ - any-glob-to-any-file:
48
+ - 'src/**/*.py'
49
+ - 'siyarix/**/*.py'
50
+ - '!**/__pycache__/**'
51
+ - '!**/*.pyc'
52
+
53
+ # Build/Package
54
+ build:
55
+ - changed-files:
56
+ - any-glob-to-any-file:
57
+ - 'pyproject.toml'
58
+ - 'setup.py'
59
+ - 'setup.cfg'
60
+ - 'requirements*.txt'
61
+ - 'poetry.lock'
62
+ - 'Pipfile*'
63
+ - '*.toml'
64
+
65
+ # Config files
66
+ config:
67
+ - changed-files:
68
+ - any-glob-to-any-file:
69
+ - '.editorconfig'
70
+ - '.gitignore'
71
+ - '.ruff*'
72
+ - '.flake8'
73
+ - 'mypy.ini'
74
+ - 'pytest.ini'
75
+ - '.bandit'
76
+
77
+ # Security related
78
+ security:
79
+ - changed-files:
80
+ - any-glob-to-any-file:
81
+ - '.github/workflows/security.yml'
82
+ - '**/security*'
83
+ - 'SECURITY.md'
84
+
85
+ # Scripts
86
+ scripts:
87
+ - changed-files:
88
+ - any-glob-to-any-file:
89
+ - 'scripts/**'
90
+ - 'bin/**'
91
+ - 'tools/**'
92
+ - '*.sh'
93
+ - '*.bash'
94
+
95
+ # Examples
96
+ examples:
97
+ - changed-files:
98
+ - any-glob-to-any-file:
99
+ - 'examples/**'
100
+ - 'sample*'
101
+
102
+ # Package scripts
103
+ packaging:
104
+ - changed-files:
105
+ - any-glob-to-any-file:
106
+ - 'packages/**'
107
+ - 'homebrew/**'
108
+ - 'npm/**'
109
+
110
+ # Parsers
111
+ parsers:
112
+ - changed-files:
113
+ - any-glob-to-any-file:
114
+ - 'src/siyarix/parsers/**'
115
+ - '**/parser*.py'
116
+
117
+ # Engine
118
+ engine:
119
+ - changed-files:
120
+ - any-glob-to-any-file:
121
+ - 'src/siyarix/engine.py'
122
+ - 'src/siyarix/engine/**'
123
+
124
+ # CLI
125
+ cli:
126
+ - changed-files:
127
+ - any-glob-to-any-file:
128
+ - 'src/siyarix/main.py'
129
+ - 'src/siyarix/cli/**'