@evomap/evolver 1.88.4 → 1.89.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/README.ja-JP.md +9 -32
  2. package/README.ko-KR.md +9 -32
  3. package/README.md +10 -33
  4. package/README.zh-CN.md +4 -31
  5. package/SKILL.md +1 -1
  6. package/index.js +31 -2
  7. package/package.json +1 -1
  8. package/scripts/check-changelog.js +1 -1
  9. package/src/evolve/guards.js +1 -1
  10. package/src/evolve/pipeline/collect.js +1 -1
  11. package/src/evolve/pipeline/dispatch.js +1 -1
  12. package/src/evolve/pipeline/enrich.js +1 -1
  13. package/src/evolve/pipeline/hub.js +1 -1
  14. package/src/evolve/pipeline/select.js +1 -1
  15. package/src/evolve/pipeline/signals.js +1 -1
  16. package/src/evolve/utils.js +1 -1
  17. package/src/evolve.js +1 -1
  18. package/src/forceUpdate.js +105 -20
  19. package/src/gep/a2aProtocol.js +1 -1
  20. package/src/gep/autoDistillConv.js +1 -1
  21. package/src/gep/autoDistillLlm.js +1 -1
  22. package/src/gep/candidateEval.js +1 -1
  23. package/src/gep/candidates.js +1 -1
  24. package/src/gep/contentHash.js +1 -1
  25. package/src/gep/conversationSniffer.js +1 -1
  26. package/src/gep/crypto.js +1 -1
  27. package/src/gep/curriculum.js +1 -1
  28. package/src/gep/deviceId.js +1 -1
  29. package/src/gep/envFingerprint.js +1 -1
  30. package/src/gep/epigenetics.js +1 -1
  31. package/src/gep/execBridge.js +1 -1
  32. package/src/gep/explore.js +1 -1
  33. package/src/gep/hash.js +1 -1
  34. package/src/gep/hubFetch.js +1 -1
  35. package/src/gep/hubReview.js +1 -1
  36. package/src/gep/hubSearch.js +1 -1
  37. package/src/gep/hubVerify.js +1 -1
  38. package/src/gep/learningSignals.js +1 -1
  39. package/src/gep/memoryGraph.js +1 -1
  40. package/src/gep/memoryGraphAdapter.js +1 -1
  41. package/src/gep/mutation.js +1 -1
  42. package/src/gep/narrativeMemory.js +1 -1
  43. package/src/gep/oauthLogin.js +143 -0
  44. package/src/gep/openPRRegistry.js +1 -1
  45. package/src/gep/personality.js +1 -1
  46. package/src/gep/policyCheck.js +1 -1
  47. package/src/gep/prompt.js +1 -1
  48. package/src/gep/recallInject.js +1 -1
  49. package/src/gep/recallVerifier.js +1 -1
  50. package/src/gep/reflection.js +1 -1
  51. package/src/gep/selector.js +1 -1
  52. package/src/gep/skillDistiller.js +1 -1
  53. package/src/gep/skillPublisher.js +1 -1
  54. package/src/gep/solidify.js +1 -1
  55. package/src/gep/strategy.js +1 -1
  56. package/src/gep/tokenSavings.js +1 -1
  57. package/src/gep/workspaceKeychain.js +1 -1
  58. package/src/proxy/extensions/traceControl.js +1 -1
  59. package/src/proxy/inject.js +1 -1
  60. package/src/proxy/lifecycle/manager.js +2 -0
  61. package/src/proxy/trace/extractor.js +1 -1
  62. package/src/proxy/trace/usage.js +1 -1
@@ -193,7 +193,7 @@ function geneToSkillMd(gene) {
193
193
 
194
194
  lines.push('---');
195
195
  lines.push('');
196
- lines.push('*This Skill was generated by [Evolver](https://github.com/autogame-17/evolver) and is distributed under the [EvoMap Skill License (ESL-1.0)](https://evomap.ai/terms). Unauthorized redistribution, bulk scraping, or republishing is prohibited. See LICENSE file for full terms.*');
196
+ lines.push('*This Skill was generated by [Evolver](https://github.com/EvoMap/evolver) and is distributed under the [EvoMap Skill License (ESL-1.0)](https://evomap.ai/terms). Unauthorized redistribution, bulk scraping, or republishing is prohibited. See LICENSE file for full terms.*');
197
197
  lines.push('');
198
198
 
199
199
  return lines.join('\n');