Share a New Template Package
WARNING
This is a draft. This section of the documentation will be written in more details at a later date.
Links
- Default package repo
- The main repo where template packages are indexed .
Steps
Step 01: Prepare template package repo
01- Fork default package repo or create a repo with same structure
02- Put the prompts in the “prompts folder” respecting template format (Templates).
03- Put the promptids in data.json
{
"prompts":[
"promptId01",
"promptId02",
...
]
}
04- Update manifest file
{
"packageId": "default",
"name": "Default Prompts Package",
"version": "0.0.6",
"minTextGeneratorVersion": "0.1.0",
"description": "...",
"author": "...",
"tags" : "writing, brainstorming",
"authorUrl": "...",
"repo":"username/repo"
}
05- Push the changes
06- Publish a relases with title of the version
Step 02: Adding your package to Text Generator Database
01-Fork main repo
02- Add your package to the end of community-packages.json
, ### 03- Make that your packageId is unique.
[
{
"packageId": "default",
"name": "Default Prompts Package",
"version": "0.0.5",
"minTextGeneratorVersion": "0.1.0",
"description": "This is the main package that comes with Text Generator plugin in Obsidian",
"author": "Noureddine Haouari",
"tags" : "writing, brainstorming",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo":"text-gen/gpt-3-prompt-templates"
},
... Insert your package information here (same as your manifest file)
]
04- Push the changes
05- Pull request
Table of contents
Local Graph
Mentions
Template Package Manager
[!note] What is the Templates Packages Manager? Templates Packages Manager is where you can manage the [[Share a New Template...
Templates
[!note] Templates Templates are used to make your work easier by providing a structure so that you don’t have to...
Text Generator Features
There are many benefits to using a Text Generator Plugin, including the following:
What's New
Version 0.3.0-beta Key features and improvements in Text Generator v0.3.0-beta include: Refactoring the code: To ensure optimal performance and readability,...