You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,14 +82,14 @@ The project file structure for the VSCode extension module:
82
82
```
83
83
84
84
85
-
## design principles
86
-
I am to design the system with mathematics, algebra and functional programming principles in mind. The system is designed to be modular and extensible, allowing for easy addition of new featuresand components.
85
+
## design
86
+
I aim to design the system with mathematicsand functional programming principles in mindto make it modular and extensible, allowing for easy addition of new features. Ideally, each feature can be represented as a transformation from input to output, where input and output are:
87
87
88
88
Input = {Query, CodeSnippet, Spec}: The set of all possible input types (queries, code snippets, or requirements/specifications).
89
89
90
90
Output = {Code, Explanation, Transformation, DebugSuggestion}: The set of all possible outputs.
91
91
92
-
The types and objects for Input:
92
+
Further explaination of the input and output types:
93
93
- code snippet or code file: a piece of code
94
94
- code context: a code snippet with its surrounding code
95
95
- query: natural language query
@@ -101,9 +101,17 @@ The Output:
101
101
- transformation: the transformation of the input code
102
102
- suggestion: a suggestion for debugging or improvement or refactoring
103
103
104
-
# feedback
104
+
# implementation
105
+
features implemented so far:
106
+
- auto completion as you type like copilot
107
+
- add documentation quick fix action(select a function, or some code, and Alt+Enter)
108
+
109
+
Work in progress:
110
+
- generate multiple files and folders as user specifies
111
+
- disable/enable auto completion
112
+
105
113
features to be implemented:
106
-
- refactoring
114
+
-select code and ask for refactoring(optimization, bug fixing, etc.)
107
115
- specify which LLM to use
108
116
- RAG(retrieval-augmented generation) to understand the whole code base
109
117
- MCP(model context protocol) to interact with the environment, like external tools, etc.
0 commit comments