Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added docs/images/plugin-landing-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package io.jenkins.plugins.chatbot;

import hudson.Plugin;

public class ResourcesAiChatbotPlugin extends Plugin {}
6 changes: 5 additions & 1 deletion src/main/resources/index.jelly
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?jelly escape-by-default='true'?>
<div>
TODO
Resources AI Chatbot plugin for Jenkins.
See
<a href="https://github.com/jenkinsci/resources-ai-chatbot-plugin#readme">
documentation
</a>.
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout">
<l:layout title="Resources AI Chatbot">
<l:main-panel>
<div class="chatbot-plugin-page">
<h1>Resources AI Chatbot</h1>
<p>
This plugin embeds the Resources AI Chatbot into Jenkins to help users
quickly find relevant documentation and guidance.
</p>
<p>
The chatbot UI is injected globally via the page decorator. Look for the
chat widget in the Jenkins interface after installing and restarting.
</p>
<h2>Documentation</h2>
<ul>
<li>
<a href="https://github.com/jenkinsci/resources-ai-chatbot-plugin#readme">
Project README
</a>
</li>
<li>
<a href="https://github.com/jenkinsci/resources-ai-chatbot-plugin/blob/main/docs/setup.md">
Setup guide
</a>
</li>
<li>
<a href="https://github.com/jenkinsci/resources-ai-chatbot-plugin/blob/main/docs/windows-setup.md">
Windows/WSL2 setup
</a>
</li>
</ul>
</div>
</l:main-panel>
</l:layout>
</j:jelly>
Loading