-
Notifications
You must be signed in to change notification settings - Fork 53
Adding new behaviour #339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding new behaviour #339
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughIntroduces a new “Behaviour Article Writer” system-prompt (XML and accompanying docs), registers it in the prompt inventory, and updates documentation to reference it. Upgrades Java in CI and SDKMAN settings. Adds multiple new blog posts and reorganizes site content, archives, tags, feed, and index with new pages and adjusted paths. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer
participant SPG as System Prompts Generator
participant Inv as Inventory
participant BA as Behaviour: Article Writer
participant SG as Site Generator
participant Docs as Static Site
Dev->>SPG: Run generation
SPG->>Inv: Load baseNames()
Inv-->>SPG: ["...", "behaviour-article-writer", "..."]
SPG->>BA: Apply behaviour to prompt
BA-->>SPG: Structured article content (ANALYZE→PUBLISH)
SPG-->>SG: Emit content for site
SG->>Docs: Build HTML pages
Docs-->>Dev: Updated blog, tags, feed
sequenceDiagram
autonumber
participant GH as GitHub Actions
participant Setup as setup-java
participant Maven as Maven Build
participant Lint as Markdown Validator
GH->>Setup: java-version: '25' (build jobs)
Setup-->>GH: JDK 25 provisioned
GH->>Maven: Build examples / generate site
GH->>Lint: Validate Markdown (Java 24 step unchanged)
Lint-->>GH: Validation result
Maven-->>GH: Build result
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Poem
✨ Finishing touches
🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (44)
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. Comment |
Rationale for this change
Develop article from a topic present in a system prompt
What changes are included in this PR?
Added the behaviour
Tested with the creation of few articles
Are these changes tested?
Yes
Are there any user-facing changes?
No
Summary by CodeRabbit
New Features
Documentation
Chores