hokipoki 0.1.0
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.
- checksums.yaml +7 -0
- data/LICENSE +26 -0
- data/lib/generators/hive_mind/install_generator.rb +761 -0
- data/lib/hokipoki/claude/auto_loader.rb +162 -0
- data/lib/hokipoki/claude/connection_manager.rb +382 -0
- data/lib/hokipoki/claude/parasite.rb +333 -0
- data/lib/hokipoki/configuration.rb +187 -0
- data/lib/hokipoki/engine.rb +122 -0
- data/lib/hokipoki/feedback/ascii_banners.rb +108 -0
- data/lib/hokipoki/feedback/display_manager.rb +436 -0
- data/lib/hokipoki/intelligence/smart_retrieval_engine.rb +401 -0
- data/lib/hokipoki/intelligence/unified_orchestrator.rb +395 -0
- data/lib/hokipoki/license_validator.rb +296 -0
- data/lib/hokipoki/parasites/universal_generator.rb +662 -0
- data/lib/hokipoki/railtie.rb +34 -0
- data/lib/hokipoki/version.rb +3 -0
- data/lib/hokipoki.rb +174 -0
- metadata +271 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 55a06b3e119948a444f79caddbad7fbfa049cc753e6bfb86a97918a9c83f8332
|
|
4
|
+
data.tar.gz: c08dc92cf63f26b4695f81441eac32c2e2d3faf0d4d758cd7b4b36fbc31e0149
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f47d1a924830a3bd3d45d1c0a1786d3184e7b926e41b588274fcaf56bf470e842ad2424a7fb5cdf849678ca78bce9b6899b85f3ee546b5ebe5bcaa3d38f29f6d
|
|
7
|
+
data.tar.gz: 6fc3013bb3998fff9202c1fee280346bdc59cce6e510fec1cc64783a1ece266e8174c55877d7102c29230b0752758d523c7288ea4643dfa59ffd423a9a03ec7c
|
data/LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
PROPRIETARY LICENSE - ALL RIGHTS RESERVED
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Rails Utilities. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are proprietary
|
|
6
|
+
and confidential. No rights are granted to any person without express written
|
|
7
|
+
permission from the copyright holder.
|
|
8
|
+
|
|
9
|
+
RESTRICTIONS:
|
|
10
|
+
- NO unauthorized use, reproduction, or distribution
|
|
11
|
+
- NO reverse engineering, decompilation, or disassembly
|
|
12
|
+
- NO commercial use without separate licensing agreement
|
|
13
|
+
- NO modification or derivative works without written consent
|
|
14
|
+
|
|
15
|
+
USAGE REQUIRES:
|
|
16
|
+
- Valid license key obtained through authorized channels
|
|
17
|
+
- Written consent from copyright holder for any use
|
|
18
|
+
- Compliance with all license terms and conditions
|
|
19
|
+
|
|
20
|
+
VIOLATIONS of this license will result in immediate termination of all rights
|
|
21
|
+
and may subject violator to legal action including damages and injunctive relief.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
|
|
24
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DAMAGES ARISING FROM USE.
|
|
25
|
+
|
|
26
|
+
For licensing inquiries contact: utilities@example.com
|