├── .env.example ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── pull_request_template.md ├── .gitignore ├── LICENSE ├── README.md ├── agents ├── example.ts ├── harvester.ts ├── launchtracker.ts ├── observer.ts ├── skieró.ts ├── soon.ts └── theron.ts ├── docs ├── agents.md ├── architecture.md ├── banner2.png ├── contributing.md ├── deployment.md ├── eremospudgy.png ├── events.md ├── glyphs.md ├── memory.md ├── metrics.md ├── runtime.md ├── signals.md ├── therontphd2.png ├── throttle.md └── whitepaper.pdf ├── package.json ├── scripts ├── agent-list.ts ├── dev-agent.ts ├── export-agent-memory.ts ├── generate-agent.ts ├── generate-signal.ts ├── signalhashpreview.ts ├── simulate-cluster.ts ├── stress-test.ts ├── test-signal-thresholds.ts └── validate-agent.ts ├── tests ├── event.parser.test.ts ├── example.test.ts ├── theron.behavior.test.ts ├── theron.memory.test.ts ├── throttle.test.ts ├── utils.metrics.test.ts └── utils.signal.test.ts ├── tsconfig.json ├── types ├── agent.ts ├── config.ts ├── event.ts └── signal.ts └── utils ├── debug.ts ├── error.ts ├── eventParser.ts ├── lifecycle.ts ├── logger.ts ├── metrics.ts ├── signal.ts ├── throttle.ts └── time.ts /.env.example: -------------------------------------------------------------------------------- 1 | # No required environment variables yet 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/README.md -------------------------------------------------------------------------------- /agents/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/example.ts -------------------------------------------------------------------------------- /agents/harvester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/harvester.ts -------------------------------------------------------------------------------- /agents/launchtracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/launchtracker.ts -------------------------------------------------------------------------------- /agents/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/observer.ts -------------------------------------------------------------------------------- /agents/skieró.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/skieró.ts -------------------------------------------------------------------------------- /agents/soon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/soon.ts -------------------------------------------------------------------------------- /agents/theron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/agents/theron.ts -------------------------------------------------------------------------------- /docs/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/agents.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/banner2.png -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Eremos 2 | 3 | See docs for more info. 4 | -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/eremospudgy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/eremospudgy.png -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/glyphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/glyphs.md -------------------------------------------------------------------------------- /docs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/memory.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/runtime.md -------------------------------------------------------------------------------- /docs/signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/signals.md -------------------------------------------------------------------------------- /docs/therontphd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/therontphd2.png -------------------------------------------------------------------------------- /docs/throttle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/throttle.md -------------------------------------------------------------------------------- /docs/whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/docs/whitepaper.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/package.json -------------------------------------------------------------------------------- /scripts/agent-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/agent-list.ts -------------------------------------------------------------------------------- /scripts/dev-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/dev-agent.ts -------------------------------------------------------------------------------- /scripts/export-agent-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/export-agent-memory.ts -------------------------------------------------------------------------------- /scripts/generate-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/generate-agent.ts -------------------------------------------------------------------------------- /scripts/generate-signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/generate-signal.ts -------------------------------------------------------------------------------- /scripts/signalhashpreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/signalhashpreview.ts -------------------------------------------------------------------------------- /scripts/simulate-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/simulate-cluster.ts -------------------------------------------------------------------------------- /scripts/stress-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/stress-test.ts -------------------------------------------------------------------------------- /scripts/test-signal-thresholds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/test-signal-thresholds.ts -------------------------------------------------------------------------------- /scripts/validate-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/scripts/validate-agent.ts -------------------------------------------------------------------------------- /tests/event.parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/event.parser.test.ts -------------------------------------------------------------------------------- /tests/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/example.test.ts -------------------------------------------------------------------------------- /tests/theron.behavior.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/theron.behavior.test.ts -------------------------------------------------------------------------------- /tests/theron.memory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/theron.memory.test.ts -------------------------------------------------------------------------------- /tests/throttle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/throttle.test.ts -------------------------------------------------------------------------------- /tests/utils.metrics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/utils.metrics.test.ts -------------------------------------------------------------------------------- /tests/utils.signal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tests/utils.signal.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/types/agent.ts -------------------------------------------------------------------------------- /types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/types/config.ts -------------------------------------------------------------------------------- /types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/types/event.ts -------------------------------------------------------------------------------- /types/signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/types/signal.ts -------------------------------------------------------------------------------- /utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/debug.ts -------------------------------------------------------------------------------- /utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/error.ts -------------------------------------------------------------------------------- /utils/eventParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/eventParser.ts -------------------------------------------------------------------------------- /utils/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/lifecycle.ts -------------------------------------------------------------------------------- /utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/logger.ts -------------------------------------------------------------------------------- /utils/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/metrics.ts -------------------------------------------------------------------------------- /utils/signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/signal.ts -------------------------------------------------------------------------------- /utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/throttle.ts -------------------------------------------------------------------------------- /utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EremosCore/Eremos/HEAD/utils/time.ts --------------------------------------------------------------------------------