Skip to content

docs: complete #579 B.1 friendly imports (remaining 7 files)#800

Merged
MervinPraison merged 1 commit into
mainfrom
docs/issue-579-b1-imports-complete
Jun 23, 2026
Merged

docs: complete #579 B.1 friendly imports (remaining 7 files)#800
MervinPraison merged 1 commit into
mainfrom
docs/issue-579-b1-imports-complete

Conversation

@MervinPraison

Copy link
Copy Markdown
Owner

Summary

Completes #579 B.1 friendly top-level imports for the 7 files blocked on SDK re-exports (PR #799 partial). Depends on SDK lazy exports in praisonaiagents/__init__.py (branch fix/sdk-lazy-exports-579-b1 in praisonai-package).

Files fixed:

  • advanced-memory.mdxAutoMemory
  • resource-lifecycle.mdxChromaMemory
  • skills.mdxvalidate, validate_metadata
  • hermes-openclaw-skills-import.mdxdiscover_skills, validate, load_skill
  • skill-capability-gates.mdxEnforcementLevel, SkillState
  • knowledge-backends.mdxKnowledgeStoreProtocol, ScopeRequiredError, BackendNotAvailableError
  • incremental-indexing.mdxFileTracker, IndexResult, CorpusStats

Follows PR #798 (workflow files) and PR #799 (partial B.1). Does not touch docs/concepts/.

Test plan

  • Grep 7 B.1 files — no praisonaiagents.memory|skills|knowledge deep imports remain
  • Symbols verified against praisonaiagents/__init__.py _LAZY_IMPORTS
  • Mintlify build

Refs #579

Made with Cursor

Switch deep praisonaiagents.* submodule imports to top-level exports now available in the SDK.

Co-authored-by: Cursor <cursoragent@cursor.com>
@qodo-code-review

Copy link
Copy Markdown

Qodo reviews are paused for this user.

Troubleshooting steps vary by plan Learn more →

On a Teams plan?
Reviews resume once this user has a paid seat and their Git account is linked in Qodo.
Link Git account →

Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center?
These require an Enterprise plan - Contact us
Contact us →

@MervinPraison MervinPraison merged commit ecc1639 into main Jun 23, 2026
5 checks passed
@coderabbitai

coderabbitai Bot commented Jun 23, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@MervinPraison, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 55 minutes and 52 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: e21e0211-6f12-4e40-babf-5acf02f7824f

📥 Commits

Reviewing files that changed from the base of the PR and between 6abdb4b and 50170e8.

📒 Files selected for processing (7)
  • docs/features/advanced-memory.mdx
  • docs/features/hermes-openclaw-skills-import.mdx
  • docs/features/incremental-indexing.mdx
  • docs/features/knowledge-backends.mdx
  • docs/features/resource-lifecycle.mdx
  • docs/features/skill-capability-gates.mdx
  • docs/features/skills.mdx
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/issue-579-b1-imports-complete

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@MervinPraison MervinPraison deleted the docs/issue-579-b1-imports-complete branch June 23, 2026 07:12
@mintlify

mintlify Bot commented Jun 23, 2026

Copy link
Copy Markdown

Preview deployment for your docs. Learn more about Mintlify Previews.

Project Status Preview Updated (UTC)
praisonai 🔴 Failed Jun 23, 2026, 7:12 AM

💡 Tip: Enable Workflows to automatically generate PRs for you.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request simplifies import statements across several documentation files by importing components directly from the root praisonaiagents package instead of nested submodules. The reviewer suggested further combining multiple import statements from praisonaiagents into single-line imports to improve code readability and conciseness.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines 121 to +122
from praisonaiagents import Agent, Task, PraisonAIAgents
from praisonaiagents.memory import ChromaMemory
from praisonaiagents import ChromaMemory

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These imports from praisonaiagents can be combined into a single line to improve readability and keep the code examples concise.

from praisonaiagents import Agent, Task, PraisonAIAgents, ChromaMemory

Comment on lines 34 to +35
from praisonaiagents import Agent
from praisonaiagents.skills import discover_skills
from praisonaiagents import discover_skills

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These imports from praisonaiagents can be combined into a single line to make the code examples cleaner and more concise.

from praisonaiagents import Agent, discover_skills

Comment on lines 54 to +55
from praisonaiagents import Agent
from praisonaiagents.skills import validate, load_skill
from praisonaiagents import validate, load_skill

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These imports from praisonaiagents can be combined into a single line to improve readability.

from praisonaiagents import Agent, validate, load_skill

Comment on lines 321 to +323
from praisonaiagents import Agent
from praisonaiagents.tools import tool
from praisonaiagents.skills import load_skill
from praisonaiagents import load_skill

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These imports from praisonaiagents can be grouped and combined to make the code cleaner.

from praisonaiagents import Agent, load_skill
from praisonaiagents.tools import tool

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant