Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e63ce1c
groundwork for quadstore
djradon Jul 27, 2025
8e9eb84
rootNodeConfigTemplate refinement (ontology, types, docs)
djradon Jul 27, 2025
cf1cf0d
service configuration system is now modular, better organized
djradon Jul 28, 2025
02f006b
runs, figured out the relationship between rdf-data-factor and rdfjs/…
djradon Jul 28, 2025
1cb06c7
renamed tests
djradon Jul 28, 2025
6e8171e
groundwork for jsonLD->graph utils
djradon Jul 28, 2025
b8b9449
using @types/jsonld in my types.ts; starting a new task
djradon Jul 29, 2025
5676c4a
config/types.ts -> config-types.ts; config cleanup;
djradon Jul 29, 2025
ac6659b
quadstore factory for testing;
djradon Jul 30, 2025
1ffab1c
every day a struggle; mid-aire conversion to double-quotes coming up;
djradon Aug 1, 2025
f6c470d
i cannot believe we got back to a running service
djradon Aug 2, 2025
5610513
moved and renamed CONFIG_GRAPH_NAMES; non-singleton ServiceAccessor c…
djradon Aug 2, 2025
0d67c44
Removes unused config utility functions
djradon Aug 2, 2025
2633986
chore: update quadstore dependency to version 15.4.0-beta.0
djradon Aug 2, 2025
9d7a11e
Refactor logging implementation and enhance error handling
djradon Aug 3, 2025
d017505
consiste error handling
djradon Aug 4, 2025
8c54aed
Refactor service configuration to support dynamic URIs and improve en…
djradon Aug 5, 2025
8942f98
feat: Enhance RDFJS utilities and service configuration
djradon Aug 5, 2025
5046780
removed redundant service-config-loader
djradon Aug 5, 2025
87f16b1
refactor: Move quadstore utility functions to a dedicated directory
djradon Aug 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .ai-guidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Refinement of .ai-guidance, general-guidance, and personal guidance should be an
ongoing process. Continually check that guidance is up-to-date, and offer
suggestions for improvement whenever possible.

## Keep files short and modular

So important! Too-long files are cause syntax errors from agent edits.

## Don't guess about file paths

With imports, exports, and other file-related constructions, confirm the path by executing a command to ensure that the path is correct.

## Ontologies are key

There are several ontologies in the "ontology" folder (which is actually its own
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ sflow-platform
test-ns
.roo/mcp.json
.env
logs
5 changes: 4 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"@hono/zod-openapi": "npm:@hono/zod-openapi@^1.0.2",
"@scalar/openapi-to-markdown": "npm:@scalar/openapi-to-markdown@^0.2.23"
},
"tasks": {
"test": "deno test --allow-net --allow-env --allow-read --allow-write=./meshes,./flow-service/logs"
},
"fmt": {
"singleQuote": true
"singleQuote": false
}
}
Loading