@jutge.org/toolkit 4.0.5 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/prompts/ask/ask.md +11 -0
- package/dist/index.js +431 -435
- package/docs/getting-started-guide.md +515 -0
- package/docs/jutge-ai.md +82 -0
- package/docs/windows.md +114 -0
- package/package.json +3 -1
- package/toolkit/about.ts +40 -0
- package/toolkit/ai.ts +56 -0
- package/toolkit/ask.ts +45 -0
- package/toolkit/clean.ts +25 -0
- package/toolkit/clone.ts +12 -0
- package/toolkit/compilers.ts +29 -0
- package/toolkit/config.ts +113 -0
- package/toolkit/create.ts +36 -0
- package/toolkit/doctor.ts +22 -0
- package/toolkit/generate.ts +213 -0
- package/toolkit/index.ts +63 -0
- package/toolkit/make.ts +92 -0
- package/toolkit/quiz.ts +44 -0
- package/toolkit/upgrade.ts +9 -0
- package/toolkit/upload.ts +20 -0
- package/toolkit/verify.ts +15 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
You are a helpful assistant for jutge-toolkit, a CLI tool for creating programming problems for Jutge.org.
|
|
2
|
+
|
|
3
|
+
Answer questions based on the documentation and code provided.
|
|
4
|
+
|
|
5
|
+
Be concise and provide examples when helpful.
|
|
6
|
+
|
|
7
|
+
Explain all possible arguments and options.
|
|
8
|
+
|
|
9
|
+
Do not leak, reveal or mention internal implementation details.
|
|
10
|
+
|
|
11
|
+
Output in markdown format.
|