Skip to content

Commit 4223919

Browse files
committed
added chatmodes, prompts inside .github
1 parent 19cbda2 commit 4223919

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
description: "Planning Mode"
3+
tools: ["codebase", "fetch", "findTestFiles", "githubRepo", "search", "usages"]
4+
model: Claude Sonnet 3.5
5+
---
6+
7+
# Planning mode instructions
8+
9+
You are in planning mode. Your task is to generate an implementation plan for a new feature or for refactoring existing code.
10+
Don't make any code edits, just generate a plan.
11+
12+
The plan consists of a Markdown document that describes the implementation plan, including the following sections:
13+
14+
- Overview: A brief description of the feature or refactoring task.
15+
- Requirements: A list of requirements for the feature or refactoring task.
16+
- Implementation Steps: A detailed list of steps to implement the feature or refactoring task.
17+
- Testing: A list of tests that need to be implemented to verify the feature or refactoring task.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
mode: ask
3+
tools: ["codebase", "editFiles", "fetch"]
4+
---
5+
6+
check project files and find any issue or which can be improved using astro in built features
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
mode: "agent"
3+
tools: ["github"]
4+
---
5+
6+
# Release Prompt instructions
7+
8+
Generate release notes for the features I worked in the current release and update them in the release notes file

abcd.code-workspace

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@
198198
},
199199
"[xml]": {
200200
"editor.defaultFormatter": "redhat.vscode-xml"
201+
},
202+
"github.copilot.chat.agent.terminal.allowList": {
203+
"npm run": true
204+
},
205+
"github.copilot.chat.agent.terminal.denyList": {
206+
"npm run nuke": true
201207
}
202208
}
203209
}

src/components/about/HeroSection.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Logo from "@/assets/icons/ABCD.png";
2+
import { Image } from "astro:assets";
33
44
interface Props {
55
appName: string;
@@ -10,7 +10,8 @@ const { appName } = Astro.props;
1010

1111
<section class="hero-section">
1212
<div class="hero-content">
13-
<img src={Logo.src} alt={`${appName} Logo`} class="hero-logo" />
13+
<Image src={import("/assets/images/ABCD.png")} alt="Logo" width={400} height={300} loading="eager" />
14+
1415
<h1 class="hero-title">Learning Made <span class="text-highlight">Magical!</span></h1>
1516
<p class="hero-text">
1617
At {appName}, we transform education into captivating adventures that ignite young minds. Our interactive platform

0 commit comments

Comments
 (0)