Advanced Notion Intelligence (Smart Search & Schema Awareness)#52
Closed
ygd58 wants to merge 2 commits into
Closed
Advanced Notion Intelligence (Smart Search & Schema Awareness)#52ygd58 wants to merge 2 commits into
ygd58 wants to merge 2 commits into
Conversation
This script provides functions to search Notion pages by title and retrieve database schema properties.
Contributor
|
We already have a notion skill that does this :) |
Contributor
Author
|
I hear you loud and clear! Notion was just the warmup. |
sudo-yf
pushed a commit
to sudo-yf/hermes-agent
that referenced
this pull request
Apr 5, 2026
Use v(\d+\.\d+(?:\.\d+)?) instead of v(.*) to only match real version numbers (v0.29, v0.29.1), not arbitrary strings. Keep latest unconditional since all tag pushes are releases. Based on review of PR NousResearch#52 approach vs NousResearch#53. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
PowerCreek
referenced
this pull request
in TechDevGroup/hermes-agent
May 22, 2026
Hermes side of the two-repo Phase C graph-skill lift (TechDevGroup/devagentic#52). agent/devagentic_skills.py is the read-through adapter: when DEVAGENTIC_SKILLS_GRAPH=1, it POSTs the skillResolve mutation to a running devagentic and returns the resolved body; on any failure (gate off, network error, parse error, missing skill) it returns None so the caller's existing file-based fallback runs unchanged. scripts/migrate_skills_to_graph.py is the one-way migration — walks HERMES_HOME/skills (both flat <name>.md and nested <dir>/SKILL.md layouts) and POSTs each file as a kind:skill node via the new skillCreate mutation. --dry-run prints the plan without mutating. Companion devagentic PR: TechDevGroup/devagentic#<TBD> Co-authored-by: devagentic-dev <dev@devagentic.local> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 22, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello! I have enhanced the Notion integration by adding professional-grade tools for the Hermes Agent.
Key Improvements:
search_notion_by_titleso the agent can find pages by their human-readable names instead of IDs.get_database_schemato ensure Hermes understands database structures before writing, preventing API errors.SKILL.mdto guide the agent through a "Search-First" workflow.This update makes the agent more context-aware and reduces manual input for the user. Ready for review!